dots


commit
8a38baf
parent
790a91c
author
xxwhirlpool
date
2026-01-16 23:07:49 -0500 EST
nag
2 files changed,  +18, -1
M config/.config/shmoji/emojis.txt
+2, -1
 1@@ -1900,7 +1900,7 @@
 2 🤳🏽 selfie: medium skin tone
 3 🤳🏾 selfie: medium-dark skin tone
 4 🤳🏿 selfie: dark skin tone
 5-💪 flexed biceps
 6+💪 flexed biceps muscle arm
 7 💪🏻 flexed biceps: light skin tone
 8 💪🏼 flexed biceps: medium-light skin tone
 9 💪🏽 flexed biceps: medium skin tone
10@@ -3570,3 +3570,4 @@
11 ™ trademark tm
12 🫩 wtf
13 💽 minidisc
14+🫶 heart hands
A config/.local/bin/nag
+16, -0
 1@@ -0,0 +1,16 @@
 2+#!/usr/bin/env bash
 3+
 4+if [ $# -eq 0 ]; then
 5+	echo "Usage: nag [MINUTES]"
 6+	exit 1
 7+fi
 8+
 9+DURATION=$(( "$1" * 60 ))
10+DURATION_M=$(( "$DURATION"/60%60 ))
11+
12+MSG="it's been $DURATION_M minutes"
13+
14+notify-send "you'll get a reminder every $DURATION_M minutes"
15+
16+sleep "$DURATION"
17+notify-send "$MSG" && sleep 1 && spd-say -t female3 "$MSG"