remind is a lightweight CLI utility for Linux that schedules desktop notifications using systemd-run and notify-send.
- systemd (default on Arch Linux)
- libnotify (provides
notify-send) - g++ (only if building from source)
- Download the
remindbinary from the Releases page. - Make it executable and move it to your
$PATH:chmod +x remind sudo cp remind /usr/local/bin/
- Clone the repository:
git clone [https://github.com/AnderFan/Remind.git](https://github.com/AnderFan/Remind.git) cd Remind - Compile and install:
g++ main.cpp -o remind -O3 sudo cp remind /usr/local/bin/
remind <date> <time> <title> [message]-
ISO Format (YYYY-MM-DD):
remind 2026-07-14 12:00:00 "Lunch" -
RU Format (DD.MM.YYYY):
remind 14.07.2026 13:23:00 "Ping" "pong"
-
Short ISO Format:
remind 07-14 09:42 "Daily sync" -
Short RU Format (DD.MM. - current year assumed):
remind 14.07 12:00 "Ping" "Simple alert"