diff options
author | tv <tv@krebsco.de> | 2023-01-19 14:08:01 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-19 14:08:27 +0100 |
commit | 12c7b8ab224679990ba626569d5b9167582e5b1a (patch) | |
tree | 81e872834c6189b0d706e347c3b5ce2c1cbe2987 | |
parent | 42a97a35103bd1ef1bc8698ae0e3660af5f5cbeb (diff) |
tv wwan: add uqmi bash-completion
-rw-r--r-- | tv/3modules/wwan.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tv/3modules/wwan.nix b/tv/3modules/wwan.nix index a60d314..03cd512 100644 --- a/tv/3modules/wwan.nix +++ b/tv/3modules/wwan.nix @@ -33,6 +33,20 @@ with import ./lib; (pkgs.writeDashBin "uqmi" '' exec ${pkgs.uqmi}/bin/uqmi --device=${cfg.device} "$@" '') + (pkgs.writeTextDir "share/bash-completion/completions/uqmi" /* sh */'' + _uqmi_complete() { + case ''${#COMP_WORDS[@]} in + 2) + COMPREPLY=($(compgen -W "$( + ${pkgs.uqmi}/bin/uqmi --help 2>&1 | + ${pkgs.coreutils}/bin/tr , \\n | + ${pkgs.gnused}/bin/sed -nr 's/^ *(-[a-z-]+).*/\1/p' + )" -- "''${COMP_WORDS[1]}")) + ;; + esac + } + complete -F _uqmi_complete uqmi + '') pkgs.uqmi ]; }; |