my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

Add pashmenu

+14
+14
bin/pashmenu
··· 1 + #!/bin/sh -e 2 + # 3 + # posix i think 4 + 5 + cd "$PASH_DIR" 6 + 7 + # strip .gpg extension & preserve newlines; cut things; sort 8 + passwords=$(find . -type f -name "*.gpg" -exec sh -c 'printf "${0%.gpg}\n"' {} \; | cut -d '/' -f 2- | sort) 9 + 10 + password=$(printf '%s' "$passwords" | dmenu) 11 + 12 + [ -n "$password" ] || exit 13 + 14 + pash copy "$password"