blob: 1aca6716049e292bb1c50157fe0b5a52562d6e6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# dmenu
# https://tools.suckless.org/dmenu/
# Dependencies:
# – fd (https://github.com/sharkdp/fd)
fd --type file . "$@" |
dmenu -l 20 -i -p 'Open files' |
:edit
|