[zsh] Move Darwin $OSBUILD, $OSVERSION, and $HWMODEL
Move them from init_env_Darwin to their own functions in the new zsh/func/darwin directory.
This commit is contained in:
parent
ace2f38ed2
commit
6276b5f40e
5 changed files with 36 additions and 7 deletions
11
zsh/func/darwin/darwin-os-build
Normal file
11
zsh/func/darwin/darwin-os-build
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env zsh
|
||||
# Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
darwin-os-build() {
|
||||
if [[ -z "$darwin_os_build" ]]; then
|
||||
darwin_os_build=`sysctl -n kern.osversion`
|
||||
fi
|
||||
echo "$darwin_os_build"
|
||||
}
|
||||
|
||||
darwin-os-build "$@"
|
Loading…
Add table
Add a link
Reference in a new issue