README.md 887 B

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