This file is indexed.

/usr/share/audacious/VU_Meter_skins/Default/skin.cfg is in audacious-analog-vumeter-plugin-data 1.0.0-0.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
# --------------------------------------------
# Window size (width, height) 
# Allowed width:   10 - 800
# Allowed height:  10 - 800
# Default size:	  275 , 116
# --------------------------------------------
skin_size		= 275,116

# --------------------------------------------
# Exitbutton coordinates: 
# X , Y , Width , Height
# ( X,Y = Top left coordinates )
# --------------------------------------------
exit_button_pos		= 259,2, 270,11

# --------------------------------------------
# Configbutton coordinates:
# X , Y , Width , Height
# ( X,Y = Top left coordinates )
# --------------------------------------------
conf_button_pos		= 4,2, 13,11

# --------------------------------------------
# Images to be loaded
# 
# background_img = [Mandatory] 
# titlebar_on    = [Mandatory] plugin window selected
# titlebar_off   = [Mandatory] plugin window not selected
# --------------------------------------------
background_img	= background.png
titlebar_on_img	= titlebar_selected.png
titlebar_off_img= titlebar_notselected.png

###############################
# Module settings
###############################
#
# -> channel (int): 
#     0 = mono (default)
#     1 = left
#     2 = right
#
# -> enabled (int):
#     0 = no (default)
#     1 = yes 
#
# -> layer (int) [ 1-5 ]
#    * 5 = highest layer 
#
# -> position (int):
#     * top left position for image 
#     * starting point for needle (analogvu)
#
# -> type (string):
#     analogvu
#	* VU needle
#
#     image
#	* Static image
#	* Image can change according to dBfs values
#
###############################
#
# 'analogvu' specific settings:
# -> radius (int):
#
# -> width (int):
#
# -> color (hex , ex. #00FF00 )
#
# -> min_angle (float) [ -180.0 to 180.0 ]:
#
# -> max_angle (float) [ -180.0 to 180.0 ]:
#
# -> db_min (float) [ from -300.0 to 0.0 ]:
#
# 'image' specific settings
#
# -> db_min (float) [ from -300.0 to 0.0 ]:
#    * Min. dBfs value to show on_img
#
# -> db_max (float) [ from -300.0 to 0.0 ]:
#    * Max. dBfs value to show on_img
#
# -> on_img (string):
#    * Name of the file that is used when dvu is lit
#      (file must be inside current skin directory)
#
# -> off_img (string):
#    * Name of the file that is used when led is not lit
#      (file must be inside current skin directory)
#
# ---------------------------------------------------------
<module>
	type 	 = analogvu
	enabled  = 1
	channel  = 1
	position = 70,107
	layer	 = 2
	
	radius   = 65
	width    = 2
	color    = #000000
	min_angle= -45
	max_angle= 45
	db_min   = -35
</module>

<module>
	type 	 = analogvu
	enabled  = 1
	channel  = 2
	position = 209,107
	layer	 = 2

	radius   = 65
	width    = 2
	color    = #000000
	min_angle= -45
	max_angle= 45
	db_min    = -35
</module>

<module>
	type 	 = image
	enabled  = 1
	channel  = 1
	position = 64,82
	layer	 = 1

	db_min	 = -3
	db_max   = 0
	on_img   = led_on.png
	off_img  = led_off.png
</module>

<module>
	type 	 = image
	enabled  = 1
	channel  = 2
	position = 203,82
	layer	 = 1

	db_min	 = -3
	db_max   = 0
	on_img   = led_on.png
	off_img  = led_off.png
</module>