init.zsh 249 B

1234567891011
  1. #
  2. # Provides System informations based on lsb_release and uname
  3. #
  4. # Authors:
  5. # Emmanuel Bouthenot <kolter@openics.org>
  6. #
  7. # Return if requirements are not found.
  8. if (( ! $+commands[lsb_release] )) || (( ! $+commands[uname] )) ; then
  9. return 1
  10. fi