Files
dotfiles/wofi/wofi_toggle.sh
2025-11-13 23:48:27 +03:00

8 lines
95 B
Bash
Executable File

#!/bin/bash
if pgrep -x wofi > /dev/null; then
pkill -x wofi
else
wofi --show drun
fi