diff options
Diffstat (limited to 'dmpv')
-rwxr-xr-x | dmpv | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ esac playvid () { while true; do - VIDEO=$(printf ".\n%s\n" "$(ls)" | uniq | barmenu "$@") + VIDEO=$(printf ".\n%s\n" "$(ls)" | uniq | dmenu -l 15 "$@") [ -z $VIDEO ] && exit if [ "$VIDEO" = "." ]; then break; @@ -27,7 +27,7 @@ playvid () { printhelp () { printf \ "Usage: dmpv [-l] [-h]\n" \ - "dmpv is a simple barmenu interface for playing content with mpv\n" \ + "dmpv is a simple dmenu interface for playing content with mpv\n" \ "dmpv assumes videos are stored in ~/Videos\n" \ " -h\t\tprint this help message\n" \ " -l\t\trun the prompt again after mpv exits\n" |