No Description

ohnonot 032a69b863 github to notabug 5 years ago
NewOdyssey 032a69b863 github to notabug 5 years ago
LICENSE ac6c56caed added gpl 8 years ago
LICENSE.CC 991cd78800 First commit 8 years ago
LICENSE.GPL 991cd78800 First commit 8 years ago
README.md ac6c56caed added gpl 8 years ago
makelinks.sh 991cd78800 First commit 8 years ago

README.md

NewOdyssey GTK2, GTK3, Openbox and tint2 Themes

All features screenshot

Includes a tint2 config file.

Dependencies

The pixmap a.k.a pixbuf engine for the gtk2 theme.

Installation

Just clone it to wherever you like, then run ./makelinks.sh "directory".
If you omit "directory", it will default to ~/.themes.

Helpful snippets

If you store tint2rcs with your gtk themes, you can put something like this in your ~/.*profile...

export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
export GTK2_CURRENT_THEME="$(cut -d\" -f2 <<<"$(grep gtk-theme-name $GTK2_RC_FILES)")"

...and something like this in your ~/.xinitrc or ~/.config/openbox/autostart

tint2rc="$HOME/.themes/$GTK2_CURRENT_THEME/tint2/tint2rc"
if [ -f "$tint2rc" ]
then
  tint2 -c "$tint2rc" &
else
  tint2 &
fi
unset tint2rc