0

Can someone please help me find out which desktop this is?

screenshot of desktop in question

I found it in an answer to this question: What software can I use to view epub documents?

mchid
  • 43,546
  • 8
  • 97
  • 150
albo
  • 11
  • 1

1 Answers1

1

It's a themed KDE desktop.

The dock looks like plank and the icon pack used is La Capitaine.


the desktop environment:

As an official Ubuntu flavour or distro, you can install Kubuntu which uses the KDE plasma desktop.

Alternatively, you can install the KDE (plasma) desktop on an existing system by running the following commands (note: this will most likely change all of your defaults like your display manager and splash screen theme, default theme, etc):

sudo apt update
sudo apt install kubuntu-full

However, it is possible that KDE will still pick up some GTK themes from Gnome if you install this on an existing, standard, Gnome-based Ubuntu system.


icon theme and dock:

Next, you can install plank by running the following commands:

sudo apt update
sudo apt install plank

Finally, you can install the icon pack by running the following commands:

sudo apt update
sudo apt install git
mkdir ~/.icons
cd ~/.icons
git clone https://github.com/keeferrourke/la-capitaine-icon-theme.git

You will still have to select your icon theme through the KDE deksotp settings.

mchid
  • 43,546
  • 8
  • 97
  • 150
Nusry
  • 1,226
  • 9
  • 20
  • It should be noted that they moved the dash bar from the bottom to the top. This should be pretty easy to do but if you have trouble, just ask another question. – mchid Mar 23 '22 at 22:08
  • Additionally, they enabled the global menu to show File, Edit, View, Go, Help on the dash instead of the menu bar on the window so this might be something you'll have to look up as well. – mchid Mar 23 '22 at 22:13
  • I think there is an additional "active window control" widget or something of the sort. In addition, I think the dock is the Latte dock. I haven't had the time to experiment with all of this, but it's been really helpful. thanks – albo Apr 14 '22 at 01:53