7 lines
330 B
Bash
7 lines
330 B
Bash
|
# I've been trying Starship to provide a richer command prompt for zsh.
|
||
|
eval "$(starship init zsh)"
|
||
|
# The XDG_RUNTIME_DIR is required for Wayland to work.
|
||
|
# Don't forget to actually create the directory for each relevant user and
|
||
|
# give them ownership of their respective directories.
|
||
|
export XDG_RUNTIME_DIR=/var/run/user/`id -u`
|