summaryrefslogtreecommitdiff
path: root/completions/pm-is-supported
blob: 2ca5a9ecf1b460d459b61fb3d423edd3c8dfc9fb (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: ts=4 sw=4 et filetype=sh