26 lines
381 B
Text
26 lines
381 B
Text
|
#!/bin/sh -xe
|
||
|
|
||
|
# cd
|
||
|
cd
|
||
|
|
||
|
# Environment
|
||
|
# XDG
|
||
|
export \
|
||
|
XDG_CURRENT_DESKTOP=sway \
|
||
|
XDG_SESSION_DESKTOP=sway
|
||
|
|
||
|
# Backends
|
||
|
export \
|
||
|
QT_QPA_PLATFORM='wayland;xcb' \
|
||
|
QT_QPA_PLATFORMTHEME=qt6ct \
|
||
|
CLUTTER_BACKEND=wayland \
|
||
|
SDL_VIDEODRIVER=wayland \
|
||
|
_JAVA_AWT_WM_NONREPARENTING=1 \
|
||
|
MOZ_ENABLE_WAYLAND=1
|
||
|
|
||
|
# Execution
|
||
|
exec dbus-launch --exit-with-session \
|
||
|
ssh-agent \
|
||
|
/usr/bin/sway
|
||
|
|