summarylogtreecommitdiffstats
path: root/dark-theme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dark-theme.sh')
-rwxr-xr-xdark-theme.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/dark-theme.sh b/dark-theme.sh
index 344058b81a00..00561e475fd5 100755
--- a/dark-theme.sh
+++ b/dark-theme.sh
@@ -38,9 +38,17 @@ elif [ "$1" = "light" ]; then
BG_X11="-B white ${HOME}/.wallpaper/dark.png"
BG_SWAY="--color #ffffff --image ${HOME}/.wallpaper/dark.png"
elif [ "$1" = "toggle" ]; then
- echo "$CURRENT" | grep -q "dark" && exec $0 light || exec $0 dark
+ if echo "$CURRENT" | grep -q "dark"; then
+ exec $0 light
+ else
+ exec $0 dark
+ fi
elif [ "$1" = "reapply" ]; then
- echo "$CURRENT" | grep -q "dark" && exec $0 dark || exec $0 light
+ if echo "$CURRENT" | grep -q "dark"; then
+ exec $0 dark
+ else
+ exec $0 light
+ fi
else
echo "Command $1 not valid."
exit 1