diff options
Diffstat (limited to 'ubuntu_newwave_style-plugin.tcl')
-rw-r--r-- | ubuntu_newwave_style-plugin.tcl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ubuntu_newwave_style-plugin.tcl b/ubuntu_newwave_style-plugin.tcl new file mode 100644 index 0000000..bf9f492 --- /dev/null +++ b/ubuntu_newwave_style-plugin.tcl @@ -0,0 +1,10 @@ +# +# this plugin aims to make Pd's menubar and menus look like the Ubuntu New +# Wave theme. + +.menubar configure -borderwidth 0 -foreground white -background grey35 -font {Ubuntu 10} + +foreach menuname {file edit put find media window help} { + .menubar.$menuname configure -relief sunken -font {Ubuntu 10} -borderwidth 1 \ + -background "#f2f2f2" -activebackground "#F9B78D" +} |