Quote |
In recent versions of DSL (since the addition of JWM) 1) Open up /home/dsl/.xinitrc in a text editor and scroll to the end of the file, where the "case" statement chooses the desktop to use. 2) Add a case for "icewm". This must be done BEFORE the wildcard (*). ---------------------------------------- Here is part of the original: jwm ) ./.background sleep 2 exec jwm 2>/dev/null ;; * ) exec fluxbox 2>/dev/null ;; esac ---------------------------------------- Here is what it would look like with icewm added: jwm ) ./.background sleep 2 exec jwm 2>/dev/null ;; icewm) exec /opt/icewm/starticewm 2>/dev/null ;; * ) exec fluxbox 2>/dev/null ;; esac ---------------------------------------- 3) Edit /home/dsl/.desktop, replacing the existing WM with "icewm". 4) Restart X. In older versions of DSL (before the addition of JWM) 1) Open up /home/dsl/.xinitrc in a text editor and scroll to the end. 2) Replace "fluxbox" with "/opt/icewm/starticewm". 3) Restart X. |