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
  • 44,904
  • 8
  • 102
  • 162
albo
  • 11

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
  • 44,904
  • 8
  • 102
  • 162
Nusry
  • 1,226