17 lines
389 B
Bash
Executable File
17 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
dbus-update-activation-environment --systemd \
|
|
WAYLAND_DISPLAY \
|
|
DISPLAY \
|
|
SWAYSOCK \
|
|
XDG_SESSION_DESKTOP=sway \
|
|
XDG_SESSION_CLASS=user \
|
|
XDG_SEAT=seat0 \
|
|
XCURSOR_THEME=Adwaita \
|
|
XCURSOR_SIZE=35 \
|
|
GDK_BACKEND=wayland \
|
|
SDL_VIDEODRIVER=wayland \
|
|
"QT_QPA_PLATFORM=wayland-egl;xcb" \
|
|
MOZ_ENABLE_WAYLAND=1 \
|
|
WLR_DRM_NO_MODIFIERS=1 \
|
|
XWAYLAND_NO_SCALE=1
|