2022-10-17 19:15:09 +00:00
#!/usr/bin/env bash
#
# Launch sway
set -euo pipefail
IFS = $'\n\t'
DIR = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd ) "
2022-12-10 20:29:19 +00:00
export XDG_CURRENT_DESKTOP = sway
2023-03-22 20:51:38 +00:00
export WLR_RENDERER = vulkan
2022-12-10 20:29:19 +00:00
2022-11-25 22:23:14 +00:00
# Enable wayland support for firefox
export MOZ_ENABLE_WAYLAND = 1
2022-11-29 08:03:18 +00:00
# Wayland seems enabled by default for qt5 with qt5-wayland installed but if a proprietary program bundles their own qt then I may have to set QT_QPA_PLATFORM="wayland;xcb"
2022-11-25 22:23:14 +00:00
# Wayland does not seem enabled for gtk apps and setting GDK_BACKEND=wayland did not change that.
2023-03-23 17:31:56 +00:00
exec ck-launch-session dbus-launch sway -d & > $HOME /.config/swaylog