mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
6 lines
262 B
Plaintext
6 lines
262 B
Plaintext
|
#!/bin/sh
|
||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||
|
dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
|
||
|
|
||
|
# 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"} &
|