minor changes
[dotfiles.git] / shell / .bashrc
index 0b597e4..9ea8e26 100644 (file)
@@ -22,31 +22,44 @@ export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}"/notmuch/config
 export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}"/pass
 export TMUX_TMPDIR="$XDG_RUNTIME_DIR"
 
-export CLEAN_HOME=/opt/clean-x64
+if [ "$SCHROOT_CHROOT_NAME" = "x86" ]
+then
+       export CLEAN_HOME=/opt/clean-x86
+else
+       export CLEAN_HOME=/opt/clean-x64
+fi
 
 export PATH=$CLEAN_HOME/bin:~/.local/bin:$PATH
-export PATH=/opt/texlive/2020/bin/x86_64-linux:/opt/zotero:/opt/arduino:/opt/beets/bin:/opt/firefox:$PATH
+export PATH=/opt/texlive/2021/bin/x86_64-linux:/opt/zotero:/opt/arduino:/opt/beets/bin:/opt/firefox:$PATH
 
-export MANPATH=~/.local/share/man:/opt/texlive/2020/texmf-dist/doc/man:/opt/arduino/java/man:$MANPATH
+export MANPATH=~/.local/share/man:/opt/texlive/2021/texmf-dist/doc/man:/opt/arduino/java/man:$MANPATH
 
-export GTK_IM_MODULE=xim
-export QT_IM_MODULE=xim
-export QT_QPA_PLATFORMTHEME=qt5ct
+#export GTK_IM_MODULE=xim
+#export QT_IM_MODULE=xim
+#export QT_QPA_PLATFORMTHEME=qt5ct
 
 export NNTPSERVER=news.tweak.nl
 alias slrn="slrn -i \"${XDG_CONFIG_HOME:-$HOME/.config}/slrn/slrnrc\""
 
 alias ls='ls --color=auto'
 alias grep='grep --color=auto'
-alias vi=vim
+alias vi='vim --servername VIM'
 alias shutdown="echo \"Are you sure? I\'m Ygdrassil\" && read && shutdown"
 
-. /etc/bash_completion
+if [ -f /etc/bash_completion ]
+then
+       . /etc/bash_completion
+fi
 
 set_prompt(){
        last_c=$?
        PS1='\H'
        [[ $last_c -ge 1 ]] && PS1="($last_c) $PS1"
-       PS1="$PS1\w\$ "
+       if [[ -n "$SCHROOT_CHROOT_NAME" ]]
+       then
+               PS1="($SCHROOT_CHROOT_NAME)$PS1\w\$ "
+       else
+               PS1="$PS1\w\$ "
+       fi
 }
 PROMPT_COMMAND='set_prompt'