~ruther/guix-config

80a1e68b3302507d7568a4d29087c258c1a1f558 — Rutherther 6 months ago ee998cf
chore: add missing passmenu files
A home/modules/ruther/home/scripts/passmenu-multi => home/modules/ruther/home/scripts/passmenu-multi +41 -0
@@ 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

A home/modules/ruther/home/scripts/passmenu-totp => home/modules/ruther/home/scripts/passmenu-totp +39 -0
@@ 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

Do not follow this link