mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 14:05:48 +02:00
3cb4dbdf7a
- Bug fix: Don't skip writing first entry to history file. This happened for `histnodup` = 1 (default) plus `histsz` = 0 (value when starting with an empty history). Ref. https://git.suckless.org/sites/commit/f759877d393eaed126dfc8e56932c49e7581a181.html
6 lines
246 B
Bash
Executable File
6 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
exec $(dmenu_path | dmenu "$@")
|
|
|
|
# Uncomment for the NAVHISTORY patch (and remove the exec above)
|
|
#dmenu_path | dmenu -H "${XDG_CACHE_HOME:-$HOME/.cache/}/dmenu_run.hist" "$@" | ${SHELL:-"/bin/sh"} & |