diff options
author | lassulus <lass@blue.r> | 2018-06-13 21:00:42 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-06-13 21:00:42 +0200 |
commit | 386d9849e8a4a1aaa16c7055049b2e925916653e (patch) | |
tree | 4506a343e95b69bb3131c4b020a50e1c87b41c3b /tv/5pkgs/simple/otpmenu.nix | |
parent | c01b6860809fb455c060e143c596590f61fc62c5 (diff) | |
parent | 5535353e8691cf95f63365f79a16752d7be457fb (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/5pkgs/simple/otpmenu.nix')
-rw-r--r-- | tv/5pkgs/simple/otpmenu.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/otpmenu.nix b/tv/5pkgs/simple/otpmenu.nix new file mode 100644 index 000000000..b35e1601f --- /dev/null +++ b/tv/5pkgs/simple/otpmenu.nix @@ -0,0 +1,15 @@ +{ dmenu, gnused, pass, writeDashBin, xdotool }: + +writeDashBin "otpmenu" '' + set -efu + + x=$( + ${pass}/bin/pass git ls-files '*/otp.gpg' \ + | ${gnused}/bin/sed 's:/otp\.gpg$::' \ + | ${dmenu}/bin/dmenu -f -p OTP + ) + + otp=$(${pass}/bin/pass otp code "$x/otp") + + printf %s "$otp" | ${xdotool}/bin/xdotool type -f - +'' |