summaryrefslogtreecommitdiffstats
path: root/.local/bin/dmpc
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/dmpc')
-rwxr-xr-x.local/bin/dmpc2
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;
}