mirror of https://git.davidovski.xyz/dot.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
502 B
17 lines
502 B
|
|
[ -n "$BASH_VERSION" ] && [ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc" |
|
|
|
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH" |
|
[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH" |
|
[ -d "$HOME/.scripts" ] && PATH="$HOME/.scripts:$PATH" |
|
|
|
alias editor=vim |
|
|
|
export TERMINAL="urxvt" |
|
export BROWSER="/usr/bin/chromium-browser" |
|
export FILE_MANAGER="/usr/bin/thunar" |
|
export EMAIL_CLIENT="/usr/bin/thunderbird" |
|
export EDITOR="/usr/bin/vim" |
|
|
|
[ "$(fgconsole 2>/dev/null)" = "1" ] && exec startx -- vt1 &> /dev/null |
|
|
|
|