• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cinnamon/H03-May-2022-2,6792,265

emerald/H03-May-2022-508436

gtk-2.0/H03-May-2022-7,8706,756

gtk-3.0/H03-May-2022-11,5469,929

metacity-1/H03-May-2022-3,2782,816

unity/H03-May-2022-559487

xfwm4/H03-May-2022-643566

COPYINGH A D09-Sep-202133.9 KiB226135

Makefile.amH A D09-Sep-2021421 2520

Makefile.inH A D03-May-202220.8 KiB692607

READMEH A D09-Sep-20212.8 KiB8563

index.theme.inH A D09-Sep-2021209 1310

README

1The Menta theme comes with 3 different panel.rc files in
2gtk-2.0/widgets folder.
3
4-- panel.rc for light grey  panel background (default)
5-- panel-dark-grey.rc for a dark grey panel background
6-- panel-black.rc for a black panel background
7
8You simply edit the gtk-2.0/gtkrc file to choose your
9favorite background.
10Example for choose a black panel background.
11Edit those lines:
12
13### EXTERNAL FILES ###
14# This includes the file that handles the panels with a light grey background.
15include "widgets/panel.rc"
16# This includes the file that handles the panels with a dark grey background.
17#include "widgets/panel-dark-grey.rc"
18# This includes the file that handles the panels with a black background.
19#include "widgets/panel-black.rc"
20
21to
22
23### EXTERNAL FILES ###
24# This includes the file that handles the panels with a light grey background.
25#include "widgets/panel.rc"
26# This includes the file that handles the panels with a dark grey background.
27#include "widgets/panel-dark-grey.rc"
28# This includes the file that handles the panels with a black background.
29include "widgets/panel-black.rc"
30
31Than reload the theme.
32
33For getting a full transparancy panel edit this line in
34your choosen panel.rc
35
36# Disable (comment out) for normal panel backgrounds or to get a transparancy panel.
37  bg_pixmap[NORMAL] = "/Panel/panel-bg.png"
38
39change to
40
41# Disable (comment out) for normal panel backgrounds or to get a transparancy panel.
42#	bg_pixmap[NORMAL] = "/Panel/panel-bg.png"
43
44Note: maybe you have to change the text color, depends on you DE background
45in your choosen panel.rc edit:
46
47style "theme-panel-text"
48{
49	fg[NORMAL]	= "#000000"
50	fg[PRELIGHT]	= "#000000"
51	fg[ACTIVE]	= "#ffffff"
52	text[NORMAL]	= "#000000"
53	text[PRELIGHT]	= "#000000"
54	text[ACTIVE]	= "#ffffff"
55}
56
57
58
59#############################################
60#      CONTRIBUTORS AND SPECIAL THANKS      #
61#############################################
62
63Mattias aka lassekongo83 - http://lassekongo83.deviantart.com/
64Ubuntu art team (This theme wouldn't be possible without them.)
65Daniel Foré - http://danrabbit.deviantart.com/
66Sean Wilson - http://half-left.deviantart.com/
67Roberto - http://zentili.deviantart.com/
68Aaron - http://aaron-a-arts.deviantart.com/
69Ronjouch - http://ronjouch.deviantart.com/
70DeviantART linux/designer community
71Gnome-look.org
72All the application developers out there. Keep doing what you're doing and listen to the GUI designers. ;-)
73Anyone else I may have forgotten. :-)
74
75##############################
76#      ABOUT Menta THEME      #
77##############################
78
79The Menta theme was created by Wolfgang Ulbrich.
80The theme is released under the GPL licence. See the COPYING file for more information.
81
82Menta was inspired by the Zukitwo gtk theme by lassekongo83.
83
84
85