#
# ~/.bash_profile
#

# regular .bashrc inclusion from Arch defaults
[[ -f ~/.bashrc ]] && . ~/.bashrc

# Turn capslock into a ctrl key
export XKB_DEFAULT_OPTIONS="ctrl:nocaps"

# if we're logging into /dev/tty1 then run foot
if [[ $(tty) == /dev/tty1 ]]; then
	exec cage foot
fi
