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