diff options
Diffstat (limited to 'Scripts')
-rwxr-xr-x | Scripts/.local/scripts/qscope | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Scripts/.local/scripts/qscope b/Scripts/.local/scripts/qscope new file mode 100755 index 0000000..9849cf5 --- /dev/null +++ b/Scripts/.local/scripts/qscope @@ -0,0 +1,4 @@ +#!/usr/bin/env sh + +pid=$(pgrep ".*" -l | dmenu -p "Choose process: " | sed "s/\\([0-9]*\\).*/\1/g") +kill -9 $pid |