From f6ebc31fe99ecc90a8055c3c2986d00c2ba93601 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 15 Oct 2018 08:56:31 -0400 Subject: [PATCH] Add urxvtd service Instead of starting urxvtd with urxvtcd, start it automatically with systemd. This lets us run urxvtc directly in other desktop environments without having to rely on urxvtcd. --- .config/systemd/user/urxvtd.service | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .config/systemd/user/urxvtd.service diff --git a/.config/systemd/user/urxvtd.service b/.config/systemd/user/urxvtd.service new file mode 100644 index 0000000..fe9b855 --- /dev/null +++ b/.config/systemd/user/urxvtd.service @@ -0,0 +1,9 @@ +[Unit] +Description=urxvtd + +[Service] +Type=forking +ExecStart=/usr/bin/urxvtd -q -o -f + +[Install] +WantedBy=default.target