add zsh config, switch from fish

This commit is contained in:
2020-01-20 09:50:55 +01:00
parent 0cbfd510eb
commit 9860dc42b1
5 changed files with 52 additions and 3 deletions

6
.config/zsh/.zprofile Normal file
View File

@ -0,0 +1,6 @@
# start X at login on first console or otherwise source ~/.profile
if [[ -z "$DISPLAY" && "$XDG_VTNR" -eq 1 ]] && which /bin/sx > /dev/null; then
exec sx ~/.xsession
else
source ~/.profile
fi