TheRepoClub-DotFiles/xprofile/.zprofile

22 lines
415 B
Plaintext
Raw Normal View History

2022-08-14 07:14:49 -04:00
xset b off
setxkbmap -layout gb
setxkbmap -option caps:super
2022-01-20 11:18:33 -05:00
xprofile=$HOME/.xprofile
# enable xprofiles
if [ -f "$xprofile" ]; then
source "$xprofile"
fi
2022-08-14 07:14:49 -04:00
# enable XDG_CONFIG_HOME
if [[ -z "$XDG_CONFIG_HOME" ]]
then
export XDG_CONFIG_HOME="$HOME/.config/"
2022-01-20 11:18:33 -05:00
fi
2022-08-14 07:14:49 -04:00
# Autostart X using startx after tty login.
#if [[ ! ${DISPLAY} && ${XDG_VTNR} == 1 ]] && [[ $(tty) = /dev/tty1 ]]; then
# exec tbsm
#fi