-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyprvol
executable file
·82 lines (74 loc) · 2.41 KB
/
hyprvol
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
75
76
77
78
79
80
81
82
#!/bin/bash
# Icons
iDIR='/usr/share/archcraft/icons/dunst'
# notify_cmd='notify-send -u low' # replace via syshud
# Get Volume
get_volume() {
echo "`pulsemixer --get-volume | cut -d' ' -f1`"
}
# Notify
notify_user() {
current="$(get_volume)"
if [[ "$current" -eq "0" ]]; then
icon="$iDIR/volume-mute.png"
elif [[ ("$current" -ge "0") && ("$current" -le "40") ]]; then
icon="$iDIR/volume-low.png"
elif [[ ("$current" -ge "40") && ("$current" -le "60") ]]; then
icon="$iDIR/volume-mid.png"
elif [[ ("$current" -ge "60") ]]; then
icon="$iDIR/volume-high.png"
fi
if $($HOME/scripts/sysutil.sh getSound screenshot); then $HOME/scripts/sysutil.sh playSound audio-volume-change.oga & fi
# ${notify_cmd} -i "$icon" "Volume : $current%"
}
# Increase Volume
inc_volume() {
[[ `pulsemixer --get-mute` == 1 ]] && pulsemixer --unmute
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ && notify_user
}
# Decrease Volume
dec_volume() {
[[ `pulsemixer --get-mute` == 1 ]] && pulsemixer --unmute
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- && notify_user
}
# Toggle Mute
toggle_mute() {
if [[ `pulsemixer --get-mute` == 0 ]]; then
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle # & ${notify_cmd} -i "$iDIR/volume-mute.png" "Mute"
else
# current="$(get_volume)"
# if [[ "$current" -eq "0" ]]; then
# icon="$iDIR/volume-mute.png"
# elif [[ ("$current" -ge "0") && ("$current" -le "40") ]]; then
# icon="$iDIR/volume-low.png"
# elif [[ ("$current" -ge "40") && ("$current" -le "60") ]]; then
# icon="$iDIR/volume-mid.png"
# elif [[ ("$current" -ge "60") ]]; then
# icon="$iDIR/volume-high.png"
# fi
pulsemixer --toggle-mute # & ${notify_cmd} -i "$icon" "Unmute"
fi
}
# Toggle Mic
toggle_mic() {
ID="`pulsemixer --list-sources | grep 'Default' | cut -d',' -f1 | cut -d' ' -f3`"
if [[ `pulsemixer --id $ID --get-mute` == 0 ]]; then
pulsemixer --id ${ID} --toggle-mute && ${notify_cmd} -i "$iDIR/microphone-mute.png" "Microphone Switched OFF"
else
pulsemixer --id ${ID} --toggle-mute && ${notify_cmd} -i "$iDIR/microphone.png" "Microphone Switched ON"
fi
}
# Execute accordingly
if [[ "$1" == "--get" ]]; then
get_volume
elif [[ "$1" == "--inc" ]]; then
inc_volume
elif [[ "$1" == "--dec" ]]; then
dec_volume
elif [[ "$1" == "--toggle" ]]; then
toggle_mute
elif [[ "$1" == "--toggle-mic" ]]; then
toggle_mic
else
echo $(get_volume)%
fi