config/shell: fix mistaken environment

This commit is contained in:
xeruf 2022-09-27 22:04:13 +02:00
parent 5e40045d03
commit 7f332e264a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
test -z "$DISPLAY" || return 0 test -z "$DISPLAY" && test "$XDG_VTNR" -eq 1 || return 0
export PATH="$PATH:$HOME/.local/bin/server" export PATH="$PATH:$HOME/.local/bin/server"
export PROJECTS="$HOME/projects" export PROJECTS="$HOME/projects"

View File

@ -94,7 +94,7 @@ export DIRS_IGNORE="-x .sync -x .stfolder -x *build -x .git -x .idea -x env -x o
test -f "/usr/lib/libstderred.so" && export LD_PRELOAD="/usr/lib/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}" test -f "/usr/lib/libstderred.so" && export LD_PRELOAD="/usr/lib/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}"
# software config # software config
export OSFONTDIR="$XDG_DATA_HOME"/fonts:/usr/share/fonts export OSFONTDIR="$XDG_DATA_HOME"/fonts:/usr/share/fonts
export TEXMF=/usr/share/texmf-dist export TEXMF=/usr/share/texmf-dist/texmf-context
export KSCRIPT_IDEA_COMMAND=intellij-idea-ultimate-edition export KSCRIPT_IDEA_COMMAND=intellij-idea-ultimate-edition
## enable pass extensions ## enable pass extensions
export PASSWORD_STORE_ENABLE_EXTENSIONS="true" export PASSWORD_STORE_ENABLE_EXTENSIONS="true"