First commit
This commit is contained in:
commit
ab19d3a1e5
7 changed files with 115 additions and 0 deletions
22
.zprofile
Normal file
22
.zprofile
Normal file
|
@ -0,0 +1,22 @@
|
|||
for file in ~/.config/environment.d/*.conf
|
||||
do
|
||||
while read -r line
|
||||
do
|
||||
varname=${line%=*}
|
||||
value=${${(e)line#*=}//\"}
|
||||
export $varname="${value}"
|
||||
done < $file
|
||||
done
|
||||
|
||||
#notmutch
|
||||
export NOTMUCH_CONFIG="${HOME}/.config/notmuch/config"
|
||||
export PATH=~/.local/bin:$PATH
|
||||
unset DEBUGINFOD_URLS
|
||||
if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
|
||||
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
|
Reference in a new issue