From 3602351facd563ec7b69080366e53c61942a4fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 19 Aug 2024 18:06:11 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(systemd):=20surfing-keys=20con?= =?UTF-8?q?figuration=20service?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{surfingkeys-conf.service => surfingKeys.service} | 8 -------- 1 file changed, 8 deletions(-) rename .config/systemd/user/{surfingkeys-conf.service => surfingKeys.service} (51%) diff --git a/.config/systemd/user/surfingkeys-conf.service b/.config/systemd/user/surfingKeys.service similarity index 51% rename from .config/systemd/user/surfingkeys-conf.service rename to .config/systemd/user/surfingKeys.service index d1f1e28c..0fbd7512 100644 --- a/.config/systemd/user/surfingkeys-conf.service +++ b/.config/systemd/user/surfingKeys.service @@ -1,8 +1,3 @@ -# 1. Install this service to $XDG_CONFIG_HOME/systemd/user/ -# 2. Update the path in the ExecStart directive -# 3. Run systemctl --user daemon-reload -# 4. Run systemctl --user enable --now surfingkeys-conf.service - [Unit] Description=Surfingkeys configuration server After=network.target graphical-session.target @@ -10,7 +5,6 @@ PartOf=graphical-session.target Requires=graphical-session.target [Service] -# Update the path in the following line to point to your surfingkeys-conf repository ExecStart=bash -c 'cd /home/matt/repos/surfingkeys-conf; npm run gulp serve-simple' Type=simple Restart=always @@ -18,5 +12,3 @@ RestartSec=10 [Install] WantedBy=graphical-session.target - -# vim: set ft=systemd: