2019-12-20 05:54:26 +01:00
|
|
|
{ stdenv, symlinkJoin, rofi, gnused, pass-otp, writeTextFile
|
|
|
|
, writeShellScriptBin, xdotool }:
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
name = "otpmenu";
|
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
desktopFile = writeTextFile {
|
|
|
|
name = "${name}.desktop";
|
|
|
|
destination = "/share/applications/${name}.desktop";
|
|
|
|
text = ''
|
|
|
|
[Desktop Entry]
|
|
|
|
Categories=Application;Utility;
|
|
|
|
Comment=Enter MFA number with password otp plugins otp
|
|
|
|
Encoding=UTF-8
|
|
|
|
Exec=${bin}/bin/${name}
|
|
|
|
Icon=gnome-lockscreen
|
|
|
|
Name=${name}
|
|
|
|
Terminal=false
|
|
|
|
Type=Application
|
2019-10-24 02:20:38 +02:00
|
|
|
'';
|
2019-12-20 05:54:26 +01:00
|
|
|
};
|
2019-10-24 02:20:38 +02:00
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
bin = writeShellScriptBin name # sh
|
|
|
|
''
|
|
|
|
set -efu
|
|
|
|
|
|
|
|
x=$(
|
|
|
|
${pass-otp}/bin/pass git ls-files '*/otp.gpg' \
|
|
|
|
| ${gnused}/bin/sed 's:/otp\.gpg$::' \
|
|
|
|
| ${rofi}/bin/rofi -dmenu -f -p OTP
|
|
|
|
)
|
|
|
|
|
|
|
|
otp=$(${pass-otp}/bin/pass otp code "$x/otp")
|
|
|
|
|
|
|
|
printf %s "$otp" | ${xdotool}/bin/xdotool type -f -
|
|
|
|
'';
|
|
|
|
|
|
|
|
in symlinkJoin rec {
|
|
|
|
version = "1.0.0";
|
|
|
|
name = "otpMenu-${version}";
|
|
|
|
paths = [ bin desktopFile ];
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "similar to passmenu shows and prints otp";
|
|
|
|
homepage = "https://your.mama";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ mrVanDalo ];
|
|
|
|
};
|
|
|
|
}
|
2019-10-24 02:20:38 +02:00
|
|
|
|