This file is indexed.

/usr/bin/horgand is in horgand 1.14-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
#!/bin/sh
#
# Little script to set the audio driver of horgand
#
# Copyright (C) 2005 Free Ekanayaka <free@agnula.org>
#
# This script is licensed under the GNU GPL v2 - you can find a
# complete copy of the license under /usr/share/common-licenses/GPL-2

DRIVER="Alsa"
BINARY="/usr/lib/horgand/horgand"

if [ $(ps -C jackd| wc -l) -gt 1 ]; then
	DRIVER="Jack"
fi

cat <<EOF > ~/.Horgand
Not Connected
$DRIVER
/usr/share/horgand/Default.horeb
EOF

exec $BINARY $@