10 lines
251 B
Bash
Executable File
10 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
ps a | awk '
|
|
NR > 1 {
|
|
pid = $1
|
|
$1 = $2 = $3 = $4 = ""
|
|
sub(/^ */, "", $0)
|
|
print pid " " $0
|
|
}
|
|
' | (wofi --style ~/.config/wofi/style/style.css -dmenu -l 10 || exit 0) | awk '{print $1}' | xargs kill -9
|