From 881108f51baee0652300325a1dd1e071e2866eed Mon Sep 17 00:00:00 2001 From: self Date: Thu, 5 Jan 2023 16:53:16 +0000 Subject: Removed scripts, as moved to orgd --- scripts/change-audio | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 scripts/change-audio (limited to 'scripts/change-audio') diff --git a/scripts/change-audio b/scripts/change-audio deleted file mode 100755 index 2dafe73..0000000 --- a/scripts/change-audio +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# change-audio -# Shamelessly copied from the Arch Linux wiki. - -# Arbitrary but unique message tag -msgTag="myvolume" - -# Change the volume using alsa(might differ if you use pulseaudio) -amixer -M -c 0 set Master "$@" > /dev/null - -# Query amixer for the current volume and whether or not the speaker is muted -volume="$(amixer -M -c 0 get Master | tail -1 | awk '{print $4}' | sed 's/[^0-9]*//g')" -mute="$(amixer -M -c 0 get Master | tail -1 | awk '{print $6}' | sed 's/[^a-z]*//g')" -if [[ $volume == 0 || "$mute" == "off" ]]; then - # Show the sound muted notification - dunstify -a "changeVolume" -u low -i audio-volume-muted -h string:x-dunst-stack-tag:$msgTag "Volume muted" -else - # Show the volume notification - dunstify -a "changeVolume" -u low -i audio-volume-high -h string:x-dunst-stack-tag:$msgTag \ - -h int:value:"$volume" "Volume: ${volume}%" -fi -- cgit v1.2.1