From 229a48ac07607efcbb6c2d7e74e8d42d29d7b8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 17 Oct 2023 12:34:36 +0200 Subject: [PATCH] feat(emailmenu): case insensitive, correct prompt --- packages/emailmenu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/emailmenu.nix b/packages/emailmenu.nix index 8bb7efd..7e39ee3 100644 --- a/packages/emailmenu.nix +++ b/packages/emailmenu.nix @@ -11,7 +11,7 @@ writers.writeDashBin "emailmenu" '' history_file=$HOME/.cache/emailmenu PATH=${lib.makeBinPath [coreutils dmenu gawk libnotify xclip]} - chosen=$(${khard}/bin/khard email --parsable | awk '!seen[$0]++' | dmenu -p unicode -1 -l 10 | tee --append "$history_file" | cut -f1) + chosen=$(${khard}/bin/khard email --parsable | awk '!seen[$0]++' | dmenu -i -p 📧 -1 -l 10 | tee --append "$history_file" | cut -f1) [ "$chosen" != "" ] || exit echo "$chosen" | tr -d '\n' | xclip -selection clipboard notify-send --app-name="$(basename "$0")" "'$chosen' copied to clipboard." &