aboutsummaryrefslogtreecommitdiff
path: root/SystemD
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-10-18 19:58:45 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-10-18 19:58:45 +0100
commit84fb1be64cf47f7867d1163ec396af84cf8471b8 (patch)
treee3092ede300afffd6aa8d644ce7b1a44cb531d87 /SystemD
parent434014a47d0a67796fd79a199daf44a1fb3146e1 (diff)
downloaddotfiles-84fb1be64cf47f7867d1163ec396af84cf8471b8.tar.gz
dotfiles-84fb1be64cf47f7867d1163ec396af84cf8471b8.tar.bz2
dotfiles-84fb1be64cf47f7867d1163ec396af84cf8471b8.zip
(Scripts|SystemD)+mail fetch script and a SystemDservice/timer for it
Syncs every 3 hours. Produces a notify-send message on fetching.
Diffstat (limited to 'SystemD')
-rw-r--r--SystemD/.config/systemd/user/mail.service6
-rw-r--r--SystemD/.config/systemd/user/mail.timer10
2 files changed, 16 insertions, 0 deletions
diff --git a/SystemD/.config/systemd/user/mail.service b/SystemD/.config/systemd/user/mail.service
new file mode 100644
index 0000000..16d87c5
--- /dev/null
+++ b/SystemD/.config/systemd/user/mail.service
@@ -0,0 +1,6 @@
+[Unit]
+Description=Syncing mail using mbsyncrc
+
+[Service]
+Type=simple
+ExecStart=%h/.local/scripts/mail_fetch
diff --git a/SystemD/.config/systemd/user/mail.timer b/SystemD/.config/systemd/user/mail.timer
new file mode 100644
index 0000000..0d1b970
--- /dev/null
+++ b/SystemD/.config/systemd/user/mail.timer
@@ -0,0 +1,10 @@
+[Unit]
+Description=Run mail sync every 3 hours
+
+[Timer]
+OnBootSec=1min
+OnUnitActiveSec=10800
+Unit=mail.service
+
+[Install]
+WantedBy=timers.target