wakeonlan.plugin.zsh 352 B

1234567891011121314
  1. function wake() {
  2. local config_file="$HOME/.wakeonlan/$1"
  3. if [[ ! -f "$config_file" ]]; then
  4. echo "ERROR: There is no configuration file at \"$config_file\"."
  5. return 1
  6. fi
  7. if (( ! $+commands[wakeonlan] )); then
  8. echo "ERROR: Can't find \"wakeonlan\". Are you sure it's installed?"
  9. return 1
  10. fi
  11. wakeonlan -f "$config_file"
  12. }