20 lines
433 B
Bash
Executable File
20 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Reading input {{{
|
|
|
|
# Terminal
|
|
#read -p "Alias: " alias_
|
|
#read -s -p "Secret: " secret
|
|
|
|
# GUI
|
|
pair="$(zenity --password --username --title="Password Calculator")"
|
|
alias_="${pair%|*}"
|
|
secret="${pair#*|}"
|
|
|
|
pass="$(echo -n "$secret$alias_" | shasum | sed 's/../\\\\x&/g' | xargs echo -e | base64 | colrm 17)"
|
|
|
|
echo -n "$pass" | xclip
|
|
echo -n "$pass" | xclip -sel c
|
|
notify-send "xclip set to ${pass:0:3}...${pass:(-3):3}"
|
|
|