diff options
author | Rasmus Steinke <rasi@xssn.at> | 2016-05-27 14:31:15 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2016-05-27 14:31:15 +0200 |
commit | 3345fcc18c0a6849614684c735b2ee944a753346 (patch) | |
tree | c56b11736983cb08569c7178e8dfd76673ead141 | |
parent | 4d588306eca5975b11e2d783c6ceb867d43e29ef (diff) | |
download | rofi-pass-3345fcc18c0a6849614684c735b2ee944a753346.tar.gz |
dont show groups for files in root directory
-rwxr-xr-x | rofi-pass | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -385,7 +385,7 @@ manageEntry () { } listgpg () { - find . -name \*.gpg -print | cut -c 3- | while read line; do echo -e "${line##*/}\t(In: ${line%%/*})"; done | column -s $'\t' -t + find . -name \*.gpg -print | cut -c 3- | while read line; do echo -e "${line##*/}\t(In: ${line%%/*})"; done | sed 's/(.*.gpg)$//g' | sed 's/.gpg\t/\t/g' | column -s $'\t' -t } insertPass () { |