2016-01-20 11:06:54 -06:00
|
|
|
#
|
|
|
|
# ~/.bash_profile
|
|
|
|
#
|
|
|
|
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
|
2016-01-25 09:38:04 -06:00
|
|
|
|
|
|
|
# Set numlock if running in tty.
|
|
|
|
# (numlock for X is set in ~/.xinitrc)
|
2016-01-21 16:12:31 -06:00
|
|
|
case $(tty) in /dev/tty[0-9]*)
|
2016-04-11 12:27:46 -05:00
|
|
|
setleds -D +num
|
|
|
|
export USING_TTY=1 ;;
|
2016-01-21 16:12:31 -06:00
|
|
|
esac
|