Files
misc/bin/open
2025-12-01 23:54:15 -08:00

10 lines
156 B
Bash
Executable File

#!/bin/sh
FILE=$(find -type f -maxdepth 5 | dmenu -c -i -l 10 -p "path to open")
# try to execute
./"$FILE"&
if [[ $? == 1 ]]; then
xdg-open "$FILE"
fi