13 lines
385 B
Bash
13 lines
385 B
Bash
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
fi
|
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
startx
|
|
logout
|
|
fi
|
|
|
|
source "${ZDOTDIR}/completions.zsh"
|
|
source "${ZDOTDIR}/preferences.zsh"
|
|
source "${ZDOTDIR}/bindings.zsh"
|
|
source "${ZDOTDIR}/custom.zsh"
|