2024-12-08 15:49:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
query=$(defaults read -g AppleInterfaceStyle | xargs)
|
|
|
|
|
|
|
|
if [ "$query" = "Dark" ]; then
|
2025-01-04 22:16:35 +00:00
|
|
|
sketchybar --bar color=0xff313244 \
|
|
|
|
--set '/.*/' icon.color=0xffcdd6f4 label.color=0xffcdd6f4
|
2024-12-08 15:49:58 +00:00
|
|
|
else
|
2025-01-04 22:16:35 +00:00
|
|
|
sketchybar --bar color=0xffeff1f5 \
|
|
|
|
--set '/.*/' icon.color=0xff4c4f69 label.color=0xff4c4f69
|
2024-12-08 15:49:58 +00:00
|
|
|
fi
|
|
|
|
|