diff options
-rw-r--r-- | .bash_profile | 8 | ||||
-rw-r--r-- | .bashrc | 7 |
2 files changed, 9 insertions, 6 deletions
diff --git a/.bash_profile b/.bash_profile index 7fe4500..2fa4b9f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,11 +4,13 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc +if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then + exec startx +fi export EDITOR="emacsclient" -export TERMINAL="alacritty" -export BROWSER="qutebrowser" -export READER="zathura" +export TERMINAL="alacriy" +export BROWSER="usr/bin/qutebrowser" @@ -1,4 +1,3 @@ - # bbbbbbbb # b::::::b hhhhhhh # b::::::b h:::::h @@ -26,13 +25,12 @@ # | | __/ | # |_| |___/ - +export PATH="$HOME/.emacs.d/bin:$PATH" PS1='\n\[\e[0m\][\[\e[0;1;38;5;208m\]\w\[\e[0;2;38;5;248m\]|\[\e[0;2;38;5;220m\]$(git branch 2>/dev/null | grep '"'"'^*'"'"' | colrm 1 2) \[\e[0;2;38;5;242m\]\t\[\e[0m\]]\n\[\e[0m\]-\[\e[0m\]> \[\e[0m\]' #Neovim > Vim alias vim='nvim' - #git alias config='/usr/bin/git --git-dir=$HOME/Developer/config/ --work-tree=$HOME' alias ga='git add' @@ -55,3 +53,6 @@ alias sb='sudo systemctl start bluetooth' alias mykeys='setxkbmap -option caps:escape' alias logout='pkill -U' alias blt='bluetoothctl' +alias neofetch='neofetch | lolcat' +alias b='bluetoothctl' +alias f='xset s off -dpms' |