diff options
author | ZachIR <zachir@librem.one> | 2025-07-15 22:35:53 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-15 22:35:53 -0500 |
commit | f6ba3cab6cc1a49519a9cd7bbe7d03a514505e38 (patch) | |
tree | 5ab0427e293499325e4f40f140d75af0d96d7b50 | |
parent | 3922cf0828f0a989f3d24b7505605d53d0379d5a (diff) |
Remove barmenu syntax from 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" |