aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2021-11-09 02:32:41 -0500
committertdro <tdro@users.noreply.github.com>2021-11-09 02:32:55 -0500
commit4c374dee43bd068c71eb62b7ce91de0e618ff4a7 (patch)
tree1fa08f3b50236f3b8478daa3b45da5e69a79f548 /.local
parent6985146955ee2e78402b3542519a0ebdbfa582b3 (diff)
downloaddotfiles-4c374dee43bd068c71eb62b7ce91de0e618ff4a7.tar.gz
dotfiles-4c374dee43bd068c71eb62b7ce91de0e618ff4a7.tar.bz2
dotfiles-4c374dee43bd068c71eb62b7ce91de0e618ff4a7.zip
.local/bin/dmenu_run_history: Case insensitive search
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/dmenu_run_history2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/dmenu_run_history b/.local/bin/dmenu_run_history
index f821e41..72127fe 100755
--- a/.local/bin/dmenu_run_history
+++ b/.local/bin/dmenu_run_history
@@ -26,7 +26,7 @@ awk -v histfile="$historyfile" '
x[$0]=1
}
} !x[$0]++ ' "$cache" \
- | dmenu -b ${dmenu_args:--p Launch} "$@" \
+ | dmenu -i -b ${dmenu_args:--p Launch} "$@" \
| awk -v histfile="$historyfile" '
BEGIN {
FS=OFS="\t"