1
0
Fork 0
dotfiles/simpleDots/bin/dmenu_dir2menu.sh

13 lines
196 B
Bash
Raw Normal View History

#!/bin/bash
directory=$1
## ARG1 needs to be a directory
if [ ! -d $directory ]
then
echo Usage: $0 [Directory with menuitems]
exit 1
fi
$directory/$(ls --color=never -1 $directory | dmenu)