Adding my scripts.

This commit is contained in:
CronyAkatsuki 2021-03-13 18:09:41 +01:00
parent 6f51cebd29
commit 9e3b9cc441
7 changed files with 78 additions and 0 deletions

7
dmenufilehandler Executable file
View file

@ -0,0 +1,7 @@
#!/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 "{}"