8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# feed the script with your directory path
|
|
# and it will list all your files and open them
|
|
# in your prefered program with xdg-open
|
|
|
|
find "$1" | dmenu -l 30 | xargs -I {} xdg-open "{}"
|