From 7b3d79b4223b84081c6cfe6f9aa59e21c085f39d Mon Sep 17 00:00:00 2001 From: quak Date: Sat, 7 Jun 2025 18:06:09 +0200 Subject: [PATCH] . --- scripts/reminder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/reminder.sh b/scripts/reminder.sh index ccbeb84..54393bd 100755 --- a/scripts/reminder.sh +++ b/scripts/reminder.sh @@ -20,10 +20,10 @@ EOF notify-send "ERROR" "[atd.service] is not running" fi - reminder="$(rofi -dmenu -theme ~/.config/rofi/themes/command-runner-blue.rasi -mesg "${message_reminder}")" + reminder="$(rofi -dmenu -theme ~/.config/rofi/themes/input-dialog-blue.rasi -mesg "${message_reminder}")" if [[ -z "${reminder}" ]]; then return 1; fi - time="$(rofi -dmenu -theme ~/.config/rofi/themes/command-runner-blue.rasi -mesg "${message_time}")" + time="$(rofi -dmenu -theme ~/.config/rofi/themes/input-dialog-blue.rasi -mesg "${message_time}")" if [[ -z "${time}" ]]; then return 1; fi if ! $(echo "notify-send '${reminder}'" | at "${time}"); then