Reduce macOS WM detections to one ps call
This commit is contained in:
parent
1bd185874c
commit
0c4d4eb23a
15
neofetch
15
neofetch
|
@ -636,10 +636,17 @@ get_wm() {
|
||||||
else
|
else
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Mac OS X")
|
"Mac OS X")
|
||||||
wm="Quartz Compositor"
|
ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm')"
|
||||||
ps -e | grep -q '[S]pectacle' && wm='Spectacle'
|
|
||||||
ps -e | grep -q "[A]methyst" && wm="Amethyst"
|
if echo "$ps_line" | grep -q "kwm"; then
|
||||||
ps -e | grep -q "[k]wm" && wm="Kwm"
|
wm="Kwm"
|
||||||
|
elif echo "$ps_line" | grep -q "Amethyst"; then
|
||||||
|
wm="Amethyst"
|
||||||
|
elif echo "$ps_line" | grep -q "Spectacle"; then
|
||||||
|
wm="Spectacle"
|
||||||
|
else
|
||||||
|
wm="Quartz Compositor"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Windows")
|
"Windows")
|
||||||
|
|
Reference in New Issue