8 lines
116 B
Bash
8 lines
116 B
Bash
#!/bin/bash
|
|
|
|
remote-touchpad "$@"
|
|
if [ $? -eq 1 ]; then
|
|
echo
|
|
read -n 1 -s -r -p "Press any key to close"
|
|
echo
|
|
fi
|