22 lines
512 B
Bash
22 lines
512 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
COLOR="$BLUE"
|
||
|
|
|
||
|
|
sketchybar --add item clock right \
|
||
|
|
--set clock update_freq=1 \
|
||
|
|
icon.padding_left=10 \
|
||
|
|
icon.color="$COLOR" \
|
||
|
|
icon="" \
|
||
|
|
label.color="$COLOR" \
|
||
|
|
label.width=54 \
|
||
|
|
label.padding_right=5 \
|
||
|
|
align=center \
|
||
|
|
background.height=21 \
|
||
|
|
background.corner_radius="$CORNER_RADIUS" \
|
||
|
|
background.padding_right=2 \
|
||
|
|
background.border_width="$BORDER_WIDTH" \
|
||
|
|
background.border_color="$COLOR" \
|
||
|
|
background.color="$BAR_COLOR" \
|
||
|
|
background.drawing=on \
|
||
|
|
script="$PLUGIN_DIR/clock.sh"
|