fix(scripts): increase tmux popup height for reminders

Increase the height of the tmux display-popup in `show_reminders` from
50 to 60 to improve visibility of reminders.
This commit is contained in:
2025-12-24 12:45:35 +01:00
parent e2ab9e839a
commit 13a22c61fd

View File

@@ -28,7 +28,7 @@ function get_italian_datetime {
function show_reminders { function show_reminders {
local datetime local datetime
datetime=$(get_italian_datetime) datetime=$(get_italian_datetime)
tmux display-popup -T "#[align=centre]Impegni di oggi - $datetime" -w 60% -h 50% -x C -y C -E -- "$CURRENT_DIR/show_reminders.sh" tmux display-popup -T "#[align=centre]Impegni di oggi - $datetime" -w 60% -h 60% -x C -y C -E -- "$CURRENT_DIR/show_reminders.sh"
} }
function show_calendar { function show_calendar {