26 lines
550 B
Bash
Executable File
26 lines
550 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export XKB_DEFAULT_LAYOUT=fi
|
|
export XKB_DEFAULT_VARIANT=fi
|
|
export XKB_DEFAULT_MODEL=pc105
|
|
|
|
#export XDG_RUNTIME_DIR=/tmp/wayland
|
|
#export WAYLAND_DISPLAY=wayland-0
|
|
|
|
# configure wayland backend
|
|
export GDK_BACKEND=wayland
|
|
export QT_QPA_PLATFORM=wayland # wayland-egl?
|
|
export CLUTTER_BACKEND=wayland
|
|
export SDL_VIDEODRIVER=wayland
|
|
export EWOL_BACKEND=wayland
|
|
# firefox
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export MOZ_DBUS_REMOTE=1
|
|
|
|
# auth
|
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
export SSH_AUTH_SOCK
|
|
|
|
# start!
|
|
sway
|