From 920c70568dc53df8f14c72aa37fb36e0f110fba7 Mon Sep 17 00:00:00 2001 From: ArenM Date: Wed, 5 Apr 2023 17:42:36 -0400 Subject: [PATCH sxmo-utils 4/6] Fix quoting of strings in service files Systemd doesn't like these variables without curly braces around them. --- configs/services/bonsaid.service | 4 ++-- configs/services/sxmo_conky.service | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/services/bonsaid.service b/configs/services/bonsaid.service index 52c2823..9d56207 100644 --- a/configs/services/bonsaid.service +++ b/configs/services/bonsaid.service @@ -5,5 +5,5 @@ PartOf=graphical-session.target [Service] Type=simple Restart=always -ExecStartPre=rm -f $XDG_RUNTIME_DIR/bonsai -ExecStart=bonsaid -t $XDG_CONFIG_HOME/sxmo/bonsai_tree.json +ExecStartPre=rm -f ${XDG_RUNTIME_DIR}/bonsai +ExecStart=bonsaid -t ${XDG_CONFIG_HOME}/sxmo/bonsai_tree.json diff --git a/configs/services/sxmo_conky.service b/configs/services/sxmo_conky.service index a4fca14..774591e 100644 --- a/configs/services/sxmo_conky.service +++ b/configs/services/sxmo_conky.service @@ -5,4 +5,4 @@ PartOf=graphical-session.target [Service] Type=simple Restart=always -ExecStart=conky -c "$XDG_CONFIG_HOME"/sxmo/conky.conf +ExecStart=conky -c "${XDG_CONFIG_HOME}/sxmo/conky.conf" -- 2.43.0