diff options
Diffstat (limited to '.scripts')
-rwxr-xr-x | .scripts/pidkill | 2 | ||||
-rwxr-xr-x | .scripts/pidkillall | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.scripts/pidkill b/.scripts/pidkill index b44dd84..f64d624 100755 --- a/.scripts/pidkill +++ b/.scripts/pidkill @@ -5,5 +5,5 @@ pid=$(echo $prok | awk '{print $1}') pname=$(echo $prok | awk '{print $4}') kill -15 $pid 2>/dev/null && -[ -n $pname ] && dunstify "Terminated process Successfully" "$pname was killed" -i skull +[ -n "$pname" ] && dunstify "Terminated process Successfully" "$pname was killed" -i skull diff --git a/.scripts/pidkillall b/.scripts/pidkillall index afbf007..1ebc38f 100755 --- a/.scripts/pidkillall +++ b/.scripts/pidkillall @@ -4,6 +4,6 @@ psout=$(ps -u $USER -o pid,%cpu,%mem,comm | sed -n '1!p' | sort -b -k2 -r| cut - //uniq without piping into sort before with the help of awk killall $psout 2>/dev/null && -[ -n $psout ] && dunstify "Terminated all processes Successfully" "$psout was killed" -i skull +[ -n "$psout" ] && dunstify "Terminated all processes Successfully" "$psout was killed" -i skull |