9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CONFIG="$HOME/.config/waybar/config"
|
|
STYLE="$HOME/.config/waybar/style.css"
|
|
|
|
if [[ ! $(pidof waybar) ]]; then
|
|
waybar --bar main-bar --log-level error --config ${CONFIG} --style ${STYLE}
|
|
fi
|