Add sample user scripts

This commit is contained in:
Arun Prakash Jana 2019-01-03 23:05:51 +05:30
parent 9ecab2b30b
commit 5675edebc7
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
# Description: Fuzzy find files in directory subtree with fzy and open using xdg-open
#
# Shell: generic
# Author: Arun Prakash Jana
xdg-open $(find -type f | fzy) >/dev/null 2>&1

View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
# Description: Open images in current directory in sxiv
#
# Shell: generic
# Author: Arun Prakash Jana
sxiv -q * >/dev/null 2>&1