Files
blacklayer/start-waybars.sh
T
2026-01-19 00:35:40 +03:00

15 lines
342 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# Ortam değişkenleri
export XDG_RUNTIME_DIR="/run/user/$(id -u)"
export WAYLAND_DISPLAY="wayland-1"
WAYBAR_BIN="/usr/bin/waybar"
CONFIG_DIR="$HOME/.config/waybar"
# Tüm config-* dosyalarını al
for CONFIG in "$CONFIG_DIR"/config-*; do
echo "[waybar] starting with $CONFIG"
"$WAYBAR_BIN" -c "$CONFIG" &
done