blob: 726c61838ead9d242f46fcc47cb87d4d5a8a2d0a (
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
echo "Test"
|