Add support for olimorris/tmux-pomodoro-plus tmux plugin. (#22)

This commit is contained in:
Luciano 2024-10-30 22:02:02 -03:00 committed by GitHub
parent 74c6c25a28
commit 4646757c9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 26 additions and 0 deletions

23
scripts/pomodoro.sh Executable file
View file

@ -0,0 +1,23 @@
#!/usr/bin/env bash
if [ -z "$TMUX" ]; then
echo "No tmux session."
exit 1
fi
# Check for olimorris/tmux-pomodoro-plus scripts
POMODORO_SCRIPT="$HOME/.tmux/plugins/tmux-pomodoro-plus/scripts/pomodoro.sh"
POMODORO_HELPER="$HOME/.tmux/plugins/tmux-pomodoro-plus/scripts/helpers.sh"
if [ -f "$POMODORO_SCRIPT" ]; then
. "$POMODORO_SCRIPT"
. "$POMODORO_HELPER"
fi
main() {
pomodoro_status="$(pomodoro_status)"
RATE=$(get_tmux_option "@tmux2k-ping-rate" 5)
sleep "$RATE"
}
main