4 lines
95 B
Bash
Executable File
4 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
FILE=$(ls $HOME | xargs find | dmenu -c -i -l 10 -p "file to open")
|
|
xdg-open "$FILE"
|