This file is indexed.

/usr/share/themes/Box1/gtk-2.0/menubar.rc is in lubuntu-artwork-12-10 0.45.

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
style "menubar" {
	engine "clearlooks" {
		hint = "menubar"
	}
}

style "menu" {
	xthickness = 2
	ythickness = 3
	bg[NORMAL] = @bg_color
	engine "clearlooks" {
		radius = 0.0
	}
}

style "menu_item" {
	xthickness = 2
	ythickness = 3
	fg[PRELIGHT]      = @selected_fg_color
	engine "pixmap"
	{
		image
		{
			function = BOX
			file = "images/menuitem.png"
			border = {3, 3, 3, 3}
			stretch	= TRUE
		}
		
		image 
		{
			function = HLINE
	 		file = "images/line-h.png"
			border = {0, 0, 0, 0}
			stretch = TRUE
		}
		image 
		{
			function = VLINE
	 		file = "images/line-v.png"
			border = {0, 0, 0, 0}
			stretch = TRUE
		}
	}
}

style "separator_menu_item" {
	xthickness = 1
	ythickness = 0
	GtkSeparatorMenuItem::horizontal-padding = 0
	GtkWidget::wide-separators = 0
	GtkWidget::separator-width = 1
	GtkWidget::separator-height = 7
}

# Wrokaroudn style for places where the text color is used instead of the fg color.
style "text_is_fg_color_workaround" {

	text[NORMAL]      = @fg_color
	text[PRELIGHT]    = @fg_color
	text[SELECTED]    = @selected_fg_color
	text[ACTIVE]      = @fg_color
	text[INSENSITIVE] = darker (@bg_color)
}

# Workaround style for menus where the text color is used instead of the fg color.
style "menuitem_text_is_fg_color_workaround" {

	text[NORMAL]      = @fg_color
	text[PRELIGHT]    = @selected_fg_color
	text[SELECTED]    = @selected_fg_color
	text[ACTIVE]      = @fg_color
	text[INSENSITIVE] = darker (@bg_color)
}

# Workaround style for places where the fg color is used instead of the text color.
style "fg_is_text_color_workaround" {

	fg[NORMAL]        = @text_color
	fg[PRELIGHT]      = @text_color
	fg[INSENSITIVE]   = darker (@bg_color)
}

widget_class "*<GtkMenuBar>*" style "menubar"
widget_class "*<GtkMenu>*" style "menu"
widget_class "*<GtkMenuItem>*" style "menu_item"
widget_class "*<GtkSeparatorMenuItem>*" style "separator_menu_item"