From bc87ac9918fd66654a0953094fd33123a8fe7954 Mon Sep 17 00:00:00 2001 From: Ron Waldon-Howe Date: Tue, 9 Jan 2024 15:50:00 +1100 Subject: [PATCH] fix: check before using `systemctl` --- data/start-cosmic | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/data/start-cosmic b/data/start-cosmic index d8a4437..4122737 100755 --- a/data/start-cosmic +++ b/data/start-cosmic @@ -2,17 +2,19 @@ # From: https://people.debian.org/~mpitt/systemd.conf-2016-graphical-session.pdf -# robustness: if the previous graphical session left some failed units, -# reset them so that they don't break this startup -for unit in $(systemctl --user --no-legend --state=failed --plain list-units | cut -f1 -d' '); do - partof="$(systemctl --user show -p PartOf --value "$unit")" - for target in cosmic-session.target graphical-session.target; do - if [ "$partof" = "$target" ]; then - systemctl --user reset-failed "$unit" - break - fi +if command -v systemctl >/dev/null; then + # robustness: if the previous graphical session left some failed units, + # reset them so that they don't break this startup + for unit in $(systemctl --user --no-legend --state=failed --plain list-units | cut -f1 -d' '); do + partof="$(systemctl --user show -p PartOf --value "$unit")" + for target in cosmic-session.target graphical-session.target; do + if [ "$partof" = "$target" ]; then + systemctl --user reset-failed "$unit" + break + fi + done done -done +fi # /etc/profile contains a lot of important environment variables source /etc/profile @@ -31,9 +33,10 @@ export GDK_BACKEND=wayland,x11 export MOZ_ENABLE_WAYLAND=1 export QT_QPA_PLATFORM="wayland;xcb" -# import environment variables from the login manager -systemctl --user import-environment XDG_SESSION_TYPE XDG_CURRENT_DESKTOP - +if command -v systemctl >/dev/null; then + # set environment variables for new units started by user service manager + systemctl --user import-environment XDG_SESSION_TYPE XDG_CURRENT_DESKTOP +fi # Run cosmic-session if [[ -z "${DBUS_SESSION_BUS_ADDRESS}" ]]; then exec /usr/bin/dbus-run-session -- /usr/bin/cosmic-session