.profile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#!/bin/sh # .profile for Wayland/sway # make default editor Neovim export EDITOR=nvim # Most pure GTK3 apps use wayland by default, but some, # like Firefox, need the backend to be explicitely selected. export MOZ_ENABLE_WAYLAND=1 export MOZ_DBUS_REMOTE=1 export GTK_CSD=0 # qt wayland export QT_QPA_PLATFORM="wayland" export QT_QPA_PLATFORMTHEME=qt5ct export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" #Java XWayland blank screens fix export _JAVA_AWT_WM_NONREPARENTING=1 # set default shell and terminal export SHELL=/bin/bash #export TERMINAL_COMMAND=/usr/share/sway/scripts/foot.sh # add default location for zeit.db export ZEIT_DB=~/.config/zeit.db |