From 5f395732433a6fbbb3bbfa434113d2ddb3de8568 Mon Sep 17 00:00:00 2001 From: Dominik Lohmann Date: Tue, 25 Jul 2017 13:56:06 +0200 Subject: [PATCH] Add support for chunkwm (macOS window manager) This PR adds support for chunkwm - https://github.com/koekeishiya/chunkwm --- neofetch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" ;;