This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

4
bin/open Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
DIR=$(ls $HOME | dmenu -c -i -l 10 -p "choose dir")
FILE=$(ls $HOME/$DIR| dmenu -c -i -l 10 -p "file to open")
xdg-open $HOME/$DIR/"$FILE"