diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-13 15:05:11 +0200 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-13 15:05:11 +0200 |
commit | 7c52e13134c29dbde4f7678be1be431b62afe91f (patch) | |
tree | 3d49cd3b64af9a3c0e6aae2871f2cd5526425535 /snotifd.service | |
parent | ed74ab2d27460ec11a29f6d005a003d69104d7c5 (diff) | |
download | simple-notification-daemon-7c52e13134c29dbde4f7678be1be431b62afe91f.tar.gz simple-notification-daemon-7c52e13134c29dbde4f7678be1be431b62afe91f.zip |
Add systemd service, add clear method call, add paging to snotifc
Diffstat (limited to 'snotifd.service')
-rw-r--r-- | snotifd.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/snotifd.service b/snotifd.service new file mode 100644 index 0000000..fc1feb4 --- /dev/null +++ b/snotifd.service @@ -0,0 +1,13 @@ +[Unit] +Description=Simple notification daemon +After=default.target + +[Service] +ExecStart=%h/bin/snotifd +Restart=on-failure +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=default.target + |