From a30f9f5bd1c9c3fcd96b32e3919206df0e9306bf Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Wed, 28 Dec 2022 19:09:24 +0100 Subject: [PATCH] Add dwmstatus-restart script as an example. --- dwmstatus-restart | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 dwmstatus-restart diff --git a/dwmstatus-restart b/dwmstatus-restart new file mode 100755 index 0000000..eec88d0 --- /dev/null +++ b/dwmstatus-restart @@ -0,0 +1,16 @@ +#!/bin/sh + +if pgrep -x dwmstatus 2>&1 >/dev/null; +then + printf "Killing old dwmstatus instances ... " + pkill -KILL -x dwmstatus + printf "done.\n" +fi + +if [ -e $HOME/.xinitrc ]; +then + cat $HOME/.xinitrc | grep dwmstatus | sh +else + dwmstatus & +fi + -- 2.20.1