This file is indexed.

/usr/share/anyremote/cfg-data/Server-mode/all-in-one.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
%
% anyremote configuration file (Server-mode)
%

% STATUS unknown
% XTEST no
% SOUND no
% ENV no

GuiAppName=All-in-1
GuiAppType=Custom
GuiAppBinary=true
GuiAppProtocols=Server
GuiAppDesc=Manage a set of applications at once

[Protocol]=Server

(Init)=\
	Include($(CfgDir)/Utils/aliases-server.cfg);\
	Macro(SETUP_DEFAULT_POWER_MANAGEMENT);

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

ALLIN1MENU=\
	Set(menu,add,All-in-1);

All-in-1=\
    Macro(ALLIN1_CALLBACK1);

All-in-1($$)=\
    Macro(ALLIN1_CALLBACK1);
    
ALLIN1_CALLBACK1=\
    Set(popup,show,Loading...);\
    Macro(APP_QUIT);\
    Make(flush);\
    Include($(CfgDir)/Server-mode/all-in-one2.cfg);\
    Macro((Init));\
    Macro((Connect));\
    Set(popup,hide);\
    Make(mode,_ALL_IN_ONE_1_);

[Mode]=_ALL_IN_ONE_1_

(EnterMode)=\
	Set(popup,show,Please wait);\
	Macro(ALL_IN_ONE_LAYOUT);\
	Macro(SHOWSW);

ALL_IN_ONE_LAYOUT=\
	Set(layout,default);\
	Set(icons,All-in-one,\
		1,plus,2,none,3,none,\
		4,none,5,none,6,none,\
		7,none,8,none,9,none,\
		*,question,0,none,#,no);\
	Set(title,press 1 to select application);\
	Set(status,);\
	Set(menu,replace,PowerMgmt);

* *=Set(text,replace,Help,Press 1, then choose application to manage)

Cancel=\
    Make(exit);

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

Back($$)\
	=Set(list,close);\
	Macro(ALL_IN_ONE_LAYOUT);
	
SHOWSW=\
	Set(list,font,large);\
	ExecAndSet(list,replace,Applications,find $(CfgDir)/Server-mode -exec grep -l ALL_IN_ONE {} \;|grep -v .svn|xargs -i basename {}|grep -v all-in-one|sed 's/\.cfg//'|sed 's/$/,/'|sort);\
	Set(menu,replace,Select);\
	Set(popup,hide);

1=Set(popup,show,Please wait);\
	Macro(SHOWSW);
9=Macro(Cancel);

Push($$)  =Macro(SELECT);
Select($$)=Macro(SELECT);

SELECT=\
	Set(popup,show,Loading...);\
	Make(flush);\
	Set(title,);\
	Set(status,);\
	Include($(CfgDir)/Server-mode/$(Param).cfg);\
 	Macro((Init));\
 	Macro((Connect));\
  	Include($(CfgDir)/Server-mode/all-in-one.cfg);\
	Macro(ALLIN1MENU);\
	Set(popup,hide);
	
2=Make(none)
3=Make(none)
4=Make(none)
5=Make(none)
6=Make(none)
7=Make(none)
8=Make(none)
9=Make(none)

[ModeEnd]

[End]