Files
Thinkpad-Hyprland-Dotfiles/config/hypr/Scripts/toggle-wofi.sh
2026-04-28 03:59:07 +02:00

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