Files
opalfiles/.local/bin/pass_copy
2025-08-16 11:35:38 -07:00

8 lines
214 B
Bash
Executable File

#!/bin/sh
entry=$(gopass list --flat | ~/.config/rofi/launchers.d/rofi_launcher_pass.sh)
if [ -n "$entry" ]; then
gopass show -c "$entry" 2>/dev/null || notify-send "Gopass Error" "Failed to copy: $entry"
fi