Files
tmux-remind/scripts/main.sh
Paolo Donadeo 2f5690f08f feat(calendar): extend calendar view to show next 4 weeks
Update both the tmux popup title and the `rem` command in
`show_calendar.sh` to display events for the next 4 weeks instead of 2
weeks.
2025-12-24 21:47:36 +01:00

48 lines
1.1 KiB
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Function to read tmux options with default values
get_tmux_option() {
local option="$1"
local default_value="$2"
local option_value
option_value=$(tmux show-option -gqv "$option")
if [ -z "$option_value" ]; then
echo "$default_value"
else
echo "$option_value"
fi
}
# Example: read user configuration
# my_option=$(get_tmux_option "@plugin_option" "default_value")
function get_datetime {
date "+%d/%m/%Y %H:%M"
}
function show_reminders {
local datetime
datetime=$(get_datetime)
tmux display-popup -T "#[align=centre]Today's Reminders - $datetime" -w 60% -h 60% -x C -y C -E -- "$CURRENT_DIR/show_reminders.sh"
}
function show_calendar {
local datetime
datetime=$(get_datetime)
tmux display-popup -T "#[align=centre]Next 4 Weeks - $datetime" -w 99% -h 99% -x C -y C -E -- "$CURRENT_DIR/show_calendar.sh"
}
function main {
if [ "$1" == "reminders" ]; then
show_reminders
else
show_calendar
fi
}
main "$@"