8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if pgrep -x wofi >/dev/null; then
|
|
pkill -x wofi
|
|
else
|
|
wofi --show drun
|
|
fi
|