695d46284c
Fix `uname` calls with `-o` parameter, as this is not BSD compatible. As per @Eriner, use `uname -a` instead as a "catch-all" parameter. Fixes #75, Closes #79
9 lines
235 B
Text
9 lines
235 B
Text
#
|
|
# zim_info - prints zim and system info
|
|
#
|
|
|
|
cd ${ZDOTDIR:-${HOME}}/.zim
|
|
|
|
print "Zim commit ref: $(command git rev-parse --short HEAD)"
|
|
print "Zsh version: $(command zsh --version)"
|
|
print "System info: $(command uname -a)"
|