mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
12 lines
280 B
Bash
Executable File
12 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/hypr/wofi/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
|