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