dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

notebook-light.rc (1481B)


      1 ##########################################
      2 # NOTEBOOK (TABS)	
      3 ##########################################
      4 style "notebook" = "default"
      5 {
      6 
      7 xthickness		= 3
      8 ythickness		= 3
      9 
     10 bg[NORMAL]		= shade (1.0, @bg_color)	# selected tab entire
     11 bg[ACTIVE]		= shade (0.9, @bg_color)	# unselected tab
     12 
     13 GtkNotebook::tab-overlap				= -1
     14 GtkNotebook::tab-roundness				= 0
     15 
     16 engine "murrine" {
     17 contrast 		= 0.5
     18 gradient_shades 	= {1.25, 1.0, 1.0, 1.1}
     19 }
     20 }
     21 
     22 ##########################################
     23 # MATCHES	
     24 ##########################################
     25 widget_class "*<GtkNotebook>"    			style "notebook"
     26 widget_class "*<GtkNotebook>*<GtkEventBox>"     	style "notebook"
     27 widget_class "*<GtkNotebook>*<GtkDrawingArea>"  	style "notebook"
     28 widget_class "*<GtkNotebook>*<GtkLayout>"      	style "notebook"
     29 widget_class "*<GtkNotebook>*<GtkLabel>"		style "notebook"
     30 
     31 
     32 ##########################################
     33 # GEDIT FIX
     34 ##########################################
     35 style "gedit-scrolled"
     36 {	
     37 xthickness = 1
     38 ythickness = 1
     39 }
     40 style "gedit-notebook"
     41 {	
     42 xthickness = 3
     43 ythickness = 3
     44 }
     45 style "gedit-frame"
     46 {	
     47 xthickness = 1
     48 ythickness = 1
     49 engine "pixmap" {
     50 	image
     51           {
     52 			function		= SHADOW
     53 			recolorable		= TRUE
     54 	    		file			= ""
     55 			border			= { 5, 5, 5, 6}
     56 			stretch			= TRUE
     57           }
     58 }
     59 }
     60 widget_class "*Gedit*.<GtkFrame>*"  	   	style "gedit-frame" # STATUS
     61 widget_class "*Gedit*.<GtkScrolledWindow>"     	style "gedit-scrolled"
     62 widget_class "*Gedit*.<GtkNotebook>"     		style "gedit-notebook"