56 lines
1.9 KiB
Bash
56 lines
1.9 KiB
Bash
#!/bin/bash
|
|
# __
|
|
# _ _____ ___ __/ / ___ _____
|
|
# | |/|/ / _ `/ // / _ \/ _ `/ __/
|
|
# |__,__/\_,_/\_, /_.__/\_,_/_/
|
|
# /___/
|
|
#
|
|
# -----------------------------------------------------
|
|
# Quit all running waybar instances
|
|
# -----------------------------------------------------
|
|
killall waybar
|
|
pkill waybar
|
|
sleep 0.5
|
|
|
|
# -----------------------------------------------------
|
|
# Default theme: /THEMEFOLDER;/VARIATION
|
|
# -----------------------------------------------------
|
|
themestyle="/ml4w-modern;/ml4w-modern/light"
|
|
|
|
# -----------------------------------------------------
|
|
# Get current theme information from ~/.config/ml4w/settings/waybar-theme.sh
|
|
# -----------------------------------------------------
|
|
if [ -f ~/.config/ml4w/settings/waybar-theme.sh ]; then
|
|
themestyle=$(cat ~/.config/ml4w/settings/waybar-theme.sh)
|
|
else
|
|
touch ~/.config/ml4w/settings/waybar-theme.sh
|
|
echo "$themestyle" > ~/.config/ml4w/settings/waybar-theme.sh
|
|
fi
|
|
|
|
IFS=';' read -ra arrThemes <<< "$themestyle"
|
|
echo ":: Theme: ${arrThemes[0]}"
|
|
|
|
if [ ! -f ~/.config/waybar/themes${arrThemes[1]}/style.css ]; then
|
|
themestyle="/ml4w;/ml4w/light"
|
|
fi
|
|
|
|
# -----------------------------------------------------
|
|
# Loading the configuration
|
|
# -----------------------------------------------------
|
|
config_file="config"
|
|
style_file="style.css"
|
|
|
|
# Standard files can be overwritten with an existing config-custom or style-custom.css
|
|
if [ -f ~/.config/waybar/themes${arrThemes[0]}/config-custom ] ;then
|
|
config_file="config-custom"
|
|
fi
|
|
if [ -f ~/.config/waybar/themes${arrThemes[1]}/style-custom.css ] ;then
|
|
style_file="style-custom.css"
|
|
fi
|
|
|
|
# Check if waybar-disabled file exists
|
|
if [ ! -f $HOME/.cache/waybar-disabled ] ;then
|
|
waybar -c ~/.config/waybar/themes${arrThemes[0]}/$config_file -s ~/.config/waybar/themes${arrThemes[1]}/$style_file &
|
|
fi
|
|
|