aboutsummaryrefslogtreecommitdiff
path: root/vlm
blob: b4b279b596ee94d213e627f9be44ceadfaa70aa4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/sh
# sh-pulse --- Control script for pulseaudio volume and output sink
# Copyright © 2024 Runciter <runciter@pkbd.org>
#
# This file is part of sh-pulse.
#
# sh-pulse is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# sh-pulse is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with sh-pulse.  If not, see <http://www.gnu.org/licenses/>.

declare -a SINKS=($(pactl list short sinks | awk '{print $1}'))

if test "x${#SINKS[@]}" = x0
then
    echo no sinks found, are you running pulseaudio?
    exit 1
fi
declare -a SINKNAMES=($(pactl list short sinks | awk '{print $2}'))

declare -a INPUTS=($(pactl list short sink-inputs | awk '{print $1}'))
declare -a INPUTSINKS=($(pactl list short sink-inputs | awk '{print $2}'))
if test "x${#INPUTS[@]}" = x0
then
    echo no inputs found, setting first sink as default sink
    IS=0
    pactl set-default-sink ${SINKNAMES[$IS]}
else
    for (( I=0; I<${#SINKS[@]}; ++I ))
    do
        if test "x${INPUTSINKS[0]}" = "x${SINKS[$I]}"
        then
            IS=$I
        fi
    done
fi

case "$1" in
    increase)
        pactl set-sink-volume ${SINKS[$IS]} "+5%"
        ;;
    decrease)
        pactl set-sink-volume ${SINKS[$IS]} "-5%"
        ;;
    togglemute)
        pactl set-sink-mute ${SINKS[$IS]} toggle
        ;;
    nextsink)
        if test "x$(( ${IS}+1))" = "x${#SINKS[@]}"
        then
            IS=0
        else
            IS=$(($IS+1))
        fi
        pactl set-default-sink ${SINKNAMES[$IS]}
        for (( I=0; I<${#INPUTS[@]}; ++I ))
        do
            pactl move-sink-input ${INPUTS[$I]} ${SINKS[$IS]}
        done
        ;;
    *)
        echo "Usage: /usr/local/bin/pavolctrl {increase|decrease|togglemute|nextsink}"
        exit 2
        ;;
esac
exit 0