From a40603b25bce5641f93a42b181660f1e3a8fc328 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Fri, 16 Sep 2022 17:25:15 +0530 Subject: pidkillall- adding telegram exception case --- .scripts/pidkillall | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.scripts') diff --git a/.scripts/pidkillall b/.scripts/pidkillall index faf8705..f4c0e6c 100755 --- a/.scripts/pidkillall +++ b/.scripts/pidkillall @@ -3,7 +3,8 @@ psout=$(ps -u $USER -o pid,%cpu,%mem,comm | sed -n '1!p' | sort -b -k2 -r| cut --characters=1-18 --complement | awk '!x[$0]++'| dmenu -i -l 15 ) ##uniq without piping into sort before with the help of awk +##pname of telegram-desktop is displayed as telegram-deskto +[ "$psout" == telegram-deskto ] && psout=telegram-desktop + killall $psout 2>/dev/null && [ -n "$psout" ] && dunstify "Terminated all processes Successfully" "$psout was killed" -i skull - - -- cgit v1.2.3