userspace-installation-maid/.local/bin/dexplorer

9 lines
296 B
Plaintext
Raw Normal View History

2024-07-29 13:18:04 -04:00
#!/bin/bash
2024-08-02 13:32:47 -04:00
app="fzf"
[ ! -z $2 ] && [ $2 == "dmenu" ] && app="dmenu";
[ $1 == "b" ] && zathura "$(find ~/Mounts/hdd2/Books/ -type f | $app)";
[ $1 == "y" ] && mpv "$(find ~/Mounts/hdd2/YouTube/ -type f | $app)";
[ $1 == "m" ] && mpv "$(find ~/Mounts/hdd2/Movies\ \&\ Series/ -type f | $app)";