Files
dotfiles/sketchybar/plugins/theme.sh
2025-01-04 22:16:35 +00:00

13 lines
318 B
Bash
Executable File

#!/bin/sh
query=$(defaults read -g AppleInterfaceStyle | xargs)
if [ "$query" = "Dark" ]; then
sketchybar --bar color=0xff313244 \
--set '/.*/' icon.color=0xffcdd6f4 label.color=0xffcdd6f4
else
sketchybar --bar color=0xffeff1f5 \
--set '/.*/' icon.color=0xff4c4f69 label.color=0xff4c4f69
fi