mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Cleaned up the plugins.
This commit is contained in:
parent
422307c3ca
commit
90e7debc30
66 changed files with 902 additions and 1774 deletions
15
plugins/wakeonlan/wakeonlan.plugin.zsh
Normal file
15
plugins/wakeonlan/wakeonlan.plugin.zsh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
function wake() {
|
||||
local config_file="$HOME/.wakeonlan/$1"
|
||||
if [[ ! -f "$config_file" ]]; then
|
||||
echo "$0: $1: There is no such device file." >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
if (( ! $+commands[wakeonlan] )); then
|
||||
echo "$0: Can't find wakeonlan. Is it installed?" >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
wakeonlan -f "$config_file"
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue