diff --git a/Makefile b/Makefile
index dd0b84f..b6464aa 100644
--- a/Makefile
+++ b/Makefile
@@ -91,6 +91,7 @@ install:
$(INSTALL) gdm3/10-desktop-base-settings $(DESTDIR)/usr/share/gdm/dconf/
# grub
+ $(INSTALL) grub/lines-grub.png $(DESTDIR)/usr/share/images/desktop-base/
$(INSTALL) grub/joy-grub.png $(DESTDIR)/usr/share/images/desktop-base/
$(INSTALL) grub/spacefun-grub.png $(DESTDIR)/usr/share/images/desktop-base/
$(INSTALL) grub/spacefun-grub-widescreen.png $(DESTDIR)/usr/share/images/desktop-base/
diff --git a/backgrounds/lines-wallpaper_1280_1024.svg b/backgrounds/lines-wallpaper_1280_1024.svg
new file mode 100644
index 0000000..6681470
--- /dev/null
+++ b/backgrounds/lines-wallpaper_1280_1024.svg
@@ -0,0 +1,192 @@
+
+
+
diff --git a/backgrounds/lines-wallpaper_1600_1200.svg b/backgrounds/lines-wallpaper_1600_1200.svg
new file mode 100644
index 0000000..1148297
--- /dev/null
+++ b/backgrounds/lines-wallpaper_1600_1200.svg
@@ -0,0 +1,192 @@
+
+
+
diff --git a/backgrounds/lines-wallpaper_1920x1080.svg b/backgrounds/lines-wallpaper_1920x1080.svg
new file mode 100644
index 0000000..a1a4490
--- /dev/null
+++ b/backgrounds/lines-wallpaper_1920x1080.svg
@@ -0,0 +1,192 @@
+
+
+
diff --git a/backgrounds/lines-wallpaper_1920x1200.svg b/backgrounds/lines-wallpaper_1920x1200.svg
new file mode 100644
index 0000000..8395fb0
--- /dev/null
+++ b/backgrounds/lines-wallpaper_1920x1200.svg
@@ -0,0 +1,192 @@
+
+
+
diff --git a/backgrounds/lines-wallpaper_2560x1080.svg b/backgrounds/lines-wallpaper_2560x1080.svg
new file mode 100644
index 0000000..bd04dd8
--- /dev/null
+++ b/backgrounds/lines-wallpaper_2560x1080.svg
@@ -0,0 +1,192 @@
+
+
+
diff --git a/debian/changelog b/debian/changelog
index cfa6dba..b4e1ace 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-desktop-base (7.0.4) UNRELEASED; urgency=low
+desktop-base (8.0.0~) UNRELEASED; urgency=low
[ Eshat Cakar ]
* Ksplash: Avoid crash on resolutions with 600 pixels of
@@ -8,7 +8,16 @@ desktop-base (7.0.4) UNRELEASED; urgency=low
* Accept patch from Ulrich Hansen, fix 10-desktop-base.js to point to
the symlink rather then hardcoding `joy'. (Closes: #690731)
- -- Paul Tagliamonte Sat, 20 Oct 2012 17:05:42 -0400
+ [ Yves-Alexis Perez ]
+ * Initial support for Lines theme by Juliette Belin.
+ - add the various ratio SVG wallpapers to backgrounds/
+ - debian/{postinst,prerm}: update alternatives priority to make Lines the
+ automatic/default one
+ - gdm3/background.svg updated to use Lines login screen
+ - grub/lines-grub.png added.
+ - Makefile: install lines-grub grub background.
+
+ -- Yves-Alexis Perez Sat, 11 Oct 2014 14:41:13 +0200
desktop-base (7.0.3) unstable; urgency=low
diff --git a/debian/postinst b/debian/postinst
index 5c2862f..7247b0e 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -19,15 +19,20 @@ if [ "$1" = "configure" -o "$1" = "abort-upgrade" ]; then
desktop-background \
/usr/share/images/desktop-base/$background $priority
done << EOF
-joy-wallpaper_1600x1200.svg 65
-joy-wallpaper_1280x1024.svg 65
-joy-wallpaper_1920x1080.svg 70
-joy-wallpaper_1920x1200.svg 65
-joy-inksplat-wallpaper_1920x1080.svg 65
-spacefun-wallpaper.svg 60
-spacefun-wallpaper-widescreen.svg 55
-moreblue-orbit-wallpaper.svg 50
-moreblue-orbit-wallpaper-widescreen.svg 50
+lines-wallpaper_1280_1024.svg 65
+lines-wallpaper_1600_1200.svg 65
+lines-wallpaper_1920x1080.svg 70
+lines-wallpaper_1920x1200.svg 65
+lines-wallpaper_2560x1080.svg 65
+joy-wallpaper_1600x1200.svg 60
+joy-wallpaper_1280x1024.svg 60
+joy-wallpaper_1920x1080.svg 60
+joy-wallpaper_1920x1200.svg 60
+joy-inksplat-wallpaper_1920x1080.svg 60
+spacefun-wallpaper.svg 50
+spacefun-wallpaper-widescreen.svg 50
+moreblue-orbit-wallpaper.svg 40
+moreblue-orbit-wallpaper-widescreen.svg 40
nightly-wallpaper.png 40
debian-blueish-wallpaper.svg 30
EOF
@@ -58,7 +63,8 @@ EOF
desktop-grub \
/usr/share/images/desktop-base/$background $priority
done << EOF
-joy-grub.png 20
+lines-grub.png 20
+joy-grub.png 15
spacefun-grub.png 15
spacefun-grub-widescreen.png 14
EOF
diff --git a/debian/prerm b/debian/prerm
index 7063aa9..5017a7a 100644
--- a/debian/prerm
+++ b/debian/prerm
@@ -6,6 +6,11 @@ set -e
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
# remove background alternatives
for background in \
+ lines-wallpaper_1280_1024.svg \
+ lines-wallpaper_1600_1200.svg \
+ lines-wallpaper_1920x1080.svg \
+ lines-wallpaper_1920x1200.svg \
+ lines-wallpaper_2560x1080.svg \
joy-wallpaper_1600x1200.svg \
joy-wallpaper_1600x1200.svg \
joy-wallpaper_1280x1024.svg \
@@ -34,6 +39,7 @@ if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
# remove grub alternatives
for background in \
+ lines-grub.png \
joy-grub.png \
spacefun-grub.png \
spacefun-grub-widescreen.png \
diff --git a/gdm3/background.svg b/gdm3/background.svg
index f0f2a61..bd12218 100644
--- a/gdm3/background.svg
+++ b/gdm3/background.svg
@@ -1,598 +1,240 @@
-
-
-
-
+
+
+
diff --git a/grub/lines-grub.png b/grub/lines-grub.png
new file mode 100644
index 0000000..c523b0f
Binary files /dev/null and b/grub/lines-grub.png differ