dotfiles

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

notebook-dark.rc (1499B)


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