This file is indexed.

/usr/share/afterstep/ucf/autoexec is in afterstep-data 2.2.12-11.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
############################################################################
# Menus
#
#------------------------------------------------------------------------
# Execute on startup :
#

# Workspace saving : 
#
# When AfterStep shuts down - it writes out the list of
# all running apps into function "WorkspaceState" and list of all running modules into 
# the function "WorkspaceModules" in special file, 
# normally ~/.afterstep/non-configurable/workspace_state.
# This will override the function below. The function below is only needed the first 
# time AfterStep starts, when workspace_state file does not exist.
# If you wish to hard-code which modules should be run and disregard this whole 
# workspace saving feature - then just comment out lines :
#	Function "I"    WorkspaceModules
#	Function "I"    WorkspaceState
# in Init and Restart Functions, and insert specific lines to start modules instead.
#

# this are modules that are being run by default if WorkspaceModules function is not 
# available in workspace_state:
Function "WorkspaceModules"
	Module  "I"     WinList
	Wait    "I"     WinList
	Module  "I"     MonitorWharf
	Wait    "I"     MonitorWharf
	Module  "I"     Wharf
	Wait    "I"     Wharf
	Module  "I"     Pager 0 3
	Module  "I"     WinTabs --myname TermTabs --pattern "*term*" --exclude-pattern "mc*" --exclude-pattern "Ice*" --geometry +5+100 --title "term tabs"
	Wait    "I"     WinTabs
EndFunction

Function "InitFunction"
#	Module  "I"     Animate
	Function "I"    WorkspaceState
	Function "I"    WorkspaceModules
	Module  "I"	Banner
	Exec	"I"	exec "$HOME/.afterstep/non-configurable/send_postcard.sh"
EndFunction

#------------------------------------------------------------------------
# Execute on restart :
#

Function "RestartFunction"
# remove the following line if minimizing memory usage (see above):
#	Module  "I"     Animate
	Function "I"    WorkspaceModules
EndFunction