I thought that I had changed my Ubuntu to a Xubuntu by switching to xfce desktop (Ubuntu 20.04). Though, when I enter gnome-shell --version
in the terminal, I get GNOME Shell 3.36.1
.
When I enter printenv | grep XDG
I get:
XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/etc/xdg
XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
XDG_SESSION_DESKTOP=xubuntu
XDG_SESSION_TYPE=x11
XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/mafalda
XDG_CURRENT_DESKTOP=XFCE
XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
XDG_SESSION_CLASS=user
XDG_RUNTIME_DIR=/run/user/1000
XDG_DATA_DIRS=/usr/share/xfce4:/usr/share/xubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop
And sudo dpkg -l | grep gnome
lists a lot of GNOME packages.
Is that normal? I am trying to tidy up my system a little after recognizing I had several screensavers installed that were maybe interfering with each other.
Does Xfce need the GNOME packages (like gnome-bluetooth, gnome-power-manager...), or can I uninstall them?
sudo apt-get install xubuntu-desktop^
do? – ema May 20 '20 at 13:25sudo apt-get --purge remove ubuntu-desktop
, or by the long part of code you posted in the linked thread, could it break the software I installed, the preferences I set (in non-GNOME apps) or sth similar? I would really like to clean up unnecessary double applications, but am still a bit afraid ;) – ema May 20 '20 at 13:33~/.config
and other dot-folders) will remain here, GSettings and Dcont settings will not be changed. I have tested the long command in linked tread on VM, but if you are unsure - you can run it with--simulate
first and then edit final list of packages to be removed. – N0rbert May 20 '20 at 13:45sudo apt-get purge --simulate
with the list of all the GNOME packages from your link, exceptgnome-disk-utility
. What seems strange to me is that according to the terminal, it tries to purge severalxfce4
packages. Why is that? And: When does it start (or stop) to "simulate"? – ema May 20 '20 at 14:01