J'ai presque fini avec lemonbar, juste une clickable area qui ne veut pas marcher.
Je veut contrôler le son avec la mollette de la souris et la doc dit ça
Abutton:command:
Create a clickable area starting from the current position, when the area is clicked command >is executed. The area is closed when a A token, not followed by : is encountered.
Eg. %{A:reboot:} Click here to reboot %{A}
The button field is optional, it defaults to the left button, and it's a number ranging from >1 to 5 which maps to the left, middle, right, scroll up and scroll down movements. Your mileage >may vary.
Nested clickable areas can trigger different commands.
Eg. %{A:reboot:}%{A3:halt:} Left click to reboot, right click to shutdown %{A}%{A}
D'après ce que j'ai compris scroll up est A4 et scroll down A5 donc j'ai écrit ça pour le son
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | Sound()
{
sound_mute='amixer -q -D pulse sset Master mute'
sound_unmute='amixer -q -D pulse sset Master unmute'
sound_volume_up='amixer -q -D pulse sset Master 1%+'
sound_volume_down='amixer -q -D pulse sset Master 1%-'
status=`amixer -D pulse sget Master | tail -n 1 | cut -d'[' -f 3 | cut -d']' -f 1`
if test "$status" = "off"
then
echo "%{A:$sound_unmute:}sound: muted%{A}"
else
echo "%{A:$sound_mute:}%{A4:$sound_volume_up:}%{A5:$sound_volume_down:}sound: `amixer -D pulse sget Master | tail -n 1 | cut -d'[' -f 2 | cut -d']' -f 1`%{A}%{A}%{A}"
fi
}
|
mais ça ne marche pas.
Je vous remercie d'avance pour votre aide