6 lines
156 B
Bash
6 lines
156 B
Bash
|
#!/bin/bash
|
||
|
pulsemixer --change-volume +5
|
||
|
vol="$(amixer -D pulse get Master | awk -F'[][]' 'END{ print $2 }')"
|
||
|
notify-send --expire-time=500 "Volume $vol"
|
||
|
|