blob: 658c60724b01ec6e5e8ef6c2cdf844d06367bbc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Wofi
# https://hg.sr.ht/~scoopta/wofi
# Dependencies:
# – fd (https://github.com/sharkdp/fd)
fd --type file . "$@" |
wofi --dmenu --prompt 'Open files' |
:edit
|