You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.8 KiB
97 lines
3.8 KiB
# This is a demo config to showcase some of the most important commands.
|
|
# It is meant to be changed and configured, as it is intentionally kept sparse.
|
|
# For a (much) more advanced configuration example see my dotfiles:
|
|
# https://github.com/FelixKratz/dotfiles
|
|
|
|
PLUGIN_DIR="$CONFIG_DIR/plugins"
|
|
|
|
##### Bar Appearance #####
|
|
# Configuring the general appearance of the bar.
|
|
# These are only some of the options available. For all options see:
|
|
# https://felixkratz.github.io/SketchyBar/config/bar
|
|
# If you are looking for other colors, see the color picker:
|
|
# https://felixkratz.github.io/SketchyBar/config/tricks#color-picker
|
|
|
|
sketchybar --bar position=top height=40 blur_radius=30 color=0xff000000
|
|
|
|
##### Changing Defaults #####
|
|
# We now change some default values, which are applied to all further items.
|
|
# For a full list of all available item properties see:
|
|
# https://felixkratz.github.io/SketchyBar/config/items
|
|
|
|
default=(
|
|
padding_left=5
|
|
padding_right=5
|
|
|
|
icon.color=0xffffffff
|
|
icon.font="SauceCodePro Nerd Font:Regular:16.0"
|
|
icon.padding_left=3
|
|
icon.padding_right=3
|
|
|
|
label.color=0xffffffff
|
|
label.font="SauceCodePro Nerd Font:Regular:14.0"
|
|
label.padding_left=3
|
|
label.padding_right=3
|
|
)
|
|
sketchybar --default "${default[@]}"
|
|
|
|
### Aerospace
|
|
|
|
sketchybar --add event aerospace_workspace_change
|
|
sketchybar --add item aerospace left \
|
|
--subscribe aerospace aerospace_workspace_change \
|
|
--set aerospace \
|
|
icon.drawing=off \
|
|
label="$(aerospace list-workspaces --focused)" \
|
|
script="$CONFIG_DIR/plugins/aerospace.sh"
|
|
|
|
##### Adding Left Items #####
|
|
# We add some regular items to the left side of the bar, where
|
|
# only the properties deviating from the current defaults need to be set
|
|
|
|
sketchybar --add item front_app left \
|
|
--set front_app icon.drawing=off script="$PLUGIN_DIR/front_app.sh" \
|
|
--subscribe front_app front_app_switched
|
|
|
|
##### Adding Right Items #####
|
|
# In the same way as the left items we can add items to the right side.
|
|
# Additional position (e.g. center) are available, see:
|
|
# https://felixkratz.github.io/SketchyBar/config/items#adding-items-to-sketchybar
|
|
|
|
# Some items refresh on a fixed cycle, e.g. the clock runs its script once
|
|
# every 10s. Other items respond to events they subscribe to, e.g. the
|
|
# volume.sh script is only executed once an actual change in system audio
|
|
# volume is registered. More info about the event system can be found here:
|
|
# https://felixkratz.github.io/SketchyBar/config/events
|
|
|
|
sketchybar --add item datetime right \
|
|
--set datetime update_freq=30 icon= script="$PLUGIN_DIR/datetime.sh" \
|
|
--add item wifi right \
|
|
--subscribe wifi wifi_change \
|
|
--set wifi \
|
|
label.drawing=off \
|
|
update_freq=30 \
|
|
click_script="open x-apple.systempreferences:com.apple.wifi-settings-extension" \
|
|
script="$PLUGIN_DIR/wifi.sh" \
|
|
--add item tailscale right \
|
|
--set tailscale \
|
|
label.drawing=off \
|
|
update_freq=30 \
|
|
script="$PLUGIN_DIR/tailscale.sh" \
|
|
--add item volume right \
|
|
--set volume \
|
|
label.drawing=off \
|
|
click_script="sketchybar -m --set \$NAME label.drawing=toggle" \
|
|
script="$PLUGIN_DIR/volume.sh" \
|
|
--subscribe volume volume_change \
|
|
--add item battery right \
|
|
--set battery \
|
|
label.drawing=off \
|
|
update_freq=120 \
|
|
click_script="sketchybar -m --set \$NAME label.drawing=toggle" \
|
|
script="$PLUGIN_DIR/battery.sh" \
|
|
--subscribe battery system_woke power_source_change
|
|
|
|
##### Force all scripts to run the first time (never do this in a script) #####
|
|
sketchybar --update
|