mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
9 lines
213 B
Bash
9 lines
213 B
Bash
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/hypr/waybar/config"
|
|
STYLE="$HOME/.config/hypr/waybar/style.css"
|
|
|
|
if [[ ! $(pidof waybar) ]]; then
|
|
waybar --bar main-bar --log-level error --config ${CONFIG} --style ${STYLE}
|
|
fi
|