]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blobdiff - bash_completion/autorandr
Print configuration differences for failed actions if --debug is set
[deb_pkgs/autorandr.git] / bash_completion / autorandr
index 151c59698807c5b7de8d2a7ebc43b5677d88ecb0..7a8b81b5dc4d0714619c5e3bbdd760d78ba20dd3 100644 (file)
@@ -9,9 +9,11 @@ _autorandr ()
        prev="${COMP_WORDS[COMP_CWORD-1]}"
 
        opts="-h -c -s -l -d"
-       lopts="--help --change --save --load --default --force --fingerprint"
+       lopts="--help --change --save --load --default --force --fingerprint --config --dry-run"
        if [ -d ~/.autorandr ]; then
                prfls="`find ~/.autorandr/* -maxdepth 1 -type d -printf '%f\n'`"
+       elif [ -d ~/.config/autorandr ]; then
+               prfls="`find ~/.config/autorandr/* -maxdepth 1 -type d -printf '%f\n'`"
        else
                prfls=""
        fi
@@ -34,7 +36,7 @@ _autorandr ()
 
        case "${prev}" in
                -l|--load|-d|--default)
-                       COMPREPLY=( $( compgen -W "${prfls}" ) )
+                       COMPREPLY=( $( compgen -W "${prfls}" -- $cur ) )
                        return 0
                        ;;
                *)
@@ -44,5 +46,3 @@ _autorandr ()
        return 0
 }
 complete -F _autorandr autorandr
-complete -F _autorandr auto-disper
-