34 lines
769 B
Bash
34 lines
769 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
|
|
[[ -f ~/.extend.bash_profile ]] && . ~/.extend.bash_profile
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
export VISUAL=vim
|
|
export EDITOR=vim
|
|
export PAGER=less
|
|
export PATH=~/.gem/ruby/2.5.0/bin:~/.local/bin:$PATH
|
|
|
|
export LANG=fr_FR.UTF-8
|
|
export LANGUAGE=fr_FR:fr:en
|
|
export HASTE_SERVER="https://haste.breizh.me"
|
|
|
|
eval $(ssh-agent -s)
|
|
|
|
#~/.local/bin/vconsole
|
|
|
|
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
|
|
# play -q /usr/share/sounds/freedesktop/stereo/service-login.oga &
|
|
export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
export BROWSER="firefox"
|
|
export TERMINAL=urxvtc
|
|
export DMENU_OPTIONS="-nb #2d2d2d -nf #747369 -sb #6699cc -sf #2d2d2d"
|
|
startx
|
|
logout
|
|
else
|
|
export BROWSER=elinks
|
|
exec fish
|
|
fi
|