mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
17 lines
493 B
Bash
17 lines
493 B
Bash
|
|
[ -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/firefox"
|
|
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
|
|
|