aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Paweł Gajc <tpg@mandriva.org>2008-04-16 17:49:40 +0000
committerTomasz Paweł Gajc <tpg@mandriva.org>2008-04-16 17:49:40 +0000
commit834eca7219ca783666dd4699ea17a37c43ea5ddd (patch)
tree80d23e882b21181a3274eb72f956a37cf36c5cc1
parente40289d32f960a05b810cea057ae300af652fb99 (diff)
downloadconfig-834eca7219ca783666dd4699ea17a37c43ea5ddd.tar
config-834eca7219ca783666dd4699ea17a37c43ea5ddd.tar.gz
config-834eca7219ca783666dd4699ea17a37c43ea5ddd.tar.bz2
config-834eca7219ca783666dd4699ea17a37c43ea5ddd.tar.xz
config-834eca7219ca783666dd4699ea17a37c43ea5ddd.zip
- add theme
o add background panel (image stolen from kde ;) o make transparent labels of icons on desktop
-rw-r--r--Makefile2
-rw-r--r--common/xfce4/theme/gtkrc26
-rw-r--r--common/xfce4/theme/mandriva-xfce-panel.pngbin0 -> 887 bytes
3 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ebcf792..0f71173 100644
--- a/Makefile
+++ b/Makefile
@@ -18,10 +18,12 @@ install:
-install -d $(DESTDIR)$(xfceconfdir)/xfce4/desktop
-install -d $(DESTDIR)$(xfceconfdir)/xfce4/notication-daemon-xfce
-install -d $(DESTDIR)$(xfceconfdir)/xfce4/panel
+ -install -d $(DESTDIR)$(xfceconfdir)/xfce4/theme
-install -d $(DESTDIR)$(xfceconfdir)/xfce4/volstatus
install -m 644 common/xfce4/desktop/* $(DESTDIR)$(xfceconfdir)/xfce4/desktop/
install -m 644 common/xfce4/notication-daemon-xfce/* $(DESTDIR)$(xfceconfdir)/xfce4/notication-daemon-xfce/
install -m 644 common/xfce4/panel/* $(DESTDIR)$(xfceconfdir)/xfce4/panel/
+ install -m 644 common/xfce4/theme/* $(DESTDIR)$(xfceconfdir)/xfce4/theme/
install -m 644 common/xfce4/volstatus/* $(DESTDIR)$(xfceconfdir)/xfce4/volstatus/
install -m 644 common/xfce4/*.rc $(DESTDIR)$(xfceconfdir)/xfce4
install -m 644 common/xfce4/*.xrdb $(DESTDIR)$(xfceconfdir)/xfce4
diff --git a/common/xfce4/theme/gtkrc b/common/xfce4/theme/gtkrc
new file mode 100644
index 0000000..d634924
--- /dev/null
+++ b/common/xfce4/theme/gtkrc
@@ -0,0 +1,26 @@
+style "xfce-panel"
+{
+# mandriva-xfce-panel.png is same as main panel height, which is 32 px
+bg_pixmap[NORMAL] = "mandriva-xfce-panel.png"
+}
+
+widget_class "*Panel*" style "xfce-panel"
+widget "*Panel*" style "xfce-panel"
+class "*Panel*" style "xfce-panel"
+
+widget "*PanelWidget*" style "xfce-panel"
+widget "*PanelApplet*" style "xfce-panel"
+class "*Tray*" style "xfce-panel"
+widget "*Tray*" style "xfce-panel"
+widget_class "*Mail*" style "xfce-panel"
+
+# make desktop's icons label transparent
+style "xfdesktop-icon-view" {
+
+XfdesktopIconView::label-alpha = 20
+
+base[NORMAL] = "#ffffff"
+
+fg[NORMAL] = "#ffffff"
+}
+widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
diff --git a/common/xfce4/theme/mandriva-xfce-panel.png b/common/xfce4/theme/mandriva-xfce-panel.png
new file mode 100644
index 0000000..99a8d11
--- /dev/null
+++ b/common/xfce4/theme/mandriva-xfce-panel.png
Binary files differ