9 lines
169 B
Bash
9 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
NEW_THEME=$2
|
||
|
|
||
|
STYLE=$([ "$NEW_THEME" = "light" ] && echo "style.css" || echo "style.dark.css")
|
||
|
|
||
|
killall waybar
|
||
|
waybar --style=$HOME/.config/waybar/$STYLE &
|