neodotfiles/user/.bash_profile

25 lines
811 B
Bash
Raw Normal View History

2022-06-07 02:15:35 +00:00
#!/bin/sh
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
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]
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 ''" # $EDITOR use Emacs in terminal
export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode
2022-09-16 15:11:22 +00:00
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-06-07 02:15:35 +00:00
### BASHRC
source "$HOME"/.bashrc # Load the bashrc