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

9 lines
296 B
Bash
Executable File

#!/bin/bash
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)";