blob: 3d4b5b18bc4f61f7785f3a61005919fb7a5824cd (
plain) (
tree)
|
|
#!/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
printf "Test"
|