neodotfiles/user/.bash_profile

32 lines
848 B
Bash
Raw Normal View History

2023-02-20 00:41:01 +00:00
#!/bin/bash
2022-07-05 21:06:56 +00:00
## ____ __
## / __ \_________ _/ /_____
## / / / / ___/ __ `/ //_/ _ \
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
## /_____/_/ \__,_/_/|_|\___/ My custom bash_profile config
##
2022-06-07 02:15:35 +00:00
### STARTING XSESSION
2023-02-20 00:41:01 +00:00
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]
2022-06-07 02:15:35 +00:00
then
2022-07-19 16:28:35 +00:00
startx -- vt1 -keeptty &>/dev/null
logout
2022-06-07 02:15:35 +00:00
fi
# environment variables
export EDITOR="emacsclient -t -a ''"
export VISUAL="emacsclient -c -a 'emacs'"
2023-06-20 14:29:23 +00:00
# clean home
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export W3M_DIR="$XDG_DATA_HOME/w3m"
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
export WGETRC="$HOME/.config/wget/wgetrc"
export INPUTRC="$HOME/.config/inputrc"
export GNUPGHOME="$HOME/.local/share/gnupg"
2022-06-07 02:15:35 +00:00
# bashrc
source "$HOME"/.bashrc