PREFACE:
The reason
I am not a Linux expert, I have just started to play with Linux distros and Virtual Box.
I would love to build up a custom Ubuntu installation with:
- Lightdm
- Qtile
- Kitty
to customize a portable programming workspace since the programming language I know the most is Python, and I don't really like programming in Windows
N.B. I have already succeeded to do it on a VM with Ubuntu 18.04
Command-line commands I have run after minimal Ubuntu Installation
I started with installing xinit:
sudo apt install xinit
then I installed git and pip3:
sudo apt install git python3-pip
then I followed the official step-by-step Qtile installation guide (installed from source as suggested):
http://docs.qtile.org/en/latest/manual/install/index.html
THE ISSUE:
when I reboot the VM I get this:
login_image and this desktop-image after
2 problems here:
1. Why do I get a GUI login (that I suspect to be part of gnome desktop ) since I haven't installed one login manager like Lightdm yet
in 18.04 this didn't happen, I just got the regular GUI-less login
2. Why there is a different window manager that auto-boots different than Qtile
in 18.04 at this point of installation I had to manually type startx on the terminal to see a GUI
gdm3. I wonder also why that would be installed after just installing xinit. I would however think you install X with the packagexserver-commonorxorg. – vanadium Mar 14 '21 at 16:33