Merge pull request #185 from onespaceman/master

Use $GTK2_RC_FILES for GTK2 config if set
This commit is contained in:
Dylan Araps 2016-03-27 09:31:38 +11:00
commit e555ceeb9f
1 changed files with 2 additions and 2 deletions

View File

@ -1412,8 +1412,8 @@ getstyle () {
# Check for gtk2 theme
if [ -z "$gtk2theme" ]; then
if [ -f "$HOME/.gtkrc-2.0" ]; then
gtk2theme=$(grep "^[^#]*$name" "$HOME/.gtkrc-2.0")
if [ -f "${GTK2_RC_FILES:-$HOME/.gtkrc-2.0}" ]; then
gtk2theme=$(grep "^[^#]*$name" "${GTK2_RC_FILES:-$HOME/.gtkrc-2.0}")
elif [ -f "/usr/share/gtk-2.0/gtkrc" ]; then
gtk2theme=$(grep "^[^#]*$name" /usr/share/gtk-2.0/gtkrc)