This file is indexed.

/usr/share/anyremote/cfg-data/Server-mode/rhythmbox.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
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
%
% anyremote configuration file for rhythmbox. (Server-mode)
%

% STATUS stable
% XTEST no
% SOUND mixer
% ENV no
% DEF_PLAYER
% ALL_IN_ONE 
% MEDIACENTER audio

GuiAppName=Rhythmbox
GuiAppBinary=rhythmbox
GuiAppRun= A=`ps -ef|grep rhythmbox|grep -v grep|grep -v anyremote|grep -v edit`; if [ "x$A" = "x" ]; then echo NOK; else echo OK; fi
GuiAppIcon=rhythmbox.png
GuiAppType=Application
GuiAppProtocols=Server
GuiAppDesc=Rhythmbox - The music management application for GNOME

[Protocol]=Server

(Init)=\
	Include($(CfgDir)/Utils/aliases-server.cfg);\
	Macro(SETUP_DEFAULT_MIXER);\
	Macro(TEST_DBUS_SEND);\
	Macro(TEST_QDBUS);\
	Make(var,player_name,by_value,Rhythmbox);\
	Include($(CfgDir)/Utils/aliases-server-player.cfg);\
	Make(var,cover_size,by_value,);\
	Make(var,rhythmbox_exec,by_value,\
	     dbus-send --type=method_call --dest=org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2);\
	Make(var,rhythmbox_layout,\
	     V=`$(CfgDir)/Utils/registry.sh $(TmpDir) get rhythmbox_layout`;\
	     if [ "x$V" = "x" ]; then echo "5x1"; else echo $V; fi);

(Exit)=\
	Exec($(CfgDir)/Utils/registry.sh $(TmpDir) set rhythmbox_layout $(rhythmbox_layout));

(Connect)=\
	Make(mode,rhythmbox_$(rhythmbox_layout));

[Mode]=rhythmbox_general

APP_QUIT=\
	Timer(RHYTHMBOX_TITLE,cancel);\
	Exec(qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Quit);

RUN_IF_NEED=\
	Exec($(CfgDir)/Utils/run-or-switch-to.sh rhythmbox);
	
RUN_OR_QUIT=\
	Macro(RHYTHMBOX_TIMER_CANCEL);\
	Make(var,whoami,id -u);\
	Exec(P=`pgrep -u $(whoami) rhythmbox`; \
	     if [ "x$P" = "x" ]; then rhythmbox & \
	     else qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Quit; fi)

PREV=\
	Exec($(rhythmbox_exec) org.mpris.MediaPlayer2.Player.Previous);\
	Macro(RHYTHMBOX_TITLE);

PLAY_ONLY=\
	Exec($(rhythmbox_exec) org.mpris.MediaPlayer2.Player.PlayPause);

PLAY=\
	Macro(PLAY_ONLY);\
	Macro(RHYTHMBOX_TIMER_START);
	
NEXT=\
	Exec($(rhythmbox_exec) org.mpris.MediaPlayer2.Player.Next);\
	Macro(RHYTHMBOX_TITLE);

RWD=\
	Exec(qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Seek -5000000);

FF=\
	Exec(qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Seek 5000000);
	
PAUSE=\
	Exec($(rhythmbox_exec) org.mpris.MediaPlayer2.Player.Pause);

STOP=\
	Macro(RHYTHMBOX_TIMER_CANCEL);\
	Exec($(rhythmbox_exec) org.mpris.MediaPlayer2.Player.Stop);

RHYTHMBOX_CHECK_TIMER=\
	Make(var,rhythmbox_status,\
	     qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlaybackStatus);\
	Make(var,timer_action,if [ "x$(rhythmbox_status)" = "xPlaying" ]; \
	                      then echo RHYTHMBOX_TIMER_START; else echo RHYTHMBOX_TIMER_CANCEL; fi);\
	Macro($(timer_action));

