/usr/share/eiskaltdcpp/examples/rhythmbox.en_US.sh is in eiskaltdcpp-scripts 2.2.9-3.
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 | #!/bin/sh
# This script shows that are now played in Rhythmbox
## Author: none
## License: Public Domain
## Depends: sh, rhythmbox
## Examples:
# output in console:
# /me Rhythmbox playing now: Rammstein - Sonne
# output in eiskaltdcpp chat:
# [10:57:01] * Ben_Vladen Rhythmbox playing now: Rammstein - Sonne
rh="$(rhythmbox-client --print-playing)"
echo "/me Rhythmbox playing now: ${rh}"
|