diff --git a/neofetch b/neofetch index b4ba2f49..ab48d5f7 100755 --- a/neofetch +++ b/neofetch @@ -682,10 +682,11 @@ get_wm() { else case "$os" in "Mac OS X") - ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm')" + ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hunkwm')" case "$ps_line" in *"kwm"*) wm="Kwm" ;; + *"chunkwm"*) wm="chunkwm" ;; *"Amethyst"*) wm="Amethyst" ;; *"Spectacle"*) wm="Spectacle" ;; *) wm="Quartz Compositor" ;;