# HG changeset patch # User Christophe Lincoln # Date 1210877694 -7200 # Node ID 8c93080d5e71985bfdea819751bdba584961acbe # Parent dddbb53006351d43c4dfbccc063eea3bfc389c74 Add lxlauncher - We can all have a eeepc... and nice for a child diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/receipt Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="lxlauncher" +VERSION="0.1.6" +CATEGORY="x-window" +SHORT_DESC="LXDE desktop launcher." +DEPENDS="xorg-libX11 gtk+" +BUILD_DEPENDS="xorg-libX11-dev gtk+-dev" +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://lxde.org/" +WGET_URL="$SF_MIRROR/lxde/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + # Default icons to 32 + sed -i s/'120'/'100'/ src/lxlauncher.c + sed -i s/'48'/'32'/ src/lxlauncher.c + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/lxlauncher + cp -a $_pkg/usr/bin $fs/usr + # SliTaz home make config files + cp stuff/gtkrc $fs/usr/share/lxlauncher + cp -a stuff/background $fs/usr/share/lxlauncher + chown -R root.root $fs +} diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/accessibility_internet_wallpaper.jpg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/background/accessibility_internet_wallpaper.jpg Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,1 @@ +slitaz.jpg \ No newline at end of file diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/accessibility_learn_wallpaper.jpg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/background/accessibility_learn_wallpaper.jpg Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,1 @@ +slitaz.jpg \ No newline at end of file diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/accessibility_play_wallpaper.jpg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/background/accessibility_play_wallpaper.jpg Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,1 @@ +slitaz.jpg \ No newline at end of file diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/accessibility_settings_wallpaper.jpg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/background/accessibility_settings_wallpaper.jpg Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,1 @@ +slitaz.jpg \ No newline at end of file diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/accessibility_work_wallpaper.jpg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/background/accessibility_work_wallpaper.jpg Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,1 @@ +slitaz.jpg \ No newline at end of file diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/background/slitaz.jpg Binary file lxlauncher/stuff/background/slitaz.jpg has changed diff -r dddbb5300635 -r 8c93080d5e71 lxlauncher/stuff/gtkrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxlauncher/stuff/gtkrc Thu May 15 20:54:54 2008 +0200 @@ -0,0 +1,18 @@ +style "launcher-bg" { # for the background GtkWindow + bg[NORMAL] = "#222222" +} +style "launcher-fg" { # for the text size/color + font_name="Sans 11" + fg[NORMAL]="#222222" + fg[PRELIGHT]="#000000" +} +style "launcher-nb" = "launcher-fg" { #for the notebook + bg[NORMAL] = "#eeede9" + #bg[SELECTED] = "#3675AD" + fg[ACTIVE] = "#ffffff" #text color for non-active tabs + bg[ACTIVE] = "#222222" #the other non-active tabs +} +widget_class "*" style "launcher-nb" +widget_class "*" style "launcher-nb" +widget "GtkWindow" style "launcher-bg" +widget_class "**" style "launcher-fg"