ohnonot 032a69b863 github to notabug | 6 years ago | |
---|---|---|
NewOdyssey | 6 years ago | |
LICENSE | 8 years ago | |
LICENSE.CC | 8 years ago | |
LICENSE.GPL | 8 years ago | |
README.md | 8 years ago | |
makelinks.sh | 8 years ago |
Includes a tint2 config file.
The pixmap a.k.a pixbuf engine for the gtk2 theme.
Just clone it to wherever you like, then run ./makelinks.sh "directory"
.
If you omit "directory", it will default to ~/.themes
.
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