From fd76dfc449bbe9f615ddc15d7a0feea5e9790cbb Mon Sep 17 00:00:00 2001 From: Miika Date: Tue, 23 Jun 2020 21:52:34 +0300 Subject: [PATCH] Fixed help-icon showing the pid of dwm although I'm not sure if that was wanted behaviour... --- .local/bin/statusbar/help-icon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/statusbar/help-icon b/.local/bin/statusbar/help-icon index 5044324b..8f779a63 100755 --- a/.local/bin/statusbar/help-icon +++ b/.local/bin/statusbar/help-icon @@ -3,7 +3,7 @@ # The clickable help menu. Middle click to restart wm. # If dwm is running, use dwm's readme and restart. -pgrep -f "\sdwm$" && +pgrep -f "\sdwm$" | /dev/null && READMEFILE=/usr/local/share/dwm/larbs.mom restartwm() { pkill -HUP dwm ;} || restartwm() { i3 restart ;}