WM: Add support for Kwm on macOS
This commit is contained in:
parent
153c26aa1f
commit
9becea4feb
5
neofetch
5
neofetch
|
@ -629,7 +629,10 @@ get_wm() {
|
||||||
|
|
||||||
else
|
else
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Mac OS X") wm="Quartz Compositor" ;;
|
"Mac OS X")
|
||||||
|
wm="Quartz Compositor"
|
||||||
|
ps -e | grep -q "[k]wm" && wm="Kwm"
|
||||||
|
;;
|
||||||
"Windows")
|
"Windows")
|
||||||
wm="$(tasklist | grep -m 1 -o -F -e "bugn" -e "Windawesome" -e "blackbox" -e "emerge" -e "litestep")"
|
wm="$(tasklist | grep -m 1 -o -F -e "bugn" -e "Windawesome" -e "blackbox" -e "emerge" -e "litestep")"
|
||||||
[[ "$wm" == "blackbox" ]] && wm="bbLean (Blackbox)"
|
[[ "$wm" == "blackbox" ]] && wm="bbLean (Blackbox)"
|
||||||
|
|
Reference in New Issue