/usr/lib/volti/volti-remote is in volti 0.2.3-7.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/sh
print_usage() {
cat << EOF
Usage: volti-remote [OPTION]
Options:
-h Show this help message and exit
-i Increase volume
-d Decrease volume
-m Mute volume
EOF
}
if test $# = 0; then
print_usage
fi
DBUS_SEND="dbus-send --type=method_call --dest=com.google.code.Volti /com/google/code/Volti com.google.code.Volti.emit"
while getopts ":hidm" opt; do
case $opt in
i) `${DBUS_SEND} string:'volume-up'`;;
d) `${DBUS_SEND} string:'volume-down'`;;
m) `${DBUS_SEND} string:'mute'`;;
h) print_usage;;
*) print_usage;;
esac
done
|