2016-01-20 11:06:54 -06:00
|
|
|
#
|
|
|
|
# ~/.bash_profile
|
|
|
|
#
|
|
|
|
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
|
2017-02-16 02:23:49 -06:00
|
|
|
# Do these things if in tty0-tty9
|
2016-01-21 16:12:31 -06:00
|
|
|
case $(tty) in /dev/tty[0-9]*)
|
2017-02-16 02:23:49 -06:00
|
|
|
setleds -D +num # (numlock for X is set in ~/.xinitrc)
|
2017-02-08 16:59:33 -06:00
|
|
|
;;
|
2016-01-21 16:12:31 -06:00
|
|
|
esac
|
2020-05-27 12:08:11 -05:00
|
|
|
|
|
|
|
# Add home bin folder to $PATH
|
|
|
|
PATH=$PATH:~/bin
|