.dotfiles/files/scripts/quickpass.sh
2025-11-19 21:49:30 +01:00

12 lines
230 B
Bash

shopt -s nullglob globstar
notify-send "$(env | grep -E 'WAYLAND|SWAY')"
password="$1"
pass show "$password" | {
IFS= read -r pass
printf %s "$pass"
} | wtype -
notify-send -u critical -a pass -t 1000 "Typed Password"