mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
9 lines
199 B
Bash
Executable File
9 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/hypr/waybar/config"
|
|
STYLE="$HOME/.config/hypr/waybar/style.css"
|
|
|
|
if [[ ! $(pidof waybar) ]]; then
|
|
waybar --log-level error --config ${CONFIG} --style ${STYLE}
|
|
fi
|