diff options
Diffstat (limited to '.scripts')
-rwxr-xr-x | .scripts/pidkillall | 5 |
1 files changed, 3 insertions, 2 deletions
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 - - |