Skip to content

Instantly share code, notes, and snippets.

@donghee
Created January 27, 2016 09:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save donghee/62dbeb76ca0ac21c3053 to your computer and use it in GitHub Desktop.
Save donghee/62dbeb76ca0ac21c3053 to your computer and use it in GitHub Desktop.
XFCE / Xubuntu themes in Debian

Follow these steps to install Greybird theme and elementary XFCE icons. This is the default theme in Xubuntu, but not in Debian and other derivatives. The following steps will give you that Xubuntu look in just 2 minutes!

# Install theme
mkdir -p ~/.themes
cd $_
wget https://github.com/shimmerproject/Greybird/archive/master.zip
unzip master.zip
rm master.zip


# Install Icons
mkdir -p ~/.icons
cd $_

wget https://github.com/shimmerproject/elementary-xfce/archive/master.zip
unzip master.zip
mv elementary*/* .
rm master.zip

# update icon cache (optional)
gtk-update-icon-cache-3.0 -f -t ~/.icons

For the Greybird theme to work, you need to:

apt-get install gtk2-engines-murrine gtk3-engines-unico

Then apply the themes in:

Settings Manager --> Appearance --> Style tab: choose "Greybird master"
Settings Manager --> Appearance --> Icons tab: choose "elementary xfce dark"
Settings Manager --> Window Manager --> Style tab: choose "Greybird master"

For the themes to work even for the root user (such as Synaptic), you can set up a symlink:

# Open a root shell
su -
ln -s /home/bdsatish/.themes  /root

# Just checking
ls -A /root/.themes
Greybird-master

Reference: http://leranda.com/2011/10/how-to-install-xubuntus-xfce-theme-in-archlinux/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment