From 61505cf00559a0a32a2732a1a5ea0446a73fb56c Mon Sep 17 00:00:00 2001 From: Yorick Barbanneauwq Date: Sat, 11 Mar 2023 02:08:24 +0100 Subject: [PATCH] Add some usefull env variables --- files/zsh/.zprofile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/files/zsh/.zprofile b/files/zsh/.zprofile index 3a59b32..94b829e 100755 --- a/files/zsh/.zprofile +++ b/files/zsh/.zprofile @@ -13,5 +13,10 @@ export NOTMUCH_CONFIG="${HOME}/.config/notmuch/config" export PATH=~/.local/bin:$PATH unset DEBUGINFOD_URLS if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then - exec ~/.local/bin/sway.sh + export QT_QPA_PLATFORM="wayland-egl" + export QT_WAYLAND_DISABLE_WINDOWDECORATION=1 + export MOZ_ENABLE_WAYLAND=1 + export QT_QPA_PLATFORMTHEME="gtk3" + export NO_AT_BRIDGE=1 + exec ~/.local/bin/sway.sh fi