12 lines
179 B
Bash
12 lines
179 B
Bash
# Wrapped dmenu_path to include my functions.
|
|
function _dmenu_path_wrapped() {
|
|
c=0
|
|
while [ ${c} -lt 1000 ]; do
|
|
echo
|
|
((c++))
|
|
done
|
|
|
|
dmenu_path
|
|
find_function | grep -v ^_
|
|
}
|