summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/sxhkd/sxhkdrc4
-rwxr-xr-x[-rw-r--r--].local/bin/sp0
-rwxr-xr-x.scripts/pidkill6
-rwxr-xr-x.scripts/pidkillall9
4 files changed, 16 insertions, 3 deletions
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc
index 67b1a9c..2605319 100644
--- a/.config/sxhkd/sxhkdrc
+++ b/.config/sxhkd/sxhkdrc
@@ -105,6 +105,10 @@ super + d
super + F1
pidkill
+#dmenu pidkillall
+ctrl + F1
+ pidkillall
+
#dmenu emoji-picker (universal)
super + F2
emojisel
diff --git a/.local/bin/sp b/.local/bin/sp
index e69de29..e69de29 100644..100755
--- a/.local/bin/sp
+++ b/.local/bin/sp
diff --git a/.scripts/pidkill b/.scripts/pidkill
index e75687f..754a610 100755
--- a/.scripts/pidkill
+++ b/.scripts/pidkill
@@ -1,9 +1,9 @@
#!/bin/sh
-prok=$(ps -u $USER -o pid,%mem,%cpu,comm | sort -b -k2 -r | sed -n '1!p' | dmenu -i -l 15 )
+prok=$(ps -u $USER -o pid,%mem,%cpu,comm | sed -n '1!p' | sort -b -k2 -r | dmenu -i -l 15 )
pid=$(echo $prok | awk '{print $1}')
pname=$(echo $prok | awk '{print $4}')
-kill -15 $pid 2>/dev/null
-[ -z $pname ] || dunstify "Terminated process Successfully" "$pname was killed"
+kill -15 $pid 2>/dev/null &&
+[ -n $pname ] && dunstify "Terminated process Successfully" "$pname was killed"
diff --git a/.scripts/pidkillall b/.scripts/pidkillall
new file mode 100755
index 0000000..86fad3c
--- /dev/null
+++ b/.scripts/pidkillall
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+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
+
+killall $psout 2>/dev/null &&
+[ -n $psout ] && dunstify "Terminated all processes Successfully" "$psout was killed"
+
+