neodotfiles/.bash_profile

18 lines
650 B
Bash
Raw Normal View History

2022-04-18 21:29:56 +00:00
### STARTING XSESSION
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]
then
startx
fi
2022-06-05 17:14:01 +00:00
export GST_VAAPI_ALL_DRIVERS=1
export EDITOR="nvim" # $EDITOR use neovim
#export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal
#export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode
export READER="zathura"
export TERMINAL="alacritty"
export BROWSER="qutebrowser"
export WM="dwm"
export XDG_DATA_HOME=${XDG_DATA_HOME:="$HOME/.local/share"}
export XDG_CACHE_HOME=${XDG_CACHE_HOME:="$HOME/.cache"}
export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:="$HOME/.config"}
2022-04-18 21:29:56 +00:00
source $HOME/.bashrc