This file is indexed.

/usr/share/anyremote/cfg-data/Server-mode/exampleFont.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
%
% anyremote configuration file for  customization of GUI of Java client. (Server-mode)
%

% STATUS stable
% XTEST no
% SOUND no
% ENV no

GuiAppName=Main screen font configuration example
GuiAppType=Example
GuiAppBinary=true
GuiAppProtocols=Server
GuiAppDesc=Example of anyRemote Android/J2ME clients main screen font customization.

[Protocol]=Server

(Init)=\
	Include($(CfgDir)/Utils/aliases-server.cfg);
	
(Connect)=\
	Set(parameter,debug,on);\
	Set(title,Example of anyRemote client main screen font customization);\
	Set(icons,Icons Example,\
		1,minus,2,fit,3,plus,\
		4,prev,5,play,6,next,\
		7,fit,8,stop,9,fit,\
		*,question,0,fit,#,no);\
	Set(layout,default,ticker);\
	Macro(Default);\
	Macro(SET_MENU);

* *=Set(text,replace,Help,Use menu or buttons,\n 0 - set defaults: Medium-Plain-Proportional,\n1-3 -set size,\n4-6 - set style,\n 7-9 - set face.\n\nFont customization depends on device. \nAndroid client supports only set font size.);

SET_MENU=\
	Set(menu,replace,Small,Medium,Large,Plain,Bold,Italic,Underlined,Proportional,System,Monospace);

Back=\
	Set(text,close);\
	Macro(SET_MENU);

SET_FONT=\
	Set(font,$(fsize),$(fstyle),$(fface));\
	Set(status,$(fsize) - $(fstyle) - $(fface));

Default=\
	Make(var,fsize,by_value,medium);\
	Make(var,fstyle,by_value,plain);\
	Make(var,fface,by_value,proportional);\
	Macro(SET_FONT);

Small=       Make(var,fsize,by_value,small);Macro(SET_FONT);
Medium=      Make(var,fsize,by_value,medium);Macro(SET_FONT);
Large=       Make(var,fsize,by_value,large);Macro(SET_FONT);
Plain=       Make(var,fstyle,by_value,plain);Macro(SET_FONT);
Bold=        Make(var,fstyle,by_value,bold);Macro(SET_FONT);
Italic=      Make(var,fstyle,by_value,italic);Macro(SET_FONT);
Underlined=  Make(var,fstyle,by_value,underlined);Macro(SET_FONT);
Proportional=Make(var,fface,by_value,proportional);Macro(SET_FONT);
System=      Make(var,fface,by_value,system);Macro(SET_FONT);
Monospace=   Make(var,fface,by_value,monospace);Macro(SET_FONT);

0=Macro(Default);
1=Macro(Small);
2=Macro(Medium);
3=Macro(Large);

4=Macro(Bold);
5=Macro(Italic);
6=Macro(Underlined);
7=Macro(Proportional);
8=Macro(System);
9=Macro(Monospace);

#=Set(layout,default,noticker);


[End]