summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-06-17 10:11:39 -0500
committerCase Duckworth2022-06-17 10:11:39 -0500
commit0751fdae16335ac6d9b6aaba77483a05d3151f8d (patch)
treef427e4f2cc3444249b20119e9b3b31256e0836aa
parentFix argument handling (diff)
downloadqotd-0751fdae16335ac6d9b6aaba77483a05d3151f8d.tar.gz
qotd-0751fdae16335ac6d9b6aaba77483a05d3151f8d.zip
Add extra/qotd-update HEAD main
-rw-r--r--extra/qotd-update.service9
-rwxr-xr-xextra/qotd-update.sh12
-rw-r--r--extra/qotd-update.timer9
3 files changed, 30 insertions, 0 deletions
diff --git a/extra/qotd-update.service b/extra/qotd-update.service new file mode 100644 index 0000000..da79953 --- /dev/null +++ b/extra/qotd-update.service
@@ -0,0 +1,9 @@
1[Unit]
2Description=Update qotd.txt
3
4[Service]
5Type=oneshot
6ExecStart=/usr/local/bin/qotd-update.sh
7
8[Install]
9WantedBy=multi-user.target
diff --git a/extra/qotd-update.sh b/extra/qotd-update.sh new file mode 100755 index 0000000..b199307 --- /dev/null +++ b/extra/qotd-update.sh
@@ -0,0 +1,12 @@
1#!/bin/sh
2# update QOTD
3
4qotd_file=$HOME/qotd.txt
5
6awk '{print;}/~ ~ ~/{exit;}' "$qotd_file" >/tmp/qotd
7echo >>/tmp/qotd
8echo "~ ~ ~" >>/tmp/qotd
9echo >>/tmp/qotd
10fortune >>/tmp/qotd
11
12mv /tmp/qotd "$qotd_file"
diff --git a/extra/qotd-update.timer b/extra/qotd-update.timer new file mode 100644 index 0000000..93b4491 --- /dev/null +++ b/extra/qotd-update.timer
@@ -0,0 +1,9 @@
1[Unit]
2Description=Update qotd.txt every day
3
4[Timer]
5OnCalendar=Daily
6Persistent=true
7
8[Install]
9WantedBy=timers.target