wm_theme: Refactor Openbox theme detection

This commit is contained in:
Michael Straube 2019-12-12 11:54:24 +01:00
parent 5c740aa4f2
commit 00f1dadb85
1 changed files with 9 additions and 11 deletions

View File

@ -1809,19 +1809,17 @@ get_wm_theme() {
;;
"Openbox")
if [[ "$de" == "LXDE" && -f "${HOME}/.config/openbox/lxde-rc.xml" ]]; then
ob_file="lxde-rc"
case $de in
"LXDE"*) ob_file="lxde-rc" ;;
"LXQt"*) ob_file="lxqt-rc" ;;
*) ob_file="rc" ;;
esac
elif [[ "$de" == "LXQt" && -f "${HOME}/.config/openbox/lxqt-rc.xml" ]]; then
ob_file="lxqt-rc"
ob_file="${XDG_CONFIG_HOME}/openbox/${ob_file}.xml"
elif [[ -f "${HOME}/.config/openbox/rc.xml" ]]; then
ob_file="rc"
fi
wm_theme="$(awk '/<theme>/ {while (getline n) {if (match(n, /<name>/)) {l=n; exit}}}
END {split(l, a, "[<>]"); print a[3]}' \
"${XDG_CONFIG_HOME}/openbox/${ob_file}.xml")";
[[ -f "$ob_file" ]] && \
wm_theme="$(awk '/<theme>/ {while (getline n) {if (match(n, /<name>/))
{l=n; exit}}} END {split(l, a, "[<>]"); print a[3]}' "$ob_file")"
;;
"PekWM")