1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/sh case $BUTTON in # Left mouse click 1) notify-send "$BUTTON" ;; # Middle mouse click 2) notify-send "$BUTTON" ;; # Right mouse click 3) notify-send "$BUTTON" ;; # Mouse wheel up 4) notify-send "$BUTTON" ;; # Mouse wheel down 5) notify-send "$BUTTON" ;; esac echo "Test"