From d6b8f2b882a17846dc9ec0399ef700456d5cf23d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 3 Oct 2017 11:49:02 -0300 Subject: Fix POWERLINE_PID evaluation --- xsessionrc.dot.link | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xsessionrc.dot.link b/xsessionrc.dot.link index d50d7e2..e9e7e28 100755 --- a/xsessionrc.dot.link +++ b/xsessionrc.dot.link @@ -138,7 +138,9 @@ fi # Kill any previous powerline-awesome instance # A window manager like Awesome may later start a new instance so it can appear at the wibar -POWERLINE_PID="`ps -o pid,command | grep powerline-awesome.py | cut -d ' ' -f 1`" +#POWERLINE_PID="`ps -ax -o pid,command | grep 'powerline-awesome.py' | grep -v grep | awk '{ print $1 }'`" +#POWERLINE_PID="`ps -x -o pid,command | grep '^/usr/bin/python /usr/share/powerline/bindings/awesome/powerline-awesome.py' | cut -d ' ' -f 1`" +POWERLINE_PID="`pidof -x /usr/share/powerline/bindings/awesome/powerline-awesome.py`" if [ ! -z "$POWERLINE_PID" ]; then kill $POWERLINE_PID fi -- cgit v1.2.3