mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 09:20:09 +00:00
parent
6f1036293c
commit
9b883aa417
1 changed files with 5 additions and 1 deletions
|
@ -42,13 +42,17 @@ set -e
|
||||||
# $USER is defined by login(1) which is not always executed (e.g. containers)
|
# $USER is defined by login(1) which is not always executed (e.g. containers)
|
||||||
# POSIX: https://pubs.opengroup.org/onlinepubs/009695299/utilities/id.html
|
# POSIX: https://pubs.opengroup.org/onlinepubs/009695299/utilities/id.html
|
||||||
USER=${USER:-$(id -u -n)}
|
USER=${USER:-$(id -u -n)}
|
||||||
|
# $HOME is defined at the time of login, but it could be unset. If it is unset,
|
||||||
|
# a tilde by itself (~) will not be expanded to the current user's home directory.
|
||||||
|
# POSIX: https://pubs.opengroup.org/onlinepubs/009696899/basedefs/xbd_chap08.html#tag_08_03
|
||||||
|
HOME="${HOME:-$(getent passwd $USER | cut -d: -f6)}"
|
||||||
|
|
||||||
|
|
||||||
# Track if $ZSH was provided
|
# Track if $ZSH was provided
|
||||||
custom_zsh=${ZSH:+yes}
|
custom_zsh=${ZSH:+yes}
|
||||||
|
|
||||||
# Default settings
|
# Default settings
|
||||||
ZSH=${ZSH:-~/.oh-my-zsh}
|
ZSH="${ZSH:-$HOME/.oh-my-zsh}"
|
||||||
REPO=${REPO:-ohmyzsh/ohmyzsh}
|
REPO=${REPO:-ohmyzsh/ohmyzsh}
|
||||||
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
|
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
|
||||||
BRANCH=${BRANCH:-master}
|
BRANCH=${BRANCH:-master}
|
||||||
|
|
Loading…
Reference in a new issue