mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
13 lines
282 B
Bash
13 lines
282 B
Bash
# pm-powersave(8) completion -*- shell-script -*-
|
|
|
|
_pm_powersave()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
COMPREPLY=($(compgen -W "true false" -- "$cur"))
|
|
} &&
|
|
complete -F _pm_powersave pm-powersave
|
|
|
|
# ex: filetype=sh
|