dotfiles

dot files in ~
git clone git://git.unixkoans.com/dotfiles.git
Log | Files | Refs

panel.rc (3087B)


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
#################### PANEL BACKGROUND #########################xx

style "panelbg"
{
  
 xthickness            			= 0
  ythickness            			= 0
bg_pixmap[NORMAL]					= "Panel/panel-bg.png"
#bg_pixmap[SELECTED]					= "Panel/panel-bg.png"
#bg_pixmap[INSENSITIVE]					= "Panel/panel-bg.png"
#bg_pixmap[PRELIGHT]					= "Panel/panel-bg.png"
#bg_pixmap[ACTIVE]					= "Panel/panel-bg.png"
}

class "*Panel*" style "panelbg"
widget_class "*notif*" style "panelbg"
widget_class "*Notif*" style "panelbg"
widget_class "*Tray*" style "panelbg"
widget_class "*tray*" style "panelbg"

##################### PANEL BUTTONS ###############################

style "panelbuttons"
{

  fg[NORMAL]        = "#ffffff" # very dark brown
  fg[PRELIGHT]      = "#000000" # text on buttons (hover)
  fg[ACTIVE]        = "#808080" # text on unfocused tabs
  fg[SELECTED]      = "#ffffff" # selected text on lists
  fg[INSENSITIVE]   = "#ffffff" # greyed "unused" text
 # bg[NORMAL]        = "#222222" #Panel bg color
  
  xthickness            			= 2
  ythickness            			= 1

	GtkWidget::focus_padding = 2

	 engine "pixmap" {
      
		image
		{
			function        		= BOX
			recolorable     		= TRUE
			state				= NORMAL
			file            		= "Panel/panelbutton1.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}
		
		image
		{
			function        		= BOX
			recolorable     		= TRUE
			state				= PRELIGHT
			file            		= "Panel/panelbutton2.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}

		image
		{
			function        		= BOX
			recolorable     		= TRUE
			shadow				= OUT
			state				= PRELIGHT
			file            		= "Panel/panelbutton1.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}
		
		image
		{
			function        		= BOX
			recolorable     		= TRUE
			shadow				= IN
			state				= PRELIGHT
			file            		= "Panel/panelbutton3.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}
		
		image
		{
			function        		= BOX
			recolorable     		= TRUE
			state				= ACTIVE
			file            		= "Panel/panelbutton3.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}  
		image
		{
			function        		= BOX
			recolorable     		= TRUE
			state				= INSENSITIVE
			file            		= "Panel/panelbutton2.png"
			border          		= { 0, 0, 0, 0 }
			stretch         		= TRUE
		}  


/*    		image
    		{
      		function			= HANDLE
      		recolorable			= TRUE
      		overlay_file			= "Panel/handle-v.png"
      		overlay_stretch	= FALSE
      		orientation			= VERTICAL
    		}
    		image
    		{
      		function			= HANDLE
      		overlay_file			= "Panel/handle-h.png"
      		overlay_stretch 		= FALSE
     		orientation			= HORIZONTAL
   		}
*/
	}

}

widget "*PanelWidget*" style "panelbuttons"
widget "*PanelApplet*" style "panelbuttons"
widget_class "*Panel*GtkToggleButton*" style "panelbuttons"
widget_class "*Panel*GtkButton" style "panelbuttons"
widget_class "*PanelButton*." style "panelbuttons"
widget_class "*Panel*" style "panelbg"