gtk: Fix config file read order. Closes #972

This commit is contained in:
Dylan Araps 2018-05-06 16:16:27 +10:00
parent a9c4db2b54
commit 8fe3130cbe
1 changed files with 3 additions and 2 deletions

View File

@ -2652,11 +2652,12 @@ get_style() {
if [[ -f "${GTK2_RC_FILES:-${HOME}/.gtkrc-2.0}" ]]; then
gtk2_theme="$(grep "^[^#]*${name}" "${GTK2_RC_FILES:-${HOME}/.gtkrc-2.0}")"
elif [[ -f "/etc/gtk-2.0/gtkrc" ]]; then
gtk2_theme="$(grep "^[^#]*${name}" /etc/gtk-2.0/gtkrc)"
elif [[ -f "/usr/share/gtk-2.0/gtkrc" ]]; then
gtk2_theme="$(grep "^[^#]*${name}" /usr/share/gtk-2.0/gtkrc)"
elif [[ -f "/etc/gtk-2.0/gtkrc" ]]; then
gtk2_theme="$(grep "^[^#]*${name}" /etc/gtk-2.0/gtkrc)"
fi
gtk2_theme="${gtk2_theme/${name}*=}"