/usr/share/eiskaltdcpp/examples/audacious.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 Audacious
## Author: none
## License: Public Domain
## Depends: sh, audacious
## Examples:
# output in console:
# /me Audacious playing now: Rammstein - Sonne
# output in eiskaltdcpp chat:
# [10:57:03] * Ben_Vladen Audacious playing now: Rammstein - Sonne
au="$(audtool2 --current-song)"
echo "/me Audacious playing now: ${au}"
|