lxde works pretty well on the Netwalker. Installing it is easy but it doesn't pay attention to the autostart configured in the Gnome session which means that when you just install and reboot, you'll be missing quite a bit of things, most notably WiFi. Here's how I solved this problem but if there's a better way to accomplish this, please don't hesitate to tell me.
Installing as usual...
CODE
sudo apt-get update
sudo apt-get install lxde
sudo apt-get install lxde
Now to fix the autostarted apps...
CODE
sudo mv /etc/xdg/autostart/*.desktop ~/.config/autostart
chown user:user ~/.config/autostart/*.desktop
chmod 755 ~/.config/autostart/*.desktop
chown user:user ~/.config/autostart/*.desktop
chmod 755 ~/.config/autostart/*.desktop
Replace user with your actual user name.
Next issue - some apps are configured to only launch in Gnome. To fix this, we have to open every .desktop file in the ~/.config/autostart directory in an editor and look for the line reading "OnlyShowIn=..." LXDE has to be part of the list that follows. If it isn't present, add it like this:
CODE
OnlyShowIn=GNOME # bad
OnlyShowIn=GNOME;LXDE # good
OnlyShowIn=GNOME;LXDE # good
After this is done, you can finally reboot/log off and on. It is worth mentioning that by moving every autostart file some Gnome stuff is started as well, resulting in a higher RAM consumption than what I usually see with pure lxde. However, I don't certainly know which ones can be removed without confining functionality. If someone knows, help is highly appreciated.
merlin1
