diff options
Diffstat (limited to 'bash/99-wm.profile')
-rw-r--r-- | bash/99-wm.profile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/99-wm.profile b/bash/99-wm.profile index 72ecc02..bb5cd2a 100644 --- a/bash/99-wm.profile +++ b/bash/99-wm.profile @@ -1,5 +1,7 @@ # vi: ft=sh if [ "$WM_AUTO_START" = "yes" ] && [ -z $DISPLAY ] && [ "$(tty)" = "$WM_TTY" ]; then - exec "$WM_WM" + systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP + dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway + exec "$WM_WM" fi |