GNU / Linux December 2013 Desktops


Recommended Posts

Oo haven't seen Numix blue yet, wasn't a fan of the orange -- think I found me a keeper GTK theme.

 

There's a Numix Blue theme in Gnome Look but it must have some modifications beside the color because it didn't look right.

 

I just took the vanilla Numix theme and modified the CSS myself:

#!/bin/bash
 
if [[ $EUID -ne 0 ]]; then
   echo "This script must be run as root" 1>&2
   exit 1
else
   echo "Changing GTK3 to blue..."
   sed -i 's/d64937/527ead/g' /usr/share/themes/Numix/gtk-3.0/gtk.css
   sed -i 's/214, 73, 55/82, 126, 173/g' /usr/share/themes/Numix/gtk-3.0/gtk.css
   echo "Changing GTK2 to blue..."
   sed -i 's/d64937/527ead/g' /usr/share/themes/Numix/gtk-2.0/gtkrc
   echo "Done."
fi
  • Like 2
Link to comment
Share on other sites

This topic is now closed to further replies.