mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 00:59:22 +01:00
26 lines
597 B
Bash
Executable File
26 lines
597 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Starting sway with proper environment too. My {bash,zsh}rc handles
|
|
# exec
|
|
|
|
set -x
|
|
|
|
# Using fcitx
|
|
export XMODIFIERS=@im=fcitx
|
|
export GTK_IM_MODULE="fcitx"
|
|
export QT_IM_MODULE="fcitx"
|
|
|
|
# qt5ct allows theme choosing
|
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
|
|
# Ensuring Wayland gets used as per Arch Wiki
|
|
# 2021-02-28 https://wiki.archlinux.org/index.php/Wayland#GUI_libraries
|
|
export QT_QPA_PLATFORM=wayland
|
|
export CLUTTER_BACKEND=wayland
|
|
export SDL_VIDEODRIVER=wayland
|
|
# Mozilla Products
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
|
|
dbus-launch --exit-with-session sway --unsupported-gpu $@
|
|
set +x
|