mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
12 lines
230 B
Bash
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"
|