2023-09-21 18:37:25 -04:00

11 lines
211 B
Bash
Executable File

#!/bin/bash
CONFIG="$HOME/.config/wofi/config"
STYLE="$HOME/.config/wofi/style.css"
if [[ ! $(pidof wofi) ]]; then
wofi --show drun --prompt 'Search...' --conf ${CONFIG} --style ${STYLE}
elses
pkill wofi
fi