This file is indexed.

/usr/share/anyremote/cfg-data/AT-mode/aqualung.cfg is in anyremote-data 6.3.2-1.

This file is owned by root:root, with mode 0o644.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
%
% anyremote configuration file for Aqualung management (AT-mode) 
% prerequisites: amixer/pactl utility
%

% STATUS unknown
% TODO aqualung do not save playlists
% XTEST no
% SOUND mixer
% ENV no
% DEF_PLAYER   

GuiAppName=Aqualung
GuiAppBinary=aqualung
GuiAppRun= P=`ps -ef|grep aqualung|grep -v grep|grep -v anyremote|grep -v nedit`; if [ "x$P" = "x" ]; then echo NOK; else echo OK; fi
GuiAppIcon=aqualung.png
GuiAppType=Application
GuiAppProtocols=AT
GuiAppDesc=Aqualung is an advanced music player. It plays audio CDs, internet radio streams and podcasts as well as soundfiles in just about any audio format and has the feature of inserting no gaps between adjacent tracks. 

[Protocol]=AT

(Init)=\
	Include($(CfgDir)/Utils/aliases-at.cfg);\
	Macro(SETUP_DEFAULT_MIXER);\
	Make(var,TwoWayComm,by_value,false);\
	Macro(CHECK_RFCOMM_DEVICE);

(Connect)=\
	Make(mode,aqualung);

[Mode]=aqualung: default_player_at

% (EnterMode) by Utils/aliases-at.cfg

RUN_IF_NEED=\
	Exec(P=`ps auxc|grep aqualung`; if [ "x$P" = "x" ]; then aqualung -s3 -o alsa -R -r 48000 & fi);

RUN_OR_QUIT=\
	Exec(P=`ps auxc|grep aqualung`; if [ "x$P" = "x" ]; then aqualung -s3 -o alsa -R -r 48000 & else aqualung -Q; fi);

QUIT=\
	Exec(aqualung -Q);

% Volume control by Utils/aliases-at.cfg
%1=Exec(aqualung -V -2)
%2=Exec(aqualung -V m)
%3=Exec(aqualung -V 2)

PLAY=Exec(aqualung --play -N 0);
PREV=Exec(aqualung -B)
NEXT=Exec(aqualung -F)
STOP=Exec(aqualung -T);
PAUSE=Exec(aqualung -U);

% override
* *=Macro(DEFAULT_HELP_NO_FF_RWD);

[ModeEnd]

[End]