mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-29 20:39:25 +00:00
[#23] Rename plugins to modules
This commit is contained in:
21
modules/wakeonlan/functions/wake
Normal file
21
modules/wakeonlan/functions/wake
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# Wakes devices via wakeonlan.
|
||||
#
|
||||
# Authors:
|
||||
# Paul Gideon Dann <pdgiddie@gmail.com>
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
local config_file="$HOME/.wakeonlan/$1"
|
||||
if [[ ! -f "$config_file" ]]; then
|
||||
print "$0: no such device file: $1" >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
if (( ! $+commands[wakeonlan] )); then
|
||||
print "$0: command not found: wakeonlan" >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
wakeonlan -f "$config_file"
|
||||
|
Reference in New Issue
Block a user