RAWR
Really? Another Water Reminder?
Usage
You can either write a config (located at ~/.config/rawr/config.toml, example) or use it as a cli:
# Send a single notification (if you want to use it in a cron-job)
rawr --no-timer --title "Water Reminder" --message "Drink some water :3"
# Send a notification every 30 minutes
rawr --interval "30m" --title "Water Reminder" --message "Drink some water :3"
Examples
For hyprland, you can use something like
exec-once=rawr
Or with systemd-user at /etc/systemd/user/rawr.service
[Unit]
Description=Reminds you to drink water
[Service]
Type=simple
ExecStart=/usr/bin/rawr
Restart=on-failure
StandardOutput=file:%h/log_file
[Install]
WantedBy=default.target
You can start it with
systemctl enable --user --now rawr.service
Compilation
Built using go version go1.24.6 linux/amd64, you can compile it by doing:
go build cmd/rawr/main.go -o rawr
Or if you wish to use makepkg
curl -LO https://git.gay/kai/rawr/raw/branch/main/PKGBUILD
makepkg -si
Acknowledgements