70 lines
1.6 KiB
Bash
Executable file
70 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Very basic interface for rbw using rofi
|
|
if [ $(hostname) = "syl" ]; then
|
|
style="laptop-rbw"
|
|
#echo "this is hidpi"
|
|
else
|
|
style="desktop-rbw"
|
|
#echo "this is not hidpi"
|
|
fi
|
|
|
|
# Get all password files and create an array
|
|
root=~/.password-store
|
|
CACHE=~/.local/tmp/pass_rofi
|
|
seat=seat0
|
|
|
|
rbw sync
|
|
rbw list
|
|
|
|
list_passwords() {
|
|
rbw list
|
|
}
|
|
|
|
passwords=$(rbw list)
|
|
|
|
prompt='search for passwords...'
|
|
SECRET=$(list_passwords | rofi -i -p="${prompt}" -dmenu -theme ~/.config/rofi/launchers-git/$style.rasi)
|
|
|
|
# Ask whether pass, user or both are required
|
|
options=("Password" \
|
|
"User" \
|
|
"User and password" \
|
|
"QR-Code" \
|
|
"OTP")
|
|
|
|
option=$(printf '%s\n' "${options[@]%}" | wofi -id -W 400 -H 150 -p"...")
|
|
|
|
# echo $option
|
|
|
|
case ${option} in
|
|
Password )
|
|
# echo "${SECRET}"
|
|
ydotool type --next-delay 500 $(rbw get "${SECRET}")
|
|
;;
|
|
User )
|
|
ydotool type --next-delay 500 "$(rbw get --full "${SECRET}" | rg Username: | awk '{print $2}')"
|
|
;;
|
|
"User and password" )
|
|
ydotool type --next-delay 500 $(rbw get --full "${SECRET}" | rg Username: | awk '{print $2}')
|
|
ydotool key TAB
|
|
ydotool type --next-delay 500 $(rbw get "${SECRET}")
|
|
;;
|
|
"QR-Code" )
|
|
if [[ $SECRET =~ wifi$ ]]; then
|
|
# Produce a valid wifi QR-code
|
|
WIFISSID=$(pass get_user ${SECRET})
|
|
WIFIPASS=$(pass get_pass ${SECRET})
|
|
WIFIQR="WIFI:T:WPA;S:${WIFISSID};P:${WIFIPASS};;"
|
|
qrencode -s 8 -o - $WIFIQR | feh --title "pass: QR-WIFI" -
|
|
else
|
|
# Only password
|
|
pass show -q1 ${SECRET}
|
|
fi
|
|
;;
|
|
"OTP" )
|
|
ydotool type --next-delay 300 $(rbw code ${SECRET})
|
|
;;
|
|
esac
|
|
|
|
# wl-copy -o -s ${seat} ${PASSWD_PASS}
|