From e9f2ba95e33857783075b33be93b5fffeb01ac26 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 13 Jan 2012 23:10:16 +0100 Subject: [PATCH] [releases/8] add sabayon-artwork-lxde dir --- releases/8/Makefile | 2 +- releases/8/sabayon-artwork-lxde/Makefile | 28 +++ .../lxdm/Sabayon/greeter.ui | 215 ++++++++++++++++++ .../8/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc | 51 +++++ .../lxdm/Sabayon/index.theme | 5 + .../lxdm/Sabayon/lang.png | Bin 0 -> 480 bytes .../lxdm/Sabayon/session.png | Bin 0 -> 291 bytes .../lxdm/Sabayon/shade.png | Bin 0 -> 81 bytes 8 files changed, 300 insertions(+), 1 deletion(-) create mode 100644 releases/8/sabayon-artwork-lxde/Makefile create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/index.theme create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/lang.png create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/session.png create mode 100644 releases/8/sabayon-artwork-lxde/lxdm/Sabayon/shade.png diff --git a/releases/8/Makefile b/releases/8/Makefile index 7bc1cfb..5b9f6d2 100644 --- a/releases/8/Makefile +++ b/releases/8/Makefile @@ -1,4 +1,4 @@ -SUBDIRS=sabayon-artwork-core sabayon-artwork-kde sabayon-artwork-gnome sabayon-artwork-extra sabayon-artwork-loo +SUBDIRS=sabayon-artwork-core sabayon-artwork-kde sabayon-artwork-gnome sabayon-artwork-extra sabayon-artwork-loo sabayon-artwork-lxde include make.include diff --git a/releases/8/sabayon-artwork-lxde/Makefile b/releases/8/sabayon-artwork-lxde/Makefile new file mode 100644 index 0000000..1d87c7f --- /dev/null +++ b/releases/8/sabayon-artwork-lxde/Makefile @@ -0,0 +1,28 @@ + +include ../make.include + +DIR_NAME := $(shell basename $(CURDIR)) +TARBALL_NAME := $(DIR_NAME)-$(VERSION).tar.xz +PKG_CATEGORY := x11-themes +PKG_PUSH_DIR = $(PUSH_DIR)/$(PKG_CATEGORY)/$(DIR_NAME) + +all: scripts cook + +scripts: + +cook: + tar -cJf ../$(TARBALL_NAME) \ + ../$(DIR_NAME) --exclude Makefile \ + --exclude .gitignore \ + --exclude *.tar.xz \ + --exclude *.sh + +clean: + rm -f ../$(TARBALL_NAME) + +push: all + ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \ + mkdir -p $(PKG_PUSH_DIR) + scp -P $(PUSH_PORT) ../$(TARBALL_NAME) \ + $(PUSH_USER)@$(PUSH_SERVER):$(PKG_PUSH_DIR)/ + diff --git a/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui new file mode 100644 index 0000000..0e127ba --- /dev/null +++ b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/greeter.ui @@ -0,0 +1,215 @@ + + + + + + False + + + True + vertical + + + True + 1 + 12 + 12 + True + + + False + 0 + + + + + True + 0.75 + 0 + 0 + + + True + vertical + + + + + + True + 0 + 0 + + + True + 12 + + + True + User: + + + False + False + 0 + + + + + True + True + + + + False + False + 1 + + + + + + + 1 + + + + + + + 1 + + + + + True + True + False + + + True + 6 + 12 + + + True + 6 + + + True + session.png + + + False + 0 + + + + + True + Desktop: + + + False + 1 + + + + + True + 0 + + + False + 2 + + + + + False + 0 + + + + + True + 6 + + + True + lang.png + + + False + 0 + + + + + True + Language: + + + False + 1 + + + + + True + 0 + + + False + 2 + + + + + False + 1 + + + + + Keyboard Layout: + + + False + 2 + + + + + + False + 3 + + + + + gtk-quit + True + True + True + none + True + + + False + end + 4 + + + + + + + False + 2 + + + + + + diff --git a/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc new file mode 100644 index 0000000..9da45fe --- /dev/null +++ b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/gtkrc @@ -0,0 +1,51 @@ +style "back" +{ + engine "pixmap" + { + image + { + function = FLAT_BOX + shadow=NONE + state = NORMAL + file="kgdm.png" + stretch=TRUE + detail = "base" + } + } +} + +style "time" +{ + fg[NORMAL]="#ffffff" + font_name="Sans 10" +} + +style "prompt" +{ + fg[NORMAL]="#ffffff" + font_name="Sans Bold 10" +} + +# Normally this won't paint an invisible event box, but we did some hacks in greeter.c. +style "bottom" +{ + font_name="Sans 10" + fg[NORMAL] = "#9E9D9B" + engine "pixmap" + { + image + { + function = FLAT_BOX + file="shade.png" + stretch=TRUE + detail="eventbox" + } + } +} + +widget "lxdm" style "back" +widget "lxdm.*.time" style "time" +widget "lxdm.*.prompt" style "prompt" +widget "lxdm.*.bottom_pane" style "bottom" +widget_class "GtkWindow.*.GtkEventBox.*." style "bottom" +widget_class "GtkWindow.*." style "prompt" diff --git a/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/index.theme b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/index.theme new file mode 100644 index 0000000..ae96914 --- /dev/null +++ b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/index.theme @@ -0,0 +1,5 @@ +[LXDM Theme] +Name=Sabayon +Comment=Sabayon Linux LXDM Theme +Author=Ian Whyman ; +License=CC-BY-SA 3.0 diff --git a/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/lang.png b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/lang.png new file mode 100644 index 0000000000000000000000000000000000000000..f2abef059de152abe82891dff0ce5ec8f13caef7 GIT binary patch literal 480 zcmV<60U!Q}P)A?RhWpw=29XssY@Xb7UEAaZC4LTGAm38|@f$JH39?m%zkFNh=cVx5K-#8X(qG;ig1HopB z7A_UMKmZ45H7{Tu?#3PzUf?$?VI4k+WlUofgXlv9O54E%X0eKhMG0F4qEI%a3Rz$T zTR21lNfDI9jh;V692;1G*P?*Y-Z$Y93fHJZHCzU47YO1OO1sA=6n5c;OYoo*VTAH6 z5WoeLkj9(%Jb+rvU=OcQqM&gBKhB`E6AZxvA0EVts2pENAYxj;hhy<&i(;v(u!1y{ zaD{aYqcYz!;Kn907#DjRmP@R~(C)+`EJ25UZos(+y%WzNr{98RvELt9LZc|qVqUaE2@PsZs-z&~Xxp}yCfe|QeOw4y<8!@PaM_?)Syilp28Z+^7%!S z=JEc+yRLq4ROmZF5Oav*8YvN$!80zgk0|<`x)DjG@cxB+;a|I!o0lm5zoh?RcYFgR W58=^DkzQW_00002qiiErNMblTTpNFlNvd-7Cy5T)42o(Q_Rf zraSO!gY)0gnJR}nNs>?mmJ;Na8$ye-1eY7^fC_Y>&(MQ95x{!;Im8xx+pmy*cxxFD zf+7?vUb1H&Fh pwinSa+=cSjap8YV_%Y>h=LMb-;AaQJwfF!4002ovPDHLkV1kxub=v>{ literal 0 HcmV?d00001 diff --git a/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/shade.png b/releases/8/sabayon-artwork-lxde/lxdm/Sabayon/shade.png new file mode 100644 index 0000000000000000000000000000000000000000..10f0129fb4f14e74d3e51700ca15cdf5b256f57d GIT binary patch literal 81 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@GyZm#X;^)4C~IxyaaN%JzX3_IAoI( bHn1}=I59YM@~&SD6lU;r^>bP0l+XkK6)_LP literal 0 HcmV?d00001