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