mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
12 lines
280 B
Bash
12 lines
280 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
|