How to create a custom desktop using the .Xsession file.

This is an example of an .Xsession file, this will provide a custom desktop environment. #!/bin/sh   # Load your X Resource defaults, if you have them…   if [ -f $HOME/.Xdefaults ]; then xrdb -merge $HOME/.Xdefaults fi   xterm & tint2 & nm-applet & gkrellm &   # Get…

Read More