Eyal Erez wrote: > I wanted to add support for MRU type sorting of commands. I've created a > patch which does this in a separate executable for backwards compatibility.
Heyho, this should also be possible with some construct like this: rev <historyfile | awk '!x[$0]++' | dmenu First reverse the historyfile (assuming you append to it), so most recently used entry is first, then remove duplicates and pass the list to dmenu. --Markus