Привет,
Использую openbox хочу настроить нотификацию об изменении уровня яркости экрана и громкости. Хотеки прилепил. Думал использовать notify-send. Notification deamon использую xfce4-notifyd.
Думал сделать как-то так
➜ ~ cat ~/scripts/volume_controll.sh
amixer set Master $1 unmute && ~/scripts/get_volume.sh | head -n 1 | xargs notify-send "Volume level"
➜ ~ cat ~/scripts/get_volume.sh
amixer get Master | awk -F"[][]" '/%/ { print $2 }'