From 4146ca88365d74f3195d3438d90f6f6e44a7172d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 5 Aug 2026 11:02:20 -0400 Subject: [PATCH] [systemd] Rename syncmail to checkmail --- .../systemd/user/{syncmail.service => checkmail.service} | 2 +- systemd/.config/systemd/user/checkmail.timer | 9 +++++++++ systemd/.config/systemd/user/syncmail.timer | 9 --------- 3 files changed, 10 insertions(+), 10 deletions(-) rename systemd/.config/systemd/user/{syncmail.service => checkmail.service} (80%) create mode 100644 systemd/.config/systemd/user/checkmail.timer delete mode 100644 systemd/.config/systemd/user/syncmail.timer diff --git a/systemd/.config/systemd/user/syncmail.service b/systemd/.config/systemd/user/checkmail.service similarity index 80% rename from systemd/.config/systemd/user/syncmail.service rename to systemd/.config/systemd/user/checkmail.service index 3ed8d7f..7d0f62b 100644 --- a/systemd/.config/systemd/user/syncmail.service +++ b/systemd/.config/systemd/user/checkmail.service @@ -1,5 +1,5 @@ [Unit] -Description=Sync mail +Description=Check mail [Service] ExecStart=/home/powellc/.local/bin/checkmail diff --git a/systemd/.config/systemd/user/checkmail.timer b/systemd/.config/systemd/user/checkmail.timer new file mode 100644 index 0000000..42e67fb --- /dev/null +++ b/systemd/.config/systemd/user/checkmail.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Check mail timer + +[Timer] +OnCalendar=*:0/2 +Unit=checkmail.service + +[Install] +WantedBy=default.target diff --git a/systemd/.config/systemd/user/syncmail.timer b/systemd/.config/systemd/user/syncmail.timer deleted file mode 100644 index 507c118..0000000 --- a/systemd/.config/systemd/user/syncmail.timer +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Sync mail timer - -[Timer] -OnCalendar=*:0/3 -Unit=syncmail.service - -[Install] -WantedBy=default.target