From 271a12598207f8b00667e3277851cf4cabbd6347 Mon Sep 17 00:00:00 2001
From: Bobby Bingham <koorogi@koorogi.info>
Date: Thu, 23 Jul 2020 21:10:36 -0500
Subject: desktop: delete xbindkeys config

No longer using this.
---
 desktop/bin/aumute | 60 ------------------------------------------------------
 1 file changed, 60 deletions(-)
 delete mode 100755 desktop/bin/aumute

(limited to 'desktop/bin')

diff --git a/desktop/bin/aumute b/desktop/bin/aumute
deleted file mode 100755
index 2829235..0000000
--- a/desktop/bin/aumute
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-
-#   Aumix mute toggle
-#   Version: 1.1.0
-#   Date: 2005/03/21
-#
-#   Copyright: 2004 Jeremy Brand <jeremy@nirvani.net>
-#   http://www.nirvani.net/software/
-#   Licenced under the GNU Public License Version 2.
-#
-# Purpose:
-#   To have a single script toggle between current sound levels
-#   and mute with the aumix program while maintaining
-#   and not deleting current mixer saved settings.
-#
-# Notes:
-#   I bind this program to a single key in my window manager's
-#   configuration file.  It then serves the purpose of having a
-#   audio mute key.  If you have a fancy keyboard with a mute
-#   key, try binding this program to that scancode.
-#
-# Usage:
-#
-# Toggle between mute and unmute based on last state:
-#   aumix-toggle-mute.sh
-#
-# Force mute:
-#   aumix-toggle-mute.sh --force-mute
-#
-# Force unmute:
-#   aumix-toggle-mute.sh --force-unmute
-#
-
-MUTERC="$HOME/.aumixrc.mute"
-
-function __mute() {
-	if [ ! -e "$MUTERC" ]; then
-		aumix -f "$MUTERC" -S
-	fi
-	aumix -v 0; aumix -w 0
-}
-
-function __unmute () {
-	if [ -e "$MUTERC" ]; then
-		aumix -f "$MUTERC" -L > /dev/null
-		rm -f "$MUTERC"
-	else
-		aumix -L > /dev/null
-	fi
-}
-
-if [ "$1" = "--force-mute" ]; then
-	__mute;
-elif [ "$1" = "--force-unmute" ]; then
-	__unmute;
-elif [ -e "$MUTERC" ]; then
-	__unmute;
-else
-	__mute;
-fi
-- 
cgit v1.2.3