From fb8a828fe912f074d2bd378ac91adcb83034b3eb Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Fri, 16 Feb 2024 11:05:41 +0100 Subject: Add more systemd services --- .config/systemd/user/fsvc-evolution.service | 19 +++++++++++++++++++ .config/systemd/user/fsvc-keepassxc.service | 17 +++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .config/systemd/user/fsvc-evolution.service create mode 100644 .config/systemd/user/fsvc-keepassxc.service (limited to '.config') diff --git a/.config/systemd/user/fsvc-evolution.service b/.config/systemd/user/fsvc-evolution.service new file mode 100644 index 0000000..a1dade0 --- /dev/null +++ b/.config/systemd/user/fsvc-evolution.service @@ -0,0 +1,19 @@ +[Unit] +Description=Manage an x11 application +PartOf=graphical-session.target + +After=fsvc-keepassxc.service + +[Service] +Type=exec +Restart=on-failure + +ExecSearchPath=%h/.local/bin +ExecSearchPath=/usr/local/bin +ExecSearchPath=/usr/bin +WorkingDirectory=%h + +ExecStart=evolution + +[Install] +WantedBy=wman.target diff --git a/.config/systemd/user/fsvc-keepassxc.service b/.config/systemd/user/fsvc-keepassxc.service new file mode 100644 index 0000000..a634ece --- /dev/null +++ b/.config/systemd/user/fsvc-keepassxc.service @@ -0,0 +1,17 @@ +[Unit] +Description=Manage an x11 application +PartOf=graphical-session.target + +[Service] +Type=exec +Restart=on-failure + +ExecSearchPath=%h/.local/bin +ExecSearchPath=/usr/local/bin +ExecSearchPath=/usr/bin +WorkingDirectory=%h + +ExecStart=keepassxc + +[Install] +WantedBy=wman.target -- cgit v1.1