From 2f8f009291a5970b3a9fb374c02d75af3f65c6fd Mon Sep 17 00:00:00 2001 From: dalahast Date: Mon, 7 Sep 2020 15:26:57 +0200 Subject: [PATCH] update profile --- .zprofile | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.zprofile b/.zprofile index 3c6b71a..bf2c5a6 100644 --- a/.zprofile +++ b/.zprofile @@ -1,15 +1,27 @@ # Adds `~/.local/bin` to $PATH export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" +# Session +export XDG_SESSION_TYPE=wayland +export XDG_SESSION_DESKTOP=sway +export XDG_CURRENT_DESKTOP=sway + # Default programs: export EDITOR="nvim" -export TERMINAL="gnome-terminal" -export BROWSER="brave" -export READER="xreader" +export TERMINAL="kitty" +export BROWSER="firefox" +export READER="zathura" +# Env vars +export CLUTTER_BACKEND=wayland +export QT_QPA_PLATFORM=wayland-egl +export ECORE_EVAS_ENGINE=wayland-egl +export ELM_ENGINE=wayland_egl +export SDL_VIDEODRIVER=wayland +export NO_AT_BRIDGE=1 export QT_QPA_PLATFORMTHEME="qt5ct" export _JAVA_AWT_WM_NONREPARENTING=1 - +export MOZ_ENABLE_WAYLAND=1 # ~/ Clean-up: export XDG_CONFIG_HOME="$HOME/.config"