From 0bf16821d5379c8d719ba2dc55aeb92ed31019a8 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Mon, 10 Aug 2020 22:35:40 +0100 Subject: [PATCH] systemd: use bin/sh over usr/bin/bash Signed-off-by: Joe Groocock --- systemd/user/profile.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/user/profile.service b/systemd/user/profile.service index e882948..22b8e82 100644 --- a/systemd/user/profile.service +++ b/systemd/user/profile.service @@ -4,7 +4,7 @@ Before=graphical-session-pre.target [Service] Type=oneshot -ExecStart=/usr/bin/bash -c '. $HOME/.config/dotfiles/profile && systemctl --user import-environment' +ExecStart=/bin/sh -c '. $HOME/.config/dotfiles/profile && systemctl --user import-environment' [Install] WantedBy=basic.target