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: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-2.3 required=3.0 tests=AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 22E9E63381A for ; Sat, 27 Dec 2014 12:03:18 +0000 (UTC) Received: from localhost ([::1]:55721 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y4q5V-0001jg-In for dtas-all@80x24.org; Sat, 27 Dec 2014 07:03:17 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45453) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y4q5T-0001ix-Sa for dtas-all@nongnu.org; Sat, 27 Dec 2014 07:03:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y4q5N-00065f-PU for dtas-all@nongnu.org; Sat, 27 Dec 2014 07:03:15 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:37769) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y4q5N-00065S-L3 for dtas-all@nongnu.org; Sat, 27 Dec 2014 07:03:09 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 374D31F7E9; Sat, 27 Dec 2014 12:03:09 +0000 (UTC) From: Eric Wong To: Subject: [PATCH 1/3] dtas-console: keys for "cue next/prev" Date: Sat, 27 Dec 2014 12:02:56 +0000 Message-Id: <1419681778-6183-2-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.1.2.571.ged78782.dirty In-Reply-To: <1419681778-6183-1-git-send-email-e@80x24.org> References: <1419681778-6183-1-git-send-email-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 Cc: Eric Wong X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org The '!' and '@' keys are used in mplayer to skip chapters, so perhaps this is a good analogy. --- bin/dtas-console | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/dtas-console b/bin/dtas-console index 98d3f43..ee0c126 100755 --- a/bin/dtas-console +++ b/bin/dtas-console @@ -202,6 +202,8 @@ begin 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 "!" then c.req_ok("cue prev") + when "@" then c.req_ok("cue next") when " " c.req("play_pause") when "r" # cycle through replaygain modes -- EW