diff options
author | Joe <rbo@gmx.us> | 2024-12-27 09:55:45 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-27 09:55:45 +0100 |
commit | 48e216d8f05423454cfd2ebbb56a72679c74019f (patch) | |
tree | d9c51db27d383109dd826b9abecb3e6d477a3cec /.local/bin/dmpc | |
parent | up (diff) | |
download | dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.gz dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.bz2 dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.xz dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.zst dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/dmpc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/dmpc b/.local/bin/dmpc index d8e6603..f332431 100755 --- a/.local/bin/dmpc +++ b/.local/bin/dmpc @@ -27,7 +27,7 @@ sub main chomp $current; chomp $queued; $prompt = "toggle\nnext\nprev\nplay\nstop\nclear\nrepeat\nrandom\n\n$current\n$queued\n"; - $action = `printf "$prompt" | dmenu -i -l 11 -m 0`; + $action = `printf "$prompt" | dmenu -i -l 11`; system("mpc " . $action); return; } |