RHYTHMBOX_TIMER_START=\
	Macro(RHYTHMBOX_TITLE);\
	Timer(RHYTHMBOX_TITLE,$(UpdateTimeout),0);

RHYTHMBOX_TIMER_CANCEL=\
	Timer(RHYTHMBOX_TITLE,cancel);\
	Set(title,);\
	Set(status,);

APP_PLAY_STATUS=\
	Make(var,rhythmbox_status,qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlaybackStatus);\
	Make(var,app_status,if [ "x$(rhythmbox_status)" = "xPlaying" ]; then echo playing; else echo paused; fi);

Repeat=\
	Exec(P=`qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.LoopStatus`; \
		if [ "x$P" = "xNone" ]; \
		then \
		    qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.LoopStatus Playlist & \
		else \
		    qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.LoopStatus None & \
		fi);

RHYTHMBOX_TITLE_GENERAL=\
	Make(var,alb,qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Metadata|grep xesam:album:|sed "s/xesam:album: //");\
	Make(var,tit,qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Metadata|grep xesam:title:|sed "s/xesam:title: //");\
	Make(var,art,qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Metadata|grep xesam:artist:|sed "s/xesam:artist: //");\
	Set(title,$(alb) - $(tit));\
	Set(status,$(art));

Layout 3x4=\
	Make(mode,rhythmbox_3x4);
	
Layout 7x1=\
	Make(mode,rhythmbox_7x1);

Layout 5x1=\
	Make(mode,rhythmbox_5x1);
	
[ModeEnd]

[Mode]=rhythmbox_3x4 : rhythmbox_general, default_player

% (EnterMode) by Utils/aliases-server-player.cfg

APP_POST_SETUP=\
	Make(var,rhythmbox_layout,by_value,3x4);\
	Macro(RHYTHMBOX_CHECK_TIMER);

APP_MENU=\
	Set(menu,replace,Repeat,Layout 5x1,Layout 7x1,PowerMgmt);\
	Macro(ALLIN1MENU);\
	Macro(MEDIACENTER_MENU);

RHYTHMBOX_TITLE=\
	Macro(RHYTHMBOX_TITLE_GENERAL);

[ModeEnd]

[Mode]=rhythmbox_cover

RHYTHMBOX_TITLE=\
	Macro(RHYTHMBOX_TITLE_GENERAL);\
	Macro(APP_COVER);
 
APP_COVER=\
	Make(var,media_file,\
	         qdbus org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Metadata|\
	         grep xesam:url|\
	         sed "s/.*\/\/\//\//;s/'/'\\\''/g;s/\//\'\/\'/g;s/$/\'/g;s/^'\//\//;s/%20/ /g");\
	Macro(DEFAULT_COVER);

[ModeEnd]

[Mode]=rhythmbox_7x1 : rhythmbox_general, rhythmbox_cover, default_player_7x1

APP_MENU=\
	Set(menu,replace,Repeat,Mute,Next Cover,Previous Cover,Update Cover,Layout 3x4,Layout 5x1,Help,PowerMgmt);\
	Macro(ALLIN1MENU);\
	Macro(MEDIACENTER_MENU);

APP_POST_SETUP=\
	Make(var,rhythmbox_layout,by_value,7x1);\
	Macro(RHYTHMBOX_CHECK_TIMER);

[ModeEnd]

[Mode]=rhythmbox_5x1 : rhythmbox_general, rhythmbox_cover, default_player_5x1

APP_MENU=\
	Set(menu,replace,Repeat,Mute,Next Cover,Previous Cover,Update Cover,Layout 3x4,Layout 7x1,Help,PowerMgmt);\
	Macro(ALLIN1MENU);\
	Macro(MEDIACENTER_MENU);

APP_POST_SETUP=\
	Make(var,rhythmbox_layout,by_value,5x1);

APP_TITLE=\
	Macro(RHYTHMBOX_TITLE);

PLAY=\
	Macro(PLAY_ONLY);

[ModeEnd]

[End]