I've been using the lubuntu lxqt desktop for some time on my desktop PC with great success. It's a fast system, easy on resources and fairly simple to mod and tune to one's needs. I thought I'd share how I use it on a RPi. I assume you know how to configure raspi-config already so I don't cover that.
It's fairly simple to do, just follow these basic steps. If you use another username other than the default "pi" user, then use your name where the
instructions show <your username>.otherwise skip the adduser and usermod steps and use the default "pi" username.
Code: Select all
Burn a copy of the Raspberry OS lite version to your SD card and boot it up.
sudo adduser <your username>
sudo usermod -aG sudo <your username>
sudo raspi-config
-- reboot --
-- login with your username (if you added it previously) after reboot --
sudo apt-get update
sudo apt-get upgrade
-- reboot --
sudo apt-get install lxqt-core
sudo apt-get install xinit
-- reboot --
Code: Select all
if [[ -z "$DISPLAY" ] &&
[[ $(tty) = /dev/tty1 ]] ;
then . startx
logout
fi
You now have a "plain jane" lxqt desktop that you can configure pretty much however you wish.
I usually add the muon package manager: sudo apt-get install muon and use it to manage my installed packages.
As lxqt uses the qt toolkit you can really tweak your desktop appearance by installing the kvamtum qt desktop program via the command-line: sudo apt-get install qt5-style-kvantum or use muon and select the same package.
So, there you go. If you give it a shot I think you'll be impressed with how snappy the desktop is and how you can configure your RPi to be just the way you want it to be.
Cheers, be well and have fun!
Cheers.