mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 12:20:07 +00:00
Merge commit 'a7f417245dc21b666f5647c4a0d55a1f51fe6cac'
This commit is contained in:
commit
9d6444a557
1 changed files with 14 additions and 29 deletions
|
@ -7,30 +7,10 @@ _gitstatus_install_daemon_found() {
|
||||||
shift
|
shift
|
||||||
|
|
||||||
case "$daemon" in
|
case "$daemon" in
|
||||||
*-darwin-x86_64);;
|
*-darwin-x86_64)
|
||||||
*)
|
if [ "$uname_m" = arm64 ] &&
|
||||||
[ $# = 0 ] || "$@" "$daemon" "$version" "$installed"
|
[ ! -e /Library/Apple/System/Library/LaunchDaemons/com.apple.oahd.plist ] &&
|
||||||
return
|
[ -x /usr/sbin/softwareupdate ]; then
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
local cpu
|
|
||||||
if [ "$uname_s" != darwin ] || [ "$uname_m" != arm64 ] ||
|
|
||||||
[ -e /Library/Apple/System/Library/LaunchDaemons/com.apple.oahd.plist ] ||
|
|
||||||
[ ! -x /usr/sbin/softwareupdate ] ||
|
|
||||||
! cpu="$(/usr/sbin/sysctl -n machdep.cpu.brand_string)"; then
|
|
||||||
[ $# = 0 ] || "$@" "$daemon" "$version" "$installed"
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$cpu" in
|
|
||||||
*Intel*);;
|
|
||||||
*)
|
|
||||||
[ $# = 0 ] || "$@" "$daemon" "$version" "$installed"
|
|
||||||
return
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
>&"$e" printf 'Please run the following command to install Rosetta:\n'
|
>&"$e" printf 'Please run the following command to install Rosetta:\n'
|
||||||
>&"$e" printf '\n'
|
>&"$e" printf '\n'
|
||||||
>&"$e" printf ' \033[32m/usr/sbin/softwareupdate\033[0m --install-rosetta\n'
|
>&"$e" printf ' \033[32m/usr/sbin/softwareupdate\033[0m --install-rosetta\n'
|
||||||
|
@ -39,6 +19,11 @@ _gitstatus_install_daemon_found() {
|
||||||
>&"$e" printf '\n'
|
>&"$e" printf '\n'
|
||||||
>&"$e" printf 'Once Rosetta is installed, restart your shell.\n'
|
>&"$e" printf 'Once Rosetta is installed, restart your shell.\n'
|
||||||
return 1
|
return 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
[ $# = 0 ] || "$@" "$daemon" "$version" "$installed"
|
||||||
}
|
}
|
||||||
|
|
||||||
_gitstatus_install_main() {
|
_gitstatus_install_main() {
|
||||||
|
|
Loading…
Reference in a new issue