From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 113A31F8C2 for ; Mon, 22 Dec 2014 01:28:32 +0000 (UTC) Resent-From: Eric Wong Resent-Date: Mon, 22 Dec 2014 01:28:32 +0000 Resent-Message-ID: <20141222012832.GA31240@dcvr.yhbt.net> Resent-To: dtas-all@80x24.org X-Original-To: e@80x24.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7426B1F8A1; Sun, 21 Dec 2014 03:59:37 +0000 (UTC) From: Eric Wong To: Cc: Eric Wong Subject: [PATCH] dtas-console: '>' and '<' keys for tracklist next/prev Date: Sun, 21 Dec 2014 03:59:35 +0000 Message-Id: <1419134375-23827-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.1.2.571.ged78782.dirty List-Id: These key bindings are used in mplayer, too. --- bin/dtas-console | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/dtas-console b/bin/dtas-console index c28d92d..98d3f43 100755 --- a/bin/dtas-console +++ b/bin/dtas-console @@ -200,6 +200,8 @@ begin when "0" then c.req_ok("rg preamp+=1") when "F" then c.req_ok("rg fallback_gain+=1") when "f" then c.req_ok("rg fallback_gain-=1") + when ">" then c.req_ok("tl next") + when "<" then c.req_ok("tl prev") when " " c.req("play_pause") when "r" # cycle through replaygain modes -- EW