Fixed long standing bug of remind having more than one instance start if I3 was restarted.

This commit is contained in:
Storm Dragon
2024-04-17 16:12:03 -04:00
parent 82ce8e25d9
commit c8ea6ee9f8
2 changed files with 6 additions and 2 deletions

4
scripts/launch_remind.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
pgrep remind > /dev/null 2>&1 && exit 0
command remind -z '-k:${HOME}/.config/i3/scripts/reminder.sh %s &' ${HOME}/.reminders < /dev/null > /dev/null 2>&1 &