Show bbLean instead of Blackbox

This commit is contained in:
Dylan Araps 2016-10-17 19:47:48 +11:00
parent f131a42ad8
commit 2a4f82a317
1 changed files with 8 additions and 2 deletions

View File

@ -545,7 +545,13 @@ getwm() {
"Mac OS X") wm="Quartz Compositor" ;;
"Windows")
wm="$(tasklist | grep -m 1 -o "bugn\|Windawesome\|blackbox\|emerge\|litestep")"
[ -z "$wm" ] && wm="Explorer"
if ["$wm" ]; then
[ "$wm" == "Blackbox" ] && wm="bbLean (Blackbox)"
wm="$wm, Explorer"
else
wm="Explorer"
fi
;;
esac
fi
@ -665,7 +671,7 @@ getwmtheme() {
wmtheme="${wmtheme%.*}"
;;
'Blackbox')
'Blackbox' | "bbLean"*)
path="$(wmic process get ExecutablePath | grep "blackbox")"
path="${path//'\'/'/'}"