summaryrefslogtreecommitdiff
path: root/completions/pm-is-supported
blob: 2eeb634d6ff8ec2bbb98708459d63b31008aeb66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# pm-is-supported(1) completion                            -*- shell-script -*-

_pm_is_supported()
{
    local cur prev words cword
    _init_completion || return

    COMPREPLY=( $( compgen -W '--help --suspend --hibernate --suspend-hybrid' \
        -- "$cur" ) )
} &&
complete -F _pm_is_supported pm-is-supported

# ex: filetype=sh