From 5caac4a91af7db6ce98ccbee29a62a807e8864f9 Mon Sep 17 00:00:00 2001 From: Tom Hutchings Date: Mon, 25 Sep 2017 18:27:35 +0100 Subject: [PATCH] tiny fix for WM always being detected as Kwm on macOS --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 8637b161..415bd32d 100755 --- a/neofetch +++ b/neofetch @@ -706,7 +706,7 @@ get_wm() { else case "$os" in "Mac OS X") - ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hunkwm')" + ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hun[k]wm')" case "$ps_line" in *"kwm"*) wm="Kwm" ;;