Updated Neovim Plugins as well as cleaned up aerospace config and sketbar config and added fastfetch config
41 lines
2.3 KiB
Bash
Executable File
41 lines
2.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
sketchybar --set pomodoro popup.drawing=toggle \
|
|
popup.background.drawing=on \
|
|
popup.background.color="0xff363a4f" \
|
|
popup.background.corner_radius=3
|
|
|
|
STATUS=$(/usr/local/bin/pomodoro status)
|
|
|
|
if [ "$STATUS" = "" ]; then
|
|
sketchybar --set focus icon="" \
|
|
label="Focus 50:00" \
|
|
icon.color="0xfff5bde6" \
|
|
label.color="0xfff5bde6" \
|
|
click_script="/usr/local/bin/pomodoro start --duration 50 && sketchybar --set pomodoro popup.drawing=toggle"
|
|
sketchybar --set shortBreak icon="" \
|
|
label="Short Break 5:00" \
|
|
icon.color="0xffcad3f5" \
|
|
label.color="0xffcad3f5"
|
|
sketchybar --set longBreak icon="" \
|
|
label="Long Break 15:00" \
|
|
icon.color="0xffcad3f5" \
|
|
label.color="0xffcad3f5"
|
|
else
|
|
sketchybar --set focus icon="" \
|
|
label="Focus 50:00" \
|
|
icon.color="0xfff5bde6" \
|
|
label.color="0xfff5bde6" \
|
|
click_script="/usr/local/bin/pomodoro start --duration 50 && sketchybar --set pomodoro popup.drawing=toggle"
|
|
sketchybar --set shortBreak icon="" \
|
|
label="Short Break 5:00" \
|
|
icon.color="0xff91d7e3" \
|
|
label.color="0xff91d7e3" \
|
|
click_script="sketchybar --set pomodoro update_freq=0 icon='' label='Break Time!' icon.color='0xff91d7e3' label.color='0xff91d7e3' popup.drawing=toggle && /usr/local/bin/pomodoro break && sketchybar --set pomodoro update_freq=1"
|
|
sketchybar --set longBreak icon="" \
|
|
label="Long Break 15:00" \
|
|
icon.color="0xff91d7e3" \
|
|
label.color="0xff91d7e3" \
|
|
click_script="sketchybar --set pomodoro update_freq=0 icon='' label='Break Time!' icon.color='0xff91d7e3' label.color='0xff91d7e3' popup.drawing=toggle && /usr/local/bin/pomodoro break 15 && sketchybar --set pomodoro update_freq=1"
|
|
fi
|