mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 19:01:43 +01:00
14 lines
318 B
Bash
Executable File
14 lines
318 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## launch wofi with alt config
|
|
|
|
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
|