From 3217b921e5c57c101b8a07604aae00fab051e6b0 Mon Sep 17 00:00:00 2001 From: Andrew Titmuss Date: Tue, 17 Oct 2017 22:47:12 +1100 Subject: [PATCH] WM: Fix chunkwm being detected as Kwm on macOS --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 4de22a6a..c5135ea4 100755 --- a/neofetch +++ b/neofetch @@ -710,8 +710,8 @@ get_wm() { ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hun[k]wm')" case "$ps_line" in - *"kwm"*) wm="Kwm" ;; *"chunkwm"*) wm="chunkwm" ;; + *"kwm"*) wm="Kwm" ;; *"Amethyst"*) wm="Amethyst" ;; *"Spectacle"*) wm="Spectacle" ;; *) wm="Quartz Compositor" ;;