From 80a1e68b3302507d7568a4d29087c258c1a1f558 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 14 Sep 2024 20:21:11 +0200 Subject: [PATCH] chore: add missing passmenu files --- .../ruther/home/scripts/passmenu-multi | 41 +++++++++++++++++++ .../modules/ruther/home/scripts/passmenu-totp | 39 ++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100755 home/modules/ruther/home/scripts/passmenu-multi create mode 100755 home/modules/ruther/home/scripts/passmenu-totp diff --git a/home/modules/ruther/home/scripts/passmenu-multi b/home/modules/ruther/home/scripts/passmenu-multi new file mode 100755 index 0000000..15e626c --- /dev/null +++ b/home/modules/ruther/home/scripts/passmenu-multi @@ -0,0 +1,41 @@ +#!/usr/bin/env bash + +shopt -s nullglob globstar + + +if [[ -n $WAYLAND_DISPLAY ]]; then + dmenu=dmenu-wl +elif [[ -n $DISPLAY ]]; then + dmenu=dmenu +else + echo "Error: No Wayland or X11 display detected" >&2 + exit 1 +fi + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +password=$(printf '%s\n' "${password_files[@]}" | "$dmenu" "$@") + +[[ -n $password ]] || exit + +password_contents=$(pass show "$password") + +username=$(basename "$password") + +if [[ "$password_contents" =~ "Username: " ]]; then + username=$(echo "$password_contents" | grep "Username: " | cut -d' ' -f 2) +fi + +echo "$username" | wl-copy -o -f + +secret=$(echo "$password_contents" | head -n 1) + +echo "$secret" | wl-copy -o -f +echo "" | wl-copy + +if [[ "$password_contents" =~ "otpauth:/" ]]; then + pass otp -c "$password" +fi diff --git a/home/modules/ruther/home/scripts/passmenu-totp b/home/modules/ruther/home/scripts/passmenu-totp new file mode 100755 index 0000000..469f8f0 --- /dev/null +++ b/home/modules/ruther/home/scripts/passmenu-totp @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +shopt -s nullglob globstar + +typeit=0 +if [[ $1 == "--type" ]]; then + typeit=1 + shift +fi + +if [[ -n $WAYLAND_DISPLAY ]]; then + dmenu=dmenu-wl + xdotool="ydotool type --file -" +elif [[ -n $DISPLAY ]]; then + dmenu=dmenu + xdotool="xdotool type --clearmodifiers --file -" +else + echo "Error: No Wayland or X11 display detected" >&2 + exit 1 +fi + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +password=$(printf '%s\n' "${password_files[@]}" | "$dmenu" "$@") + +[[ -n $password ]] || exit + +if ! pass show "$password" | grep 'otpauth:/'; then + notify-send "This password file doesn't contain otpauth!" +fi + +if [[ $typeit -eq 0 ]]; then + pass otp -c "$password" 2>/dev/null +else + pass otp "$password" | { IFS= read -r pass; printf %s "$pass"; } | $xdotool +fi -- 2.48.1