.zprofile 462 B

12345678910111213141516
  1. # ▓▓▓▓▓▓▓▓▓▓
  2. # ░▓ Author ▓ Abdullah <https://abdullah.today/>
  3. # ░▓▓▓▓▓▓▓▓▓▓
  4. # ░░░░░░░░░░
  5. # Start X at login
  6. if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
  7. exec startx -- vt1 -keeptty &>/dev/null
  8. logout
  9. elif [[ $(tty) = /dev/tty2 ]]; then
  10. tmux has-session -t $USER || tmux new-session -t $USER && tmux attach-session -t $USER && sudo loadkeys $HOME/.loadkeysrc
  11. fi