nix/home/program/bash/module/Dmenu.nix

17 lines
261 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
# Wrapped dmenu_path to include my functions.
function _dmenu_path_wrapped() {
c=0
while [ ''${c} -lt 1000 ]; do
echo
((c++))
done
2024-04-06 03:03:58 +03:00
find_function | grep -v ^_
dmenu_path
}
'';
2024-04-06 03:03:58 +03:00
}