Files
dotfiles/wofi/.config/wofi/run.sh
T
2024-09-22 01:40:52 -07:00

11 lines
212 B
Bash

#!/usr/bin/env bash
CONFIG="$HOME/.config/wofi/config/config"
STYLE="$HOME/.config/wofi/src/mocha/style.css"
if [[ ! $(pidof wofi) ]]; then
wofi --conf "${CONFIG}" --style "${STYLE}"
else
pkill wofi
fi