| music - dotfiles - These are my dotfiles. There are many like it, but these are… | |
| git clone git://jay.scot/dotfiles | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| music (347B) | |
| --- | |
| 1 #!/bin/sh | |
| 2 | |
| 3 DIRECTORY="$HOME/media/music_videos" | |
| 4 | |
| 5 directories=$(find "$DIRECTORY" -mindepth 1 -maxdepth 1 -type d -exec ba… | |
| 6 selected_directory=$(printf "%s\n" "$directories" | bemenu -l 10 -p 'mus… | |
| 7 if [ -n "$selected_directory" ]; then | |
| 8 mpv --autofit=30% --really-quiet --no-terminal "$DIRECTORY/$selected… | |
| 9 fi | |
| 10 |