From ebe5dcf40444e5bf5708066a26a545e2feabfcc9 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 7 Apr 2025 15:18:34 -0400 Subject: [PATCH] Remind moved to the panel, Ctrl+Alt+tab, r. --- i38.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/i38.sh b/i38.sh index 1e1768a..ceb217e 100755 --- a/i38.sh +++ b/i38.sh @@ -591,6 +591,11 @@ mode "panel" { # System information bound to s bindsym s exec --no-startup-id ${i3Path}/scripts/sysinfo.sh, mode "default" +$(if command -v remind &> /dev/null ; then + echo "# Reminders bound to r" + echo "bindsym r exec --no-startup-id ${i3Path}/scripts/reminder.sh, mode \"default\"" +fi) + # Simple notes system bound to n bindsym n exec --no-startup-id ${i3Path}/scripts/notes.py, mode "default" @@ -625,10 +630,6 @@ $(if command -v mumble &> /dev/null ; then echo "# Mumble bound to m" echo "bindsym m exec $(command -v mumble), mode \"default\"" fi) -$(if command -v remind &> /dev/null ; then - echo "# Reminders bound to r" - echo "bindsym r exec --no-startup-id ${i3Path}/scripts/reminder.sh, mode \"default\"" -fi) $(if command -v ocrdesktop &> /dev/null ; then echo "# OCR desktop bound to print screen alternative \$mod+r" echo "bindsym Print exec $(command -v ocrdesktop) -b, mode \"default\""