Files
misc/bin/open
2025-12-08 16:04:42 -08:00

9 lines
139 B
Bash
Executable File

#!/bin/sh
FILE=$(find -maxdepth 5 -type f | dmenu -c -i -l 10 -p "path to open")
if ( ./"$FILE" ); then
exit
else
xdg-open "$FILE"
fi