mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
12 lines
286 B
Bash
12 lines
286 B
Bash
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/hypr/wofi/WofiBig/config"
|
|
STYLE="$HOME/.config/hypr/wofi/style.css"
|
|
COLORS="$HOME/.config/hypr/wofi/colors"
|
|
|
|
if [[ ! $(pidof wofi) ]]; then
|
|
wofi --show drun --prompt 'Search...' --conf ${CONFIG} --style ${STYLE} --color ${COLORS}
|
|
else
|
|
pkill wofi
|
|
fi
|