diff options
author | Thanos Apollo <[email protected]> | 2022-08-02 17:10:12 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-08-02 17:10:12 +0300 |
commit | e36ed432968130bd5bf0f54e54377b98fa48c4a5 (patch) | |
tree | 04608a8c5641871d0c7ae3395227c92a1f404509 | |
parent | 9efe6a5694a2f37c3d15333706649858d00a611e (diff) |
Update doom path, add auto starx when logged in
-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' |