From 3345fcc18c0a6849614684c735b2ee944a753346 Mon Sep 17 00:00:00 2001 From: Rasmus Steinke Date: Fri, 27 May 2016 14:31:15 +0200 Subject: [PATCH] dont show groups for files in root directory --- rofi-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index cdd8350..4a86331 100755 --- a/rofi-pass +++ b/rofi-pass @@ -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 () {