13 lines
302 B
Bash
13 lines
302 B
Bash
#!/bin/sh
|
|
|
|
text="Click me"
|
|
|
|
case $GESTURE in
|
|
"left_mouse_down") text="That's left mouse button!" ;;
|
|
"right_mouse_down") text="That's right mouse button!" ;;
|
|
"other_mouse_down") text="That's mouse button $GESTURE_INFO!" ;;
|
|
"scroll_wheel") text="Yes, you can even scroll!" ;;
|
|
esac
|
|
|
|
echo " $text"
|