diff --git a/dot_config/rofi/executable_pass.sh.tmpl b/dot_config/rofi/executable_pass.sh.tmpl deleted file mode 100644 index bba79c4c05485222a79e7378e2b16031aa3e5a3a..0000000000000000000000000000000000000000 --- a/dot_config/rofi/executable_pass.sh.tmpl +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -export BW_SESSION="{{ .bw_session }}" - -ENTRY=$(rofi -dmenu -password -p "󰟵 ") - -if [ -z "$ENTRY" ]; then - exit -fi - -echo "$ENTRY" - -PASSWD=$(bw get password "$ENTRY") - -if [ -z "$PASSWD" ]; then - notify-send "There was an error getting the password" - exit -fi - -xdotool type --delay 100 "$PASSWD" -xdotool key enter