Multiple desktop environments * (Default) Openbox/tint2/conky * (Alt) i3-gaps/i3status * Added i3 cmdline switch to use i3-gaps instead of openbox * Added IP status to conky * Added hfsprogs (again) * New themes for dunst, ls, rofi, urxvt * ls colors make NTFS mod 777 folders readable * Disabled screen blanking (again) * Didn't disable DPMS before * Fix SSH key permissions
14 lines
199 B
Bash
14 lines
199 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
## Load aliases
|
|
. $HOME/.aliases
|
|
|
|
# Update LS_COLORS
|
|
eval $(dircolors ~/.dircolors)
|