dotfiles

My beautiful configs and dotfiles managed by Nix' home-manager
Log | Files | Refs | README | LICENSE

dmenu_path (222B)


      1 #!/bin/sh
      2 
      3 # this script prints all binaries found in $PATH
      4 # for some reason does original dmenu_path not work
      5 echo $PATH \
      6     | xargs -i -d: \
      7       find {} -maxdepth 1 -type f -executable -printf '%P\n' \
      8     | sort -u