Blame SOURCES/0001-Revert-Remove-all-references-to-gnome-session-proper.patch

b31790
From 8ba34a8831751b0825cabbcfc552e14e3510af2b Mon Sep 17 00:00:00 2001
b31790
From: Ray Strode <rstrode@redhat.com>
b31790
Date: Wed, 8 Mar 2017 14:08:09 -0500
b31790
Subject: [PATCH 01/19] Revert "Remove all references to
b31790
 gnome-session-properties"
b31790
b31790
This reverts commit 0c6fe6ca14b65cdfc1cd039a5cc9cb83ea346d6b.
b31790
---
b31790
 configure.ac                                       |   8 +
b31790
 data/Makefile.am                                   |   5 +-
b31790
 data/icons/16x16/Makefile.am                       |  28 ++
b31790
 data/icons/16x16/session-properties.png            | Bin 0 -> 595 bytes
b31790
 data/icons/16x16/session-properties.svg            | 394 ++++++++++++++++
b31790
 data/icons/22x22/Makefile.am                       |  27 ++
b31790
 data/icons/22x22/session-properties.png            | Bin 0 -> 754 bytes
b31790
 data/icons/22x22/session-properties.svg            | 440 ++++++++++++++++++
b31790
 data/icons/24x24/Makefile.am                       |  25 +
b31790
 data/icons/24x24/session-properties.png            | Bin 0 -> 784 bytes
b31790
 data/icons/32x32/Makefile.am                       |  27 ++
b31790
 data/icons/32x32/session-properties.png            | Bin 0 -> 1109 bytes
b31790
 data/icons/32x32/session-properties.svg            | 490 ++++++++++++++++++++
b31790
 data/icons/48x48/Makefile.am                       |  25 +
b31790
 data/icons/48x48/session-properties.png            | Bin 0 -> 1839 bytes
b31790
 data/icons/Makefile.am                             |   3 +
b31790
 data/icons/scalable/Makefile.am                    |  25 +
b31790
 data/icons/scalable/session-properties.svg         | 515 +++++++++++++++++++++
b31790
 data/icons/symbolic/Makefile.am                    |  25 +
b31790
 .../icons/symbolic/session-properties-symbolic.svg |  28 ++
b31790
 data/session-properties.ui                         | 323 +++++++++++++
b31790
 doc/man/gnome-session.1                            |   2 +
b31790
 po/POTFILES.in                                     |   1 +
b31790
 23 files changed, 2390 insertions(+), 1 deletion(-)
b31790
 create mode 100644 data/icons/16x16/Makefile.am
b31790
 create mode 100644 data/icons/16x16/session-properties.png
b31790
 create mode 100644 data/icons/16x16/session-properties.svg
b31790
 create mode 100644 data/icons/22x22/Makefile.am
b31790
 create mode 100644 data/icons/22x22/session-properties.png
b31790
 create mode 100644 data/icons/22x22/session-properties.svg
b31790
 create mode 100644 data/icons/24x24/Makefile.am
b31790
 create mode 100644 data/icons/24x24/session-properties.png
b31790
 create mode 100644 data/icons/32x32/Makefile.am
b31790
 create mode 100644 data/icons/32x32/session-properties.png
b31790
 create mode 100644 data/icons/32x32/session-properties.svg
b31790
 create mode 100644 data/icons/48x48/Makefile.am
b31790
 create mode 100644 data/icons/48x48/session-properties.png
b31790
 create mode 100644 data/icons/Makefile.am
b31790
 create mode 100644 data/icons/scalable/Makefile.am
b31790
 create mode 100644 data/icons/scalable/session-properties.svg
b31790
 create mode 100644 data/icons/symbolic/Makefile.am
b31790
 create mode 100644 data/icons/symbolic/session-properties-symbolic.svg
b31790
 create mode 100644 data/session-properties.ui
b31790
b31790
diff --git a/configure.ac b/configure.ac
b31790
index ec41462e..f57dcf3d 100644
b31790
--- a/configure.ac
b31790
+++ b/configure.ac
b31790
@@ -343,60 +343,68 @@ if test $enable_ipv6 = yes; then
b31790
   dnl =================================================================
b31790
   dnl Now we would check for specific function like getaddrinfo.
b31790
   dnl =================================================================
b31790
   have_getaddrinfo=no
b31790
   if test $have_ipv6=yes; then
b31790
     AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
b31790
     if test $have_getaddrinfo != yes; then
b31790
       # getaddrinfo is not in the default libraries.  See if it's in some other.
b31790
       for lib in bsd socket inet; do
b31790
         AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes; break])
b31790
       done
b31790
     fi
b31790
     if test $have_getaddrinfo=yes; then
b31790
       AC_DEFINE(ENABLE_IPV6, 1, [Define if IPV6 is supported])
b31790
       have_full_ipv6=yes
b31790
     fi
b31790
   fi
b31790
 fi
b31790
 dnl ==============================================================================
b31790
 dnl End of IPv6 checks
b31790
 dnl ==============================================================================
b31790
 
b31790
 AC_CONFIG_FILES([
b31790
 Makefile
b31790
 doc/Makefile
b31790
 doc/dbus/Makefile
b31790
 doc/dbus/gnome-session.xml
b31790
 doc/man/Makefile
b31790
 data/Makefile
b31790
 data/org.gnome.SessionManager.gschema.xml
b31790
+data/icons/Makefile
b31790
+data/icons/16x16/Makefile
b31790
+data/icons/22x22/Makefile
b31790
+data/icons/24x24/Makefile
b31790
+data/icons/32x32/Makefile
b31790
+data/icons/48x48/Makefile
b31790
+data/icons/scalable/Makefile
b31790
+data/icons/symbolic/Makefile
b31790
 gnome-session/Makefile
b31790
 tools/Makefile
b31790
 po/Makefile.in
b31790
 ])
b31790
 AC_OUTPUT
b31790
 
b31790
 dnl ---------------------------------------------------------------------------
b31790
 dnl - Show summary
b31790
 dnl ---------------------------------------------------------------------------
b31790
 
b31790
 echo "
b31790
               gnome-session $VERSION
b31790
               `echo gnome-session $VERSION | sed "s/./=/g"`
b31790
 
b31790
         prefix:                   ${prefix}
b31790
         exec_prefix:              ${exec_prefix}
b31790
         libdir:                   ${libdir}
b31790
         bindir:                   ${bindir}
b31790
         sbindir:                  ${sbindir}
b31790
         sysconfdir:               ${sysconfdir}
b31790
         localstatedir:            ${localstatedir}
b31790
         datadir:                  ${datadir}
b31790
         source code location:     ${srcdir}
b31790
         compiler:                 ${CC}
b31790
         cflags:                   ${CFLAGS}
b31790
         Maintainer mode:          ${USE_MAINTAINER_MODE}
b31790
         Use *_DISABLE_DEPRECATED: ${enable_deprecation_flags}
b31790
 
b31790
         GConf support:            ${enable_gconf}
b31790
         Session tracking:         ${session_tracking}
b31790
diff --git a/data/Makefile.am b/data/Makefile.am
b31790
index d8c45573..413279a2 100644
b31790
--- a/data/Makefile.am
b31790
+++ b/data/Makefile.am
b31790
@@ -1,32 +1,35 @@
b31790
+SUBDIRS = icons
b31790
+
b31790
 uidir = $(pkgdatadir)
b31790
-ui_DATA =
b31790
+ui_DATA = \
b31790
+	session-properties.ui
b31790
 
b31790
 if BUILD_SESSION_SELECTOR
b31790
 ui_DATA += session-selector.ui
b31790
 endif
b31790
 
b31790
 hwcompatdir = $(pkgdatadir)
b31790
 hwcompat_DATA = hardware-compatibility
b31790
 
b31790
 xsessiondir = $(datadir)/xsessions
b31790
 xsession_in_files = gnome.desktop.in gnome-xorg.desktop.in
b31790
 
b31790
 if BUILD_SESSION_SELECTOR
b31790
 xsession_in_files += gnome-custom-session.desktop.in
b31790
 endif
b31790
 
b31790
 xsession_DATA = $(xsession_in_files:.desktop.in=.desktop)
b31790
 
b31790
 wayland_sessiondir = $(datadir)/wayland-sessions
b31790
 wayland_session_in_files = gnome.desktop.in
b31790
 wayland_session_DATA = $(wayland_session_in_files:.desktop.in=.desktop)
b31790
 
b31790
 sessiondir = $(datadir)/gnome-session/sessions
b31790
 session_in_in_files = gnome.session.desktop.in.in gnome-dummy.session.desktop.in.in
b31790
 session_in_files = $(session_in_in_files:.session.desktop.in.in=.session.desktop.in)
b31790
 session_DATA = $(session_in_files:.session.desktop.in=.session)
b31790
 
b31790
 %.session.desktop.in: %.session.desktop.in.in Makefile
b31790
 	$(AM_V_GEN)sed \
b31790
 		-e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
b31790
 		$< > $@
b31790
diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..d338f4c3
b31790
--- /dev/null
b31790
+++ b/data/icons/16x16/Makefile.am
b31790
@@ -0,0 +1,28 @@
b31790
+size = 16x16
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.png
b31790
+icons_SOURCE = session-properties.svg
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)	\
b31790
+	$(icons_SOURCE)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/16x16/session-properties.png b/data/icons/16x16/session-properties.png
b31790
new file mode 100644
b31790
index 0000000000000000000000000000000000000000..1367c20ae73a8b5e73d98f5dbcb6341cd0dc9ebe
b31790
GIT binary patch
b31790
literal 595
b31790
zcmV-Z0<8UsP)
b31790
z0RN!9r;`8x00(qQO+^RS0T2);6YR^V(*OVg^+`lQR5*>5liy2|Q5eTR&-=cox8c~2
b31790
zT2`*8E+SB&p~E)2@g|62&LHY4vde`2fUqAIbrnQ(5fMsI5DdE5O+<8)3nGl7Xd(&*
b31790
zq1IM`>7Zrq{n5poPS>=at8;js&-a|~^PD4B?+lHE1HU`?hY%420RcqF7tApudZ4MJ
b31790
zE8c~s=~abwC6-r?>+t&Bt7c<7Zxa4AL0x8@n8=B3Jba!bXKlr@-Brn-Gw*5G6{!mw
b31790
zx-k6mv!wxSGPJ6c%lz0AW=9{ddwPY@08FFo-*qhJvS~b}{D#-BFh)hqDJ?Mn;Sqax
b31790
z1UY%4pUYP+GX3;gE$H#$@o&f6A6pS{7YqD&bD!wJR(gAqhzK`t+(Oedlu{Umfl>;k
b31790
z6vbkZ$&Zr^-W$Se?b9@IZQiD@6K)K0JlTuXpCJG~pO5yocFvyeBealJnkzc7
b31790
z<jK6qZ0Nlbp->1Mt88Ig(;l`&`*@Z~@%7txx)TWoE?xL5*x>ck8IN-~-nr5P)6mg9
b31790
zK7!FRjAql!4BiEV-A4y%1ngf0M#hJkno0pnV_cr8VG@X(V$SseZVe2edwlqtk5MQt
b31790
z;yTunfU0^(A_Q7`2)1_DZ-59bhmMpjh+r#S^hDdv)kSOfYppnq%x;cY66;Uhwo3Ln
b31790
haR2i^x#&uN@CTAjj`{aKg8l#i002ovPDHLkV1gZB6^{S_
b31790
b31790
literal 0
b31790
HcmV?d00001
b31790
b31790
diff --git a/data/icons/16x16/session-properties.svg b/data/icons/16x16/session-properties.svg
b31790
new file mode 100644
b31790
index 00000000..4f7c37f2
b31790
--- /dev/null
b31790
+++ b/data/icons/16x16/session-properties.svg
b31790
@@ -0,0 +1,394 @@
b31790
+
b31790
+
b31790
+
b31790
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
b31790
+   xmlns:cc="http://web.resource.org/cc/"
b31790
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
b31790
+   xmlns:svg="http://www.w3.org/2000/svg"
b31790
+   xmlns="http://www.w3.org/2000/svg"
b31790
+   xmlns:xlink="http://www.w3.org/1999/xlink"
b31790
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
b31790
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
b31790
+   width="16"
b31790
+   height="16"
b31790
+   id="svg7854"
b31790
+   sodipodi:version="0.32"
b31790
+   inkscape:version="0.44+devel"
b31790
+   version="1.0"
b31790
+   sodipodi:docname="session-properties.svg"
b31790
+   sodipodi:docbase="/home/jimmac/gfx/ximian/art/icons/control-center/22x22"
b31790
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
b31790
+   sodipodi:modified="true">
b31790
+  
b31790
+     id="defs7856">
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5650">
b31790
+      
b31790
+         style="stop-color:#d3d7cf;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5652" />
b31790
+      
b31790
+         style="stop-color:#9ea795;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5654" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5642">
b31790
+      
b31790
+         style="stop-color:#eeeeec;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5644" />
b31790
+      
b31790
+         style="stop-color:#c3c3bc;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5646" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5634">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5636" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5638" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5598">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5600" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5602" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5716">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5718" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5720" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5700">
b31790
+      
b31790
+         style="stop-color:#e4e4e4;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5702" />
b31790
+      
b31790
+         id="stop5708"
b31790
+         offset="0.639386"
b31790
+         style="stop-color:#fefefe;stop-opacity:1" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1"
b31790
+         offset="0.79632628"
b31790
+         id="stop5710" />
b31790
+      
b31790
+         style="stop-color:#949494;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5704" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient3832">
b31790
+      
b31790
+         id="stop3834"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#ffffff;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop3836"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#e0e0e0;stop-opacity:1.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient4816">
b31790
+      
b31790
+         id="stop4818"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop4820"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:0.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5048">
b31790
+      
b31790
+         id="stop5050"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+      
b31790
+         style="stop-color:black;stop-opacity:1;"
b31790
+         offset="0.5"
b31790
+         id="stop5056" />
b31790
+      
b31790
+         id="stop5052"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5060"
b31790
+       inkscape:collect="always">
b31790
+      
b31790
+         id="stop5062"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:1;" />
b31790
+      
b31790
+         id="stop5064"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5664"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(-6.6526975e-2,0,0,3.5014969e-2,47.812816,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5667"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2505064,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5048"
b31790
+       id="linearGradient5670"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2635996,25.161837)"
b31790
+       x1="302.85715"
b31790
+       y1="366.64789"
b31790
+       x2="302.85715"
b31790
+       y2="609.50507" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5682"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.451927,0,0,1.3372801,-45.830775,7.6961475)"
b31790
+       x1="17.88068"
b31790
+       y1="11.072588"
b31790
+       x2="17.88068"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5684"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.4668451,0,0,1.8750592,-45.628571,3.9919211)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5700"
b31790
+       id="linearGradient5728"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="translate(0.5,0)"
b31790
+       x1="24"
b31790
+       y1="23"
b31790
+       x2="45.505005"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5716"
b31790
+       id="linearGradient5730"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       x1="40.745819"
b31790
+       y1="23"
b31790
+       x2="44.005268"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="filter5786">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.62861987"
b31790
+         id="feGaussianBlur5788" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5598"
b31790
+       id="linearGradient5604"
b31790
+       x1="25.627417"
b31790
+       y1="8"
b31790
+       x2="25.627417"
b31790
+       y2="4.7617435"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.3170731,0,0,0.1513709,0.3902442,0.3687103)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       x="-0.019480519"
b31790
+       width="1.0389611"
b31790
+       y="-0.14285713"
b31790
+       height="1.2857143"
b31790
+       id="filter5628">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.42857143"
b31790
+         id="feGaussianBlur5630" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5634"
b31790
+       id="linearGradient5640"
b31790
+       x1="25.313259"
b31790
+       y1="42.656792"
b31790
+       x2="25.313261"
b31790
+       y2="10.129107"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.3182502,0,0,0.3589572,0.3378627,-0.7556826)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5642"
b31790
+       id="linearGradient5648"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.3500965,0,0,0.4000001,-0.3752413,-0.8999998)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5650"
b31790
+       id="linearGradient5656"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.3500965,0,0,0.4000001,-0.3752413,-0.8999998)" />
b31790
+  </defs>
b31790
+  
b31790
+     id="base"
b31790
+     pagecolor="#ffffff"
b31790
+     bordercolor="#e0e0e0"
b31790
+     borderopacity="1"
b31790
+     gridtolerance="10000"
b31790
+     guidetolerance="10"
b31790
+     objecttolerance="10"
b31790
+     inkscape:pageopacity="0.0"
b31790
+     inkscape:pageshadow="2"
b31790
+     inkscape:zoom="1"
b31790
+     inkscape:cx="13.920386"
b31790
+     inkscape:cy="2.77771"
b31790
+     inkscape:document-units="px"
b31790
+     inkscape:current-layer="layer1"
b31790
+     width="16px"
b31790
+     height="16px"
b31790
+     inkscape:showpageshadow="false"
b31790
+     inkscape:window-width="1102"
b31790
+     inkscape:window-height="958"
b31790
+     inkscape:window-x="2117"
b31790
+     inkscape:window-y="82"
b31790
+     showgrid="false"
b31790
+     borderlayer="true" />
b31790
+  
b31790
+     id="metadata7859">
b31790
+    <rdf:RDF>
b31790
+      
b31790
+         rdf:about="">
b31790
+        <dc:format>image/svg+xml</dc:format>
b31790
+        
b31790
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
b31790
+        <dc:creator>
b31790
+          <cc:Agent>
b31790
+            <dc:title>Jakub Steiner</dc:title>
b31790
+          </cc:Agent>
b31790
+        </dc:creator>
b31790
+        <dc:source>http://jimmac.musichall.cz</dc:source>
b31790
+        
b31790
+           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
b31790
+        <dc:title>Gnome Session Properties</dc:title>
b31790
+      </cc:Work>
b31790
+      
b31790
+         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Distribution" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Notice" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/SourceCode" />
b31790
+      </cc:License>
b31790
+    </rdf:RDF>
b31790
+  </metadata>
b31790
+  
b31790
+     inkscape:label="Layer 1"
b31790
+     inkscape:groupmode="layer"
b31790
+     id="layer1">
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect4585"
b31790
+       width="15.054147"
b31790
+       height="14.931664"
b31790
+       x="0.50000006"
b31790
+       y="0.56833637"
b31790
+       rx="0.80243546"
b31790
+       ry="0.85151595" />
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:url(#linearGradient5648);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5656);stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect5556"
b31790
+       width="15.054147"
b31790
+       height="1.9999999"
b31790
+       x="0.5"
b31790
+       y="0.50000006"
b31790
+       rx="0.80249435"
b31790
+       ry="0.91688365" />
b31790
+    
b31790
+       ry="0"
b31790
+       rx="0"
b31790
+       y="0.90594715"
b31790
+       x="1.5"
b31790
+       height="13.594053"
b31790
+       width="12.999999"
b31790
+       id="rect5632"
b31790
+       style="opacity:0.52571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5640);stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+    
b31790
+       id="g5724"
b31790
+       transform="matrix(0.4041599,0,0,0.4075968,-2.9205921,-0.7107676)">
b31790
+      
b31790
+         sodipodi:nodetypes="cccccccccc"
b31790
+         id="path5698"
b31790
+         d="M 11.121851,22.804198 L 23.199467,12.216748 L 23.199467,17.747078 L 36.633956,17.747078 C 44.741684,17.747078 45.5,23.213443 45.5,23.213443 L 45.5,36.603439 C 45.5,36.603439 43.628297,27.513864 36.758956,27.513864 L 23.199467,27.513864 L 23.199467,33 L 11.121851,22.804198 z "
b31790
+         style="fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:2.46381474px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
b31790
+    </g>
b31790
+    
b31790
+       ry="0.17072184"
b31790
+       rx="0.35760722"
b31790
+       y="1.0498793"
b31790
+       x="1.5"
b31790
+       height="0.45411268"
b31790
+       width="13"
b31790
+       id="rect4627"
b31790
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5604);stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+  </g>
b31790
+</svg>
b31790
diff --git a/data/icons/22x22/Makefile.am b/data/icons/22x22/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..ae4931c2
b31790
--- /dev/null
b31790
+++ b/data/icons/22x22/Makefile.am
b31790
@@ -0,0 +1,27 @@
b31790
+size = 22x22
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.png
b31790
+icons_SOURCE = session-properties.svg
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)	\
b31790
+	$(icons_SOURCE)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/22x22/session-properties.png b/data/icons/22x22/session-properties.png
b31790
new file mode 100644
b31790
index 0000000000000000000000000000000000000000..12225ee3c2abb7f1a4be7bb77743514cde5d08fe
b31790
GIT binary patch
b31790
literal 754
b31790
zcmV
b31790
z0RN!9r;`8x00(qQO+^RS0T2)kIanL5EdT%llu1NER5*>*lgmp~Q5?rV=iJ8}9cNN|
b31790
z*^7v%7U@C>t-#cZ78aG(u1!U>>3?Wdi-=qVy&!035MdZp6cK`;6=)9%L}*o1+QXS<
b31790
zrhDh!x%ag2IgaI2wCD>54nNNCbAIQ0en0p}5&)+zUwyJH?$rySe=k`GKp@08Dn#(^
b31790
zvwipEi6gtkmW~@G9owqD*VWWd-ZLw?sM;o^8GQX*Z?0{SrZ<G$yTr?>k|A?`$gdTK
b31790
zaDO0~126$@_KpOjxkYBE3$4&W4q=!@f;D|lKLr4CGH98F
b31790
z5d_dVkHoX<_^FYi!S-BW%a{&^zDr`Tlct8+qM_rA=~qvgH~EavcSsC$(za(8JGbwk
b31790
zzrUAc-}!l=0TQ=zHBzq
b31790
z<2YQnbdk3oUz&MV*rw#mi(4qeXM0NvuIu7B4(W87R4PR(l_HbL;JPl^Y!=`534(wy
b31790
z4AEMnlwxyz11dKv3p}o<*+<F==)T>JQi}5Oa^mqgu~>{)EJidMMJYuj62Y=848xeJ
b31790
z7{D+L1iH`)Q^hH(Zs*Q}TLfW9+rIrAJ$4v9M}N;&M3t~^?Yf_TUfIGGi0XFkJ?vs^
b31790
zYz(b6)`qru!Jd<3_)R}Lm(2&;GX^ADxg2T^@_4WdfT}ec=LG{SSQ+D0UpJ69dHDkp
b31790
zt*9bia{#F-ih=@c+|
b31790
z)^C+wE}*q;S<#TWl+1VtbO<ak6Ca1Zdg)J{r?2)L(g@>kzyj@OzrDW#WF~*C6j%({
b31790
kfc1x54{(9eiT!`39~bB4p9yeF3;+NC07*qoM6N<$f(k-YiU0rr
b31790
b31790
literal 0
b31790
HcmV?d00001
b31790
b31790
diff --git a/data/icons/22x22/session-properties.svg b/data/icons/22x22/session-properties.svg
b31790
new file mode 100644
b31790
index 00000000..1d0afda2
b31790
--- /dev/null
b31790
+++ b/data/icons/22x22/session-properties.svg
b31790
@@ -0,0 +1,440 @@
b31790
+
b31790
+
b31790
+
b31790
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
b31790
+   xmlns:cc="http://web.resource.org/cc/"
b31790
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
b31790
+   xmlns:svg="http://www.w3.org/2000/svg"
b31790
+   xmlns="http://www.w3.org/2000/svg"
b31790
+   xmlns:xlink="http://www.w3.org/1999/xlink"
b31790
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
b31790
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
b31790
+   width="22"
b31790
+   height="22"
b31790
+   id="svg7854"
b31790
+   sodipodi:version="0.32"
b31790
+   inkscape:version="0.44+devel"
b31790
+   version="1.0"
b31790
+   sodipodi:docname="session-properties.svg"
b31790
+   sodipodi:docbase="/home/jimmac/gfx/ximian/art/icons/control-center/32x32"
b31790
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
b31790
+   sodipodi:modified="true">
b31790
+  
b31790
+     id="defs7856">
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5650">
b31790
+      
b31790
+         style="stop-color:#d3d7cf;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5652" />
b31790
+      
b31790
+         style="stop-color:#9ea795;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5654" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5642">
b31790
+      
b31790
+         style="stop-color:#eeeeec;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5644" />
b31790
+      
b31790
+         style="stop-color:#c3c3bc;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5646" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5634">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5636" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5638" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5598">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5600" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5602" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5716">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5718" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5720" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5700">
b31790
+      
b31790
+         style="stop-color:#e4e4e4;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5702" />
b31790
+      
b31790
+         id="stop5708"
b31790
+         offset="0.639386"
b31790
+         style="stop-color:#fefefe;stop-opacity:1" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1"
b31790
+         offset="0.79632628"
b31790
+         id="stop5710" />
b31790
+      
b31790
+         style="stop-color:#949494;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5704" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient3832">
b31790
+      
b31790
+         id="stop3834"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#ffffff;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop3836"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#e0e0e0;stop-opacity:1.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient4816">
b31790
+      
b31790
+         id="stop4818"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop4820"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:0.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5048">
b31790
+      
b31790
+         id="stop5050"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+      
b31790
+         style="stop-color:black;stop-opacity:1;"
b31790
+         offset="0.5"
b31790
+         id="stop5056" />
b31790
+      
b31790
+         id="stop5052"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5060"
b31790
+       inkscape:collect="always">
b31790
+      
b31790
+         id="stop5062"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:1;" />
b31790
+      
b31790
+         id="stop5064"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5664"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(-6.6526975e-2,0,0,3.5014969e-2,47.812816,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5667"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2505064,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5048"
b31790
+       id="linearGradient5670"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2635996,25.161837)"
b31790
+       x1="302.85715"
b31790
+       y1="366.64789"
b31790
+       x2="302.85715"
b31790
+       y2="609.50507" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5682"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.451927,0,0,1.3372801,-45.830775,7.6961475)"
b31790
+       x1="17.88068"
b31790
+       y1="11.072588"
b31790
+       x2="17.88068"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5684"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.4668451,0,0,1.8750592,-45.628571,3.9919211)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5700"
b31790
+       id="linearGradient5728"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="translate(0.5,0)"
b31790
+       x1="24"
b31790
+       y1="23"
b31790
+       x2="45.505005"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5716"
b31790
+       id="linearGradient5730"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       x1="40.745819"
b31790
+       y1="23"
b31790
+       x2="44.005268"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="filter5786">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.62861987"
b31790
+         id="feGaussianBlur5788" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5598"
b31790
+       id="linearGradient5604"
b31790
+       x1="25.627417"
b31790
+       y1="8"
b31790
+       x2="25.627417"
b31790
+       y2="4.7617435"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.4311139,0,0,0.1911915,0.6155053,1.0660639)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       x="-0.019480519"
b31790
+       width="1.0389611"
b31790
+       y="-0.14285713"
b31790
+       height="1.2857143"
b31790
+       id="filter5628">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.42857143"
b31790
+         id="feGaussianBlur5630" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5634"
b31790
+       id="linearGradient5640"
b31790
+       x1="25.313259"
b31790
+       y1="42.656792"
b31790
+       x2="25.313261"
b31790
+       y2="10.129107"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.4161734,0,0,0.4097743,0.9802818,8.45901e-2)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5642"
b31790
+       id="linearGradient5648"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.4415111,0,0,0.3917361,0.3659716,0.1289237)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5650"
b31790
+       id="linearGradient5656"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.4415111,0,0,0.3917361,0.3659716,0.1289237)" />
b31790
+  </defs>
b31790
+  
b31790
+     id="base"
b31790
+     pagecolor="#ffffff"
b31790
+     bordercolor="#e0e0e0"
b31790
+     borderopacity="1"
b31790
+     gridtolerance="10000"
b31790
+     guidetolerance="10"
b31790
+     objecttolerance="10"
b31790
+     inkscape:pageopacity="0.0"
b31790
+     inkscape:pageshadow="2"
b31790
+     inkscape:zoom="1"
b31790
+     inkscape:cx="21.888246"
b31790
+     inkscape:cy="13.442716"
b31790
+     inkscape:document-units="px"
b31790
+     inkscape:current-layer="layer1"
b31790
+     width="22px"
b31790
+     height="22px"
b31790
+     inkscape:showpageshadow="false"
b31790
+     inkscape:window-width="1102"
b31790
+     inkscape:window-height="958"
b31790
+     inkscape:window-x="2117"
b31790
+     inkscape:window-y="82"
b31790
+     showgrid="false"
b31790
+     borderlayer="true" />
b31790
+  
b31790
+     id="metadata7859">
b31790
+    <rdf:RDF>
b31790
+      
b31790
+         rdf:about="">
b31790
+        <dc:format>image/svg+xml</dc:format>
b31790
+        
b31790
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
b31790
+        <dc:creator>
b31790
+          <cc:Agent>
b31790
+            <dc:title>Jakub Steiner</dc:title>
b31790
+          </cc:Agent>
b31790
+        </dc:creator>
b31790
+        <dc:source>http://jimmac.musichall.cz</dc:source>
b31790
+        
b31790
+           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
b31790
+        <dc:title>Gnome Session Properties</dc:title>
b31790
+      </cc:Work>
b31790
+      
b31790
+         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Distribution" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Notice" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/SourceCode" />
b31790
+      </cc:License>
b31790
+    </rdf:RDF>
b31790
+  </metadata>
b31790
+  
b31790
+     inkscape:label="Layer 1"
b31790
+     inkscape:groupmode="layer"
b31790
+     id="layer1">
b31790
+    
b31790
+       id="g5672"
b31790
+       style="opacity:0.53714288"
b31790
+       transform="matrix(0.4617581,0,0,0.6375656,-4.8917036e-2,-9.3215937)">
b31790
+      
b31790
+         y="38"
b31790
+         x="7.7196383"
b31790
+         height="8.5036354"
b31790
+         width="32.123024"
b31790
+         id="rect4173"
b31790
+         style="opacity:1;color:#000000;fill:url(#linearGradient5670);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccc"
b31790
+         id="path5058"
b31790
+         d="M 39.842663,38.000295 C 39.842663,38.000295 39.842663,46.503461 39.842663,46.503461 C 43.268636,46.519469 48.125002,44.598333 48.125,42.25133 C 48.125,39.904328 44.30187,38.000295 39.842663,38.000295 z "
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5664);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         d="M 7.7196385,38.000295 C 7.7196385,38.000295 7.7196385,46.503461 7.7196385,46.503461 C 4.2936621,46.519469 -0.56270146,44.598333 -0.56270146,42.25133 C -0.56270146,39.904328 3.2604286,38.000295 7.7196385,38.000295 z "
b31790
+         id="path5018"
b31790
+         sodipodi:nodetypes="cccc" />
b31790
+    </g>
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect4585"
b31790
+       width="18.984974"
b31790
+       height="16.920202"
b31790
+       x="1.4697493"
b31790
+       y="1.5550299"
b31790
+       rx="1.0119615"
b31790
+       ry="0.96491748" />
b31790
+    
b31790
+       ry="2.2922091"
b31790
+       rx="2.2922091"
b31790
+       y="4.3838844"
b31790
+       x="2.5"
b31790
+       height="5"
b31790
+       width="43"
b31790
+       id="rect5606"
b31790
+       style="opacity:0.27999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.34036613;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5628);enable-background:accumulate"
b31790
+       transform="matrix(0.4281431,0,0,0.4264257,0.8323174,7.5101245e-3)" />
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:url(#linearGradient5648);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5656);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect5556"
b31790
+       width="18.984974"
b31790
+       height="1.9586804"
b31790
+       x="1.4697493"
b31790
+       y="1.5"
b31790
+       rx="1.0120357"
b31790
+       ry="0.89794111" />
b31790
+    
b31790
+       ry="0.32291412"
b31790
+       rx="0.31787637"
b31790
+       y="1.9814546"
b31790
+       x="2.5"
b31790
+       height="15.518545"
b31790
+       width="16.999998"
b31790
+       id="rect5632"
b31790
+       style="opacity:0.52571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5640);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+    
b31790
+       id="g5724"
b31790
+       transform="matrix(0.4754857,0,0,0.4735784,-1.225003,-0.5239366)">
b31790
+      
b31790
+         style="opacity:0.3142857;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5786)"
b31790
+         d="M 10.5,25.474874 L 20.5,15.474874 L 20.5,21.005204 L 40.5,21.005204 C 44.35508,21.005204 45.58678,20.95144 45.5,23 L 45.5,33 C 45.5,33 43.070425,29.988738 40.625,29.988738 L 20.5,29.988738 L 20.5,35.474874 L 10.5,25.474874 z "
b31790
+         id="path5738"
b31790
+         sodipodi:nodetypes="cccccccccc" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccccccccc"
b31790
+         id="path5698"
b31790
+         d="M 10.5,23.279959 L 20.5,13.559918 L 20.5,19.090248 L 40.5,19.090248 C 44.35508,19.090248 45.58678,21.511358 45.5,23.559918 L 45.5,33 C 45.5,33 45.096959,27.513864 40.625,27.513864 L 20.5,27.513864 L 20.5,33 L 10.5,23.279959 z "
b31790
+         style="fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:2.10734344px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
b31790
+      
b31790
+         d="M 18.125,18.8125 L 13.9375,23 L 18.09375,27.15625 C 18.269985,25.965284 19.296092,25.085764 20.5,25.09375 L 40.625,25.09375 C 41.541275,25.09375 42.352276,25.289567 43.09375,25.59375 L 43.09375,23 C 43.093144,22.968753 43.093144,22.937497 43.09375,22.90625 C 43.114981,22.405075 42.966583,21.933517 42.6875,21.625 C 42.408417,21.316483 41.921956,20.9375 40.5,20.9375 L 20.5,20.9375 C 19.287205,20.925631 18.271136,20.016516 18.125,18.8125 z "
b31790
+         inkscape:href="#path5698"
b31790
+         id="path5712"
b31790
+         style="opacity:0.62857145;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5730);stroke-width:2.10734344px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
b31790
+         xlink:href="#path5698"
b31790
+         inkscape:original="M 20.5 13.5625 L 10.5 23.28125 L 20.5 33 L 20.5 27.5 L 40.625 27.5 C 45.096959 27.5 45.5 33 45.5 33 L 45.5 23.5625 C 45.58678 21.51394 44.35508 19.09375 40.5 19.09375 L 20.5 19.09375 L 20.5 13.5625 z "
b31790
+         inkscape:radius="-2.4160075"
b31790
+         sodipodi:type="inkscape:offset" />
b31790
+    </g>
b31790
+    
b31790
+       ry="0.21563303"
b31790
+       rx="0.48622662"
b31790
+       y="1.9264256"
b31790
+       x="2.1244035"
b31790
+       height="0.57357448"
b31790
+       width="17.675669"
b31790
+       id="rect4627"
b31790
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5604);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+  </g>
b31790
+</svg>
b31790
diff --git a/data/icons/24x24/Makefile.am b/data/icons/24x24/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..8c28888a
b31790
--- /dev/null
b31790
+++ b/data/icons/24x24/Makefile.am
b31790
@@ -0,0 +1,25 @@
b31790
+size = 24x24
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.png
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/24x24/session-properties.png b/data/icons/24x24/session-properties.png
b31790
new file mode 100644
b31790
index 0000000000000000000000000000000000000000..ac81c7ad3b604a056ed02c86bcb2db97c78f4aed
b31790
GIT binary patch
b31790
literal 784
b31790
zcmV+r1MmEaP)
b31790
z0RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru*8va^BL?Mqi97%R0-Z@j
b31790
zK~zY`?Um0
b31790
zXlD?S7*rGyf}j;>KPZr(RZ;%TnP#T<=Dm6Ew$M?>9B0Z^(18c%aCzU)J?GqWFZ}B!
b31790
zvd+01w_dJ}IQ2rPKNAoF5C}0P=Og$s9(Z*2%!z|DfSs4`mR#Ob^|P+FelBy4NYVQQ
b31790
z6oVh$s2$rHGyns@86wbI>11TdkWpA{ar1q6G7!&XV<YR_>mBh%Gb;>V{azyFWe~bi
b31790
zBtX&kYRt>V+T2Cc5DSRAjJ&vAbOxr8Bbf^b%v)3$huG^oxQUUX0fEH;ral|`u1##P
b31790
zlg5T^f7An0&#i*7P
b31790
zz#Tdcx6stsh;7?kyl`pyyo07`2qDlkE$0(LU|AMduV3Ty@H-=K4<_DrA$6C%&CS@h
b31790
zjb&LRlSvYZ1c^j~R4RpS+oaQJT-U|(Jbd3rDTS1h9rX>!%&3;P2j#V`BrK2a2i-_1
b31790
ziAJMDA`!yjFyU~RP$-0yl3*~1X`1M|K9d1}uImU?{t_87LTODq51)47`95u}M>u)v
b31790
zI7$`1LV~h{>P^*!n_RklEuyBK$ItFFIXQ_^3Uf
b31790
z9lRL44?xw%twkNvvUOqJ_jTu)gLy*|Dz73^dlXHU7d;1Cx9{d#sL9CzOnmGqK`9Z?
b31790
zwcmbN7G1@f-KUEN$Y6l9QK0~HrbMx!=dyD1F3rh!wA8I$(rp?~IS7;wlmX*YfZ?I<
b31790
zPI9dC{H>m23ZXCU1ygSN$Jd)cYW_>H3|I*Svg!SWIe-m}PW%6@u>Ar9X6B0{qPS!L
b31790
O0000
b31790
b31790
literal 0
b31790
HcmV?d00001
b31790
b31790
diff --git a/data/icons/32x32/Makefile.am b/data/icons/32x32/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..bf4b9711
b31790
--- /dev/null
b31790
+++ b/data/icons/32x32/Makefile.am
b31790
@@ -0,0 +1,27 @@
b31790
+size = 32x32
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.png
b31790
+icons_SOURCE = session-properties.svg
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)	\
b31790
+	$(icons_SOURCE)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/32x32/session-properties.png b/data/icons/32x32/session-properties.png
b31790
new file mode 100644
b31790
index 0000000000000000000000000000000000000000..25df9d3696b4339cfba5d18afdc8ad2662c6eb01
b31790
GIT binary patch
b31790
literal 1109
b31790
zcmV-b1giUqP)
b31790
z0RN!9r;`8x00(qQO+^RS0T2)e0R8dJuK)l8_en%SR9J=OmfuetRTRfRcV-8W*|HU(
b31790
z6x#(%lZrlQV~L4xf
b31790
z!Pwe_A2k6&DzFSJ%
b31790
zw<4SJ-Xs-UnYX^u)^SrdXO^VX=ifci>jOCUOrWQ}?uexLlr3kGN|uWD_;#<|u5RK)
b31790
zY+`Mgak=WxnI0e^pt9nCR9kxlwNy<@njb{gPyyI%>YIck8xnvI;QB91>{F*GDcX}0
b31790
z$O=7X^4Y)wNdc3yI{oAS4tWAH_omhWkdh{;@Y3f^@8I$|jizODC^81o)xt8D1ehy5
b31790
zUbp}NqN_AFHy6a;+uIAJ+5J2P_+$w%lN)C)4`SPPPQ*e8&b;$_&O#Gh=>i<8Y};ny
b31790
z!CYPfa`jE;N*#fmGFq0!x7}~;nj{{NqbQ0iCRaGQcC3JDn(Txdzuv&MEgD~KO4`yp
b31790
z=5BCuB@e@wRsqvAJ;$xvx9Gcmjg^%Zmpz{f_`E70OR0-tSr&$2WCRZ19VQgI%iAYU
b31790
zp=p}SN0xJMWKJ&6Mznnd&T;3?ZAM0h>FoG``e*Ais+7+q+~GIOJc4b6LL-cgkJ8%G
b31790
zj;`yht*`ULkKgn2;6Tzx2$86Wc$mq!l{y|Xk<<#-kH3~Fz^Te9V01LZ#JvexTiVey
b31790
zjc7DV@NkeTmp*rM2;rL3*N~{}`1lx~T>2D6ys~=*48ve_EX3q*leC_0L(?>LT?b%!
b31790
zdD)d%k|bnV_8i-LLI{Kq)YR1Sazg{l!w=E~I4*{5+pL6F=>O_V`oH*^SS*$#|EDkv
b31790
zgFs+EMV6Kj?^OYS;Nc)APn@Eovkgg-C@syQ$>)f~lPz&+Gwy(0RL0e-R{@AbA}lN{
b31790
z(%IF{xw9VvpzAv2<>js}=t<(ym~7joxVYG5%MdW{Z%FNygZktuQ}>5x@9N<E*>k9>
b31790
z%JlRU-4`z)$qo_1HF-i&6l!bh2>AE81SH;OvUg~SKfuA~nwYsiL`PRA7ccZsRu&*E
b31790
zsxXTW?n38{#fOW?+6X9R0Kx}Ug1bBIBx3saA>M0wpQgq}Dr=774`zRSIAIzwRv*t3
b31790
z|6`t*t^rg?fFE|QfKx>E^G(cXDt&#|Fr$&Y$N^+u5#`l&)EzyxZSwm7NnnTP9
b31790
z<E82>DXP(4sABZyPdr@{r2fTh{@!?W=uHM@4}{@6;R807W=7gCe`9}SA(iEpq7oiO
b31790
z;O1aK0wgSLd3LN7*c3o9Pyqx06|jLP3d)=vn_F`P2m^mP4_*aI00qbIxyOhD2C(4}
b31790
b^WWlc-6EIuR>CZG00000NkvXXu0mjfn7$9&
b31790
b31790
literal 0
b31790
HcmV?d00001
b31790
b31790
diff --git a/data/icons/32x32/session-properties.svg b/data/icons/32x32/session-properties.svg
b31790
new file mode 100644
b31790
index 00000000..5bb14559
b31790
--- /dev/null
b31790
+++ b/data/icons/32x32/session-properties.svg
b31790
@@ -0,0 +1,490 @@
b31790
+
b31790
+
b31790
+
b31790
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
b31790
+   xmlns:cc="http://web.resource.org/cc/"
b31790
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
b31790
+   xmlns:svg="http://www.w3.org/2000/svg"
b31790
+   xmlns="http://www.w3.org/2000/svg"
b31790
+   xmlns:xlink="http://www.w3.org/1999/xlink"
b31790
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
b31790
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
b31790
+   width="32"
b31790
+   height="32"
b31790
+   id="svg7854"
b31790
+   sodipodi:version="0.32"
b31790
+   inkscape:version="0.44+devel"
b31790
+   version="1.0"
b31790
+   sodipodi:docname="session-properties.svg"
b31790
+   sodipodi:docbase="/home/jimmac/gfx/ximian/art/icons/control-center/scalable"
b31790
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
b31790
+   sodipodi:modified="true">
b31790
+  
b31790
+     id="defs7856">
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5650">
b31790
+      
b31790
+         style="stop-color:#d3d7cf;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5652" />
b31790
+      
b31790
+         style="stop-color:#9ea795;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5654" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5642">
b31790
+      
b31790
+         style="stop-color:#eeeeec;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5644" />
b31790
+      
b31790
+         style="stop-color:#c3c3bc;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5646" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5634">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5636" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5638" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5598">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5600" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5602" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5716">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5718" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5720" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5700">
b31790
+      
b31790
+         style="stop-color:#e4e4e4;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5702" />
b31790
+      
b31790
+         id="stop5708"
b31790
+         offset="0.639386"
b31790
+         style="stop-color:#fefefe;stop-opacity:1" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1"
b31790
+         offset="0.79632628"
b31790
+         id="stop5710" />
b31790
+      
b31790
+         style="stop-color:#949494;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5704" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient3832">
b31790
+      
b31790
+         id="stop3834"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#ffffff;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop3836"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#e0e0e0;stop-opacity:1.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient4816">
b31790
+      
b31790
+         id="stop4818"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop4820"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:0.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5048">
b31790
+      
b31790
+         id="stop5050"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+      
b31790
+         style="stop-color:black;stop-opacity:1;"
b31790
+         offset="0.5"
b31790
+         id="stop5056" />
b31790
+      
b31790
+         id="stop5052"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5060"
b31790
+       inkscape:collect="always">
b31790
+      
b31790
+         id="stop5062"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:1;" />
b31790
+      
b31790
+         id="stop5064"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5664"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(-6.6526975e-2,0,0,3.5014969e-2,47.812816,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5667"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2505064,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5048"
b31790
+       id="linearGradient5670"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2635996,25.161837)"
b31790
+       x1="302.85715"
b31790
+       y1="366.64789"
b31790
+       x2="302.85715"
b31790
+       y2="609.50507" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5682"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.4257653,0,0,1.3494809,-45.841705,7.4048427)"
b31790
+       x1="17.88068"
b31790
+       y1="11.072588"
b31790
+       x2="17.88068"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5684"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.2803684,0,0,1.2242141,-43.519693,10.324658)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5694"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.367592,0,0,1.259127,-45.521751,9.5621318)"
b31790
+       x1="17.88068"
b31790
+       y1="11.072588"
b31790
+       x2="17.88068"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5696"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.325819,0,0,1.19936,-44.590631,11.169522)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5700"
b31790
+       id="linearGradient5728"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="translate(0.5,0)"
b31790
+       x1="24"
b31790
+       y1="23"
b31790
+       x2="45.505005"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5716"
b31790
+       id="linearGradient5730"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       x1="40.745819"
b31790
+       y1="23"
b31790
+       x2="44.005268"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="filter5786">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.62861987"
b31790
+         id="feGaussianBlur5788" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5598"
b31790
+       id="linearGradient5604"
b31790
+       x1="25.627417"
b31790
+       y1="8"
b31790
+       x2="25.627417"
b31790
+       y2="4.7617435"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.6585366,0,0,0.448956,0.195122,1.1328299)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       x="-0.019480519"
b31790
+       width="1.0389611"
b31790
+       y="-0.14285713"
b31790
+       height="1.2857143"
b31790
+       id="filter5628">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.42857143"
b31790
+         id="feGaussianBlur5630" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5634"
b31790
+       id="linearGradient5640"
b31790
+       x1="25.313259"
b31790
+       y1="42.656792"
b31790
+       x2="25.313261"
b31790
+       y2="10.129107"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.6609814,0,0,0.6406647,8.63294e-2,0.2717499)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5642"
b31790
+       id="linearGradient5648"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.6744186,0,0,0.6,-0.1860466,0.4000001)" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5650"
b31790
+       id="linearGradient5656"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(0.6744186,0,0,0.6,-0.1860466,0.4000001)" />
b31790
+  </defs>
b31790
+  
b31790
+     id="base"
b31790
+     pagecolor="#ffffff"
b31790
+     bordercolor="#e0e0e0"
b31790
+     borderopacity="1"
b31790
+     gridtolerance="10000"
b31790
+     guidetolerance="10"
b31790
+     objecttolerance="10"
b31790
+     inkscape:pageopacity="0.0"
b31790
+     inkscape:pageshadow="2"
b31790
+     inkscape:zoom="1"
b31790
+     inkscape:cx="31.400129"
b31790
+     inkscape:cy="-4.050017"
b31790
+     inkscape:document-units="px"
b31790
+     inkscape:current-layer="layer1"
b31790
+     width="32px"
b31790
+     height="32px"
b31790
+     inkscape:showpageshadow="false"
b31790
+     inkscape:window-width="1102"
b31790
+     inkscape:window-height="958"
b31790
+     inkscape:window-x="2117"
b31790
+     inkscape:window-y="82"
b31790
+     showgrid="false" />
b31790
+  
b31790
+     id="metadata7859">
b31790
+    <rdf:RDF>
b31790
+      
b31790
+         rdf:about="">
b31790
+        <dc:format>image/svg+xml</dc:format>
b31790
+        
b31790
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
b31790
+        <dc:creator>
b31790
+          <cc:Agent>
b31790
+            <dc:title>Jakub Steiner</dc:title>
b31790
+          </cc:Agent>
b31790
+        </dc:creator>
b31790
+        <dc:source>http://jimmac.musichall.cz</dc:source>
b31790
+        
b31790
+           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
b31790
+        <dc:title>Gnome Session Properties</dc:title>
b31790
+      </cc:Work>
b31790
+      
b31790
+         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Distribution" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Notice" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/SourceCode" />
b31790
+      </cc:License>
b31790
+    </rdf:RDF>
b31790
+  </metadata>
b31790
+  
b31790
+     inkscape:label="Layer 1"
b31790
+     inkscape:groupmode="layer"
b31790
+     id="layer1">
b31790
+    
b31790
+       id="g5672"
b31790
+       style="opacity:0.53714288"
b31790
+       transform="matrix(0.7053465,0,0,0.9765232,-0.8197989,-14.074824)">
b31790
+      
b31790
+         y="38"
b31790
+         x="7.7196383"
b31790
+         height="8.5036354"
b31790
+         width="32.123024"
b31790
+         id="rect4173"
b31790
+         style="opacity:1;color:#000000;fill:url(#linearGradient5670);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccc"
b31790
+         id="path5058"
b31790
+         d="M 39.842663,38.000295 C 39.842663,38.000295 39.842663,46.503461 39.842663,46.503461 C 43.268636,46.519469 48.125002,44.598333 48.125,42.25133 C 48.125,39.904328 44.30187,38.000295 39.842663,38.000295 z "
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5664);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         d="M 7.7196385,38.000295 C 7.7196385,38.000295 7.7196385,46.503461 7.7196385,46.503461 C 4.2936621,46.519469 -0.56270146,44.598333 -0.56270146,42.25133 C -0.56270146,39.904328 3.2604286,38.000295 7.7196385,38.000295 z "
b31790
+         id="path5018"
b31790
+         sodipodi:nodetypes="cccc" />
b31790
+    </g>
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect4585"
b31790
+       width="29"
b31790
+       height="25.915714"
b31790
+       x="1.5"
b31790
+       y="2.5842862"
b31790
+       rx="1.5457952"
b31790
+       ry="1.4779093" />
b31790
+    
b31790
+       ry="2.2922091"
b31790
+       rx="2.2922091"
b31790
+       y="4.3838844"
b31790
+       x="2.5"
b31790
+       height="5"
b31790
+       width="43"
b31790
+       id="rect5606"
b31790
+       style="opacity:0.27999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.53006899;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5628);enable-background:accumulate"
b31790
+       transform="matrix(0.6539988,0,0,0.6531321,0.5263077,0.2140377)" />
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:url(#linearGradient5648);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5656);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect5556"
b31790
+       width="29"
b31790
+       height="3"
b31790
+       x="1.5"
b31790
+       y="2.5"
b31790
+       rx="1.5459085"
b31790
+       ry="1.3753254" />
b31790
+    
b31790
+       ry="0.50486249"
b31790
+       rx="0.50486249"
b31790
+       y="3.2374167"
b31790
+       x="2.5"
b31790
+       height="24.262585"
b31790
+       width="27.000004"
b31790
+       id="rect5632"
b31790
+       style="opacity:0.52571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5640);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+    
b31790
+       id="g5677"
b31790
+       transform="matrix(0.6539988,0,0,0.6531321,29.351952,-3.3803525)">
b31790
+      
b31790
+         id="rect3818"
b31790
+         style="color:#000000;fill:url(#linearGradient5682);fill-opacity:1;fill-rule:evenodd;stroke:#8d8d8d;stroke-width:1.5300703;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         y="18.189814"
b31790
+         x="-37.999996"
b31790
+         ry="0.57820499"
b31790
+         rx="0.56373626"
b31790
+         height="21.435171"
b31790
+         width="22.935822" />
b31790
+      
b31790
+         id="rect3820"
b31790
+         style="color:#000000;fill:url(#linearGradient5684);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         y="20.486441"
b31790
+         x="-35.706413"
b31790
+         ry="0.097232968"
b31790
+         rx="0.09710411"
b31790
+         height="3.0621684"
b31790
+         width="18.348656" />
b31790
+      
b31790
+         id="rect4962"
b31790
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.53007114;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.47878789;visibility:visible;display:inline;overflow:visible"
b31790
+         y="19.7209"
b31790
+         x="-36.47094"
b31790
+         ry="0.16788077"
b31790
+         rx="0.18690105"
b31790
+         height="18.373005"
b31790
+         width="19.877708" />
b31790
+    </g>
b31790
+    
b31790
+       id="g5724"
b31790
+       transform="matrix(0.6539988,0,0,0.6531321,0.5263077,5.4390943)">
b31790
+      
b31790
+         style="opacity:0.3142857;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5786)"
b31790
+         d="M 10.5,25.474874 L 20.5,15.474874 L 20.5,21.005204 L 40.5,21.005204 C 44.35508,21.005204 45.58678,20.95144 45.5,23 L 45.5,33 C 45.5,33 43.070425,29.988738 40.625,29.988738 L 20.5,29.988738 L 20.5,35.474874 L 10.5,25.474874 z "
b31790
+         id="path5738"
b31790
+         sodipodi:nodetypes="cccccccccc" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccccccccc"
b31790
+         id="path5698"
b31790
+         d="M 10.5,23 L 20.5,13 L 20.5,18.53033 L 40.5,18.53033 C 44.35508,18.53033 45.58678,20.95144 45.5,23 L 45.5,33 C 45.5,33 45.096959,27.513864 40.625,27.513864 L 20.5,27.513864 L 20.5,33 L 10.5,23 z "
b31790
+         style="fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.53006899px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
b31790
+      
b31790
+         d="M 19.1875,16.1875 L 12.375,23 L 19.1875,29.8125 L 19.1875,27.5 C 19.191541,26.776807 19.776807,26.191541 20.5,26.1875 L 40.625,26.1875 C 42.124779,26.1875 43.279176,26.742626 44.1875,27.5 L 44.1875,23 C 44.187007,22.97917 44.187007,22.95833 44.1875,22.9375 C 44.218785,22.19897 44.005899,21.434255 43.5,20.875 C 42.994101,20.315745 42.151361,19.84375 40.5,19.84375 L 20.5,19.84375 C 19.776807,19.839709 19.191541,19.254443 19.1875,18.53125 L 19.1875,16.1875 z "
b31790
+         inkscape:href="#path5698"
b31790
+         id="path5712"
b31790
+         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5730);stroke-width:1.53006899px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
b31790
+         xlink:href="#path5698"
b31790
+         inkscape:original="M 20.5 13 L 10.5 23 L 20.5 33 L 20.5 27.5 L 40.625 27.5 C 45.096959 27.5 45.5 33 45.5 33 L 45.5 23 C 45.58678 20.95144 44.35508 18.531249 40.5 18.53125 L 20.5 18.53125 L 20.5 13 z "
b31790
+         inkscape:radius="-1.3197637"
b31790
+         sodipodi:type="inkscape:offset" />
b31790
+    </g>
b31790
+    
b31790
+       ry="0.50634968"
b31790
+       rx="0.74272269"
b31790
+       y="3.153132"
b31790
+       x="2.5"
b31790
+       height="1.346868"
b31790
+       width="27.000002"
b31790
+       id="rect4627"
b31790
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5604);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+  </g>
b31790
+</svg>
b31790
diff --git a/data/icons/48x48/Makefile.am b/data/icons/48x48/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..13b0cf36
b31790
--- /dev/null
b31790
+++ b/data/icons/48x48/Makefile.am
b31790
@@ -0,0 +1,25 @@
b31790
+size = 48x48
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.png
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/48x48/session-properties.png b/data/icons/48x48/session-properties.png
b31790
new file mode 100644
b31790
index 0000000000000000000000000000000000000000..32c2358ca45a07e86fbb03d75ec4742e8203091a
b31790
GIT binary patch
b31790
literal 1839
b31790
zcmV+~2hjM5P)
b31790
zd
b31790
zaAhuUa%Y?FJQ@H12CPX$K~!jg)tOst99JF2f9K5X?0PR=-<>o(6r8k8?YI(DKwnU$
b31790
zs<G>cQXx?!c!0iv$|d3jp#tKO3Mop|HfdwiG^%(Bv{YDXBhor03QDNj@<7u-QR}Ec
b31790
zVmpa1^{zMG*>esLv%B8Q?96WL#>pp*>^W!7Io~(`|9394!WhG?47u3^){9$SfL;3M
b31790
z;O`G6Kbf~)=uVkOY^kjqNkSk%G`=sEP%uKzEQ;faSmfJ3{?2z7p+dmQlJnw@ZOKQr
b31790
zboJpxqV<Ca(Nq}->Wlr$ygr&M18@s@xn<$<*n9uUyaL=`79fO>e|+r^U%h+#PIN(`
b31790
zwf+>yR5$Xm?ILu%@)`
b31790
zg-9uhwY8C)y(IAbTNYs6I=^u3t{u6y{{F2<c|$GGG>p;AU7h32cP;`LSo46HJUh3X
b31790
zZvRKyeM6UVA~)ycly^06ou6a!>?~9YFvjRFfA4pNv(t*do
b31790
zNn?!BP%#S$X_4yaBNp3+;pSYO1p+AqLS8MG*;Nl%5-H_PO5cN&)rPMUV2R=a(xig^
b31790
z)qi4VFK!gKG75>?n2p}$TPH<;fLe87u(KE0yLT^AZk*}0*6iQE9~ua-f+8S=muIbb
b31790
zKuXDzN8a3!v=hKjAG<$fyz2Y<2(*wwB~1TszO@GHKyV5P(ej%##xQ+xo{czG2;ub?
b31790
zgg_HZ0h-p#X^i33rygsKX-I!Tu)<8NP4nj5w{IWDn2OEc`Vlr}pa(1|D5$lL!p!O5
b31790
zy)mU!xlAdAWnKSX%70_GhCmMpArNAXa+o>qh*K2-r4)yreTE-A{-c&iS0Xfp!aPvf
b31790
zQJ6XJ*s&%+DaCV#pXKd$-d
b31790
zs|XWs)p(%lwlcp;Z#L)xC=?1D9)FI(!6EjH?LkV3QYy4<qibE$s3k@Dyi{vWKNw>;
b31790
zc<331hITPJGFl!ypU)GCL;~9e^%;cPX|yH+Ysbd02)M4x^o5TY92{hHWRxpcu9OGg
b31790
zv<Ud6kRM8h-TmNhMs|DTOVR4-?%|1F{49_}7`$=+?(qPeL?^PX8|SuR<ksN;0Tt>>
b31790
zGm9Vj@rlC>4i1&yeCfI6<z=4y^>0Gw@=7%GY&M(a-23O4IPyFnW-kDJ4Fm{LmqNAV
b31790
zCw@C#&iP960GUjNOeW(?Qc4+k`8`uYJRWEJz;=H4{l|Iw(9
b31790
zko>2OLZN^Vf-l|sMS2S#Ac~=D$^%L%j=b<Z!@GtV*#z<>Xszk(?L(*xc--Ck6e>=n
b31790
zl^#$^h0YE)3XbD|R#5yxR+B>h3z-mtN5An+&YV5NYsX)ur>AFK8@7!^{a&bniF3Ie
b31790
zU-<mJoIH6FV_@u|u}w>*O4LoGjaFjEap>&qEQ*){>O~|H2~w$43tzIEe
b31790
zxE9f9l>Ywy^1YvkR4T>KfB6J6GnYciHVfOf8Q6X&0|TF9;P%hf*H_+DuF^^=(&=>7
b31790
z!|8OIbUIBknIw@&aO%`wszeAOn3=i6gAa_<4WzYZYHEu4)Noy0Fbr2N
b31790
z^U&yMfB@+&WNv&bM~@!$@6H%p*JWvGiEL(tmtTGfV+?!7_LM_>`t)hvwsyxhoJgWY
b31790
z`UXs#LLtpU_5vr~II&h$E1-1RnTzd&*v^1n4Q}T(Ru|^T&d+dc@&q9G+QScf^>;st
b31790
zW!3LSEug=yG#FYd3hpY`vP
b31790
zoLC&oc3Py`0LEZUl2|-NG@hb6xy&aEm&?_%NL(0WWbJ9ESrMtOE#y0QacuGgxm*sv
b31790
zUtz8rLLj8Xc48#jySa1tzEX_?YY}KS+P#`t$#3aMM98idS{4D2vmI<{hcvo=bhWpU
b31790
z>h9&^)K~^yN(mwIwh+PwqRX?>FTU}&-d}zFft|5?ZtrNRV`B{Y)vYWpTt#pXUA=wS
b31790
z_Vt~}f{@9%96$4cTFERP1EN6G#`_qjKAd{$6)Au6nUDT^`CA&RtM%>;Mk|cgNISxY
b31790
zrcn_By^>qJ^rw$cjZXjtU{x4n5JE(NE}*@5C4e@-#S_@tI4yr3ZU_ye0R`lNERX?~
b31790
zfLUXVCjcnzuiNkhwBdzF7aMLSl0_aao`5A_#T1DPzio0+j07;oY}#(E$iu>ms5U-i
b31790
deFfY~_&?#hc%)mzygmQ`002ovPDHLkV1i5*a;5+P
b31790
b31790
literal 0
b31790
HcmV?d00001
b31790
b31790
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..8b6c5491
b31790
--- /dev/null
b31790
+++ b/data/icons/Makefile.am
b31790
@@ -0,0 +1,3 @@
b31790
+SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable symbolic
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/scalable/Makefile.am b/data/icons/scalable/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..4ff67b7b
b31790
--- /dev/null
b31790
+++ b/data/icons/scalable/Makefile.am
b31790
@@ -0,0 +1,25 @@
b31790
+size = scalable
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties.svg
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/scalable/session-properties.svg b/data/icons/scalable/session-properties.svg
b31790
new file mode 100644
b31790
index 00000000..cec2c39e
b31790
--- /dev/null
b31790
+++ b/data/icons/scalable/session-properties.svg
b31790
@@ -0,0 +1,515 @@
b31790
+
b31790
+
b31790
+
b31790
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
b31790
+   xmlns:cc="http://web.resource.org/cc/"
b31790
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
b31790
+   xmlns:svg="http://www.w3.org/2000/svg"
b31790
+   xmlns="http://www.w3.org/2000/svg"
b31790
+   xmlns:xlink="http://www.w3.org/1999/xlink"
b31790
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
b31790
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
b31790
+   width="48"
b31790
+   height="48"
b31790
+   id="svg7854"
b31790
+   sodipodi:version="0.32"
b31790
+   inkscape:version="0.44+devel"
b31790
+   version="1.0"
b31790
+   sodipodi:docname="session-properties.svg"
b31790
+   sodipodi:docbase="/home/jimmac/gfx/ximian/art/icons/control-center/scalable"
b31790
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
b31790
+   sodipodi:modified="true">
b31790
+  
b31790
+     id="defs7856">
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5650">
b31790
+      
b31790
+         style="stop-color:#d3d7cf;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5652" />
b31790
+      
b31790
+         style="stop-color:#9ea795;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5654" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5642">
b31790
+      
b31790
+         style="stop-color:#eeeeec;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5644" />
b31790
+      
b31790
+         style="stop-color:#c3c3bc;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5646" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5634">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5636" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5638" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5598">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5600" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5602" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5716">
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5718" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:0;"
b31790
+         offset="1"
b31790
+         id="stop5720" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="linearGradient5700">
b31790
+      
b31790
+         style="stop-color:#e4e4e4;stop-opacity:1;"
b31790
+         offset="0"
b31790
+         id="stop5702" />
b31790
+      
b31790
+         id="stop5708"
b31790
+         offset="0.639386"
b31790
+         style="stop-color:#fefefe;stop-opacity:1" />
b31790
+      
b31790
+         style="stop-color:#ffffff;stop-opacity:1"
b31790
+         offset="0.79632628"
b31790
+         id="stop5710" />
b31790
+      
b31790
+         style="stop-color:#949494;stop-opacity:1"
b31790
+         offset="1"
b31790
+         id="stop5704" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient3832">
b31790
+      
b31790
+         id="stop3834"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#ffffff;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop3836"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#e0e0e0;stop-opacity:1.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient4816">
b31790
+      
b31790
+         id="stop4818"
b31790
+         offset="0.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:1.0000000" />
b31790
+      
b31790
+         id="stop4820"
b31790
+         offset="1.0000000"
b31790
+         style="stop-color:#204a87;stop-opacity:0.0000000" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5048">
b31790
+      
b31790
+         id="stop5050"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+      
b31790
+         style="stop-color:black;stop-opacity:1;"
b31790
+         offset="0.5"
b31790
+         id="stop5056" />
b31790
+      
b31790
+         id="stop5052"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       id="linearGradient5060"
b31790
+       inkscape:collect="always">
b31790
+      
b31790
+         id="stop5062"
b31790
+         offset="0"
b31790
+         style="stop-color:black;stop-opacity:1;" />
b31790
+      
b31790
+         id="stop5064"
b31790
+         offset="1"
b31790
+         style="stop-color:black;stop-opacity:0;" />
b31790
+    </linearGradient>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5664"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(-6.6526975e-2,0,0,3.5014969e-2,47.812816,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5060"
b31790
+       id="radialGradient5667"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2505064,25.161837)"
b31790
+       cx="605.71429"
b31790
+       cy="486.64789"
b31790
+       fx="605.71429"
b31790
+       fy="486.64789"
b31790
+       r="117.14286" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5048"
b31790
+       id="linearGradient5670"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(6.6526975e-2,0,0,3.5014969e-2,-0.2635996,25.161837)"
b31790
+       x1="302.85715"
b31790
+       y1="366.64789"
b31790
+       x2="302.85715"
b31790
+       y2="609.50507" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5682"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.367592,0,0,1.259127,-45.521751,9.5621318)"
b31790
+       x1="17.880680"
b31790
+       y1="11.072588"
b31790
+       x2="17.880680"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5684"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.325819,0,0,1.19936,-44.590631,11.169522)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient3832"
b31790
+       id="linearGradient5694"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.367592,0,0,1.259127,-45.521751,9.5621318)"
b31790
+       x1="17.880680"
b31790
+       y1="11.072588"
b31790
+       x2="17.880680"
b31790
+       y2="21.767578" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient4816"
b31790
+       id="linearGradient5696"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="matrix(1.325819,0,0,1.19936,-44.590631,11.169522)"
b31790
+       x1="13.050564"
b31790
+       y1="11.353518"
b31790
+       x2="13.050564"
b31790
+       y2="5.6173568" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5700"
b31790
+       id="linearGradient5728"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       gradientTransform="translate(0.5,0)"
b31790
+       x1="24"
b31790
+       y1="23"
b31790
+       x2="45.505004"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5716"
b31790
+       id="linearGradient5730"
b31790
+       gradientUnits="userSpaceOnUse"
b31790
+       x1="40.745819"
b31790
+       y1="23"
b31790
+       x2="44.005268"
b31790
+       y2="23" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       id="filter5786">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.62861987"
b31790
+         id="feGaussianBlur5788" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5598"
b31790
+       id="linearGradient5604"
b31790
+       x1="25.627417"
b31790
+       y1="8"
b31790
+       x2="25.627417"
b31790
+       y2="4.7617435"
b31790
+       gradientUnits="userSpaceOnUse" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       x="-0.019480519"
b31790
+       width="1.038961"
b31790
+       y="-0.14285714"
b31790
+       height="1.2857143"
b31790
+       id="filter5628">
b31790
+      
b31790
+         inkscape:collect="always"
b31790
+         stdDeviation="0.42857143"
b31790
+         id="feGaussianBlur5630" />
b31790
+    </filter>
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5634"
b31790
+       id="linearGradient5640"
b31790
+       x1="25.313259"
b31790
+       y1="42.656792"
b31790
+       x2="25.313261"
b31790
+       y2="10.129107"
b31790
+       gradientUnits="userSpaceOnUse" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5642"
b31790
+       id="linearGradient5648"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse" />
b31790
+    
b31790
+       inkscape:collect="always"
b31790
+       xlink:href="#linearGradient5650"
b31790
+       id="linearGradient5656"
b31790
+       x1="26.29347"
b31790
+       y1="7.3125"
b31790
+       x2="26.232994"
b31790
+       y2="3.5357027"
b31790
+       gradientUnits="userSpaceOnUse" />
b31790
+  </defs>
b31790
+  
b31790
+     id="base"
b31790
+     pagecolor="#ffffff"
b31790
+     bordercolor="#e0e0e0"
b31790
+     borderopacity="1"
b31790
+     gridtolerance="10000"
b31790
+     guidetolerance="10"
b31790
+     objecttolerance="10"
b31790
+     inkscape:pageopacity="0.0"
b31790
+     inkscape:pageshadow="2"
b31790
+     inkscape:zoom="4"
b31790
+     inkscape:cx="20.372005"
b31790
+     inkscape:cy="14.768475"
b31790
+     inkscape:document-units="px"
b31790
+     inkscape:current-layer="layer1"
b31790
+     width="48px"
b31790
+     height="48px"
b31790
+     inkscape:showpageshadow="false"
b31790
+     inkscape:window-width="1102"
b31790
+     inkscape:window-height="958"
b31790
+     inkscape:window-x="2117"
b31790
+     inkscape:window-y="82"
b31790
+     showgrid="false" />
b31790
+  
b31790
+     id="metadata7859">
b31790
+    <rdf:RDF>
b31790
+      
b31790
+         rdf:about="">
b31790
+        <dc:format>image/svg+xml</dc:format>
b31790
+        
b31790
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
b31790
+        <dc:creator>
b31790
+          <cc:Agent>
b31790
+            <dc:title>Jakub Steiner</dc:title>
b31790
+          </cc:Agent>
b31790
+        </dc:creator>
b31790
+        <dc:source>http://jimmac.musichall.cz</dc:source>
b31790
+        
b31790
+           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
b31790
+        <dc:title>Gnome Session Properties</dc:title>
b31790
+      </cc:Work>
b31790
+      
b31790
+         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Distribution" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/Notice" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
b31790
+        
b31790
+           rdf:resource="http://web.resource.org/cc/SourceCode" />
b31790
+      </cc:License>
b31790
+    </rdf:RDF>
b31790
+  </metadata>
b31790
+  
b31790
+     inkscape:label="Layer 1"
b31790
+     inkscape:groupmode="layer"
b31790
+     id="layer1">
b31790
+    
b31790
+       id="g5672"
b31790
+       style="opacity:0.53714286">
b31790
+      
b31790
+         y="38"
b31790
+         x="7.7196383"
b31790
+         height="8.5036354"
b31790
+         width="32.123024"
b31790
+         id="rect4173"
b31790
+         style="opacity:1;color:#000000;fill:url(#linearGradient5670);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccc"
b31790
+         id="path5058"
b31790
+         d="M 39.842663,38.000295 C 39.842663,38.000295 39.842663,46.503461 39.842663,46.503461 C 43.268636,46.519469 48.125002,44.598333 48.125,42.25133 C 48.125,39.904328 44.30187,38.000295 39.842663,38.000295 z "
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
b31790
+      
b31790
+         style="opacity:1;color:#000000;fill:url(#radialGradient5664);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         d="M 7.7196385,38.000295 C 7.7196385,38.000295 7.7196385,46.503461 7.7196385,46.503461 C 4.2936621,46.519469 -0.56270146,44.598333 -0.56270146,42.25133 C -0.56270146,39.904328 3.2604286,38.000295 7.7196385,38.000295 z "
b31790
+         id="path5018"
b31790
+         sodipodi:nodetypes="cccc" />
b31790
+    </g>
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect4585"
b31790
+       width="42.848347"
b31790
+       height="39.870949"
b31790
+       x="2.6516504"
b31790
+       y="3.6290491"
b31790
+       rx="2.2839575"
b31790
+       ry="2.273742" />
b31790
+    
b31790
+       ry="2.2922091"
b31790
+       rx="2.2922091"
b31790
+       y="4.3838844"
b31790
+       x="2.5"
b31790
+       height="5"
b31790
+       width="43"
b31790
+       id="rect5606"
b31790
+       style="opacity:0.28;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter5628)" />
b31790
+    
b31790
+       style="opacity:1;color:#000000;fill:url(#linearGradient5648);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5656);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
b31790
+       id="rect5556"
b31790
+       width="43"
b31790
+       height="5"
b31790
+       x="2.5"
b31790
+       y="3.5"
b31790
+       rx="2.2922091"
b31790
+       ry="2.2922091" />
b31790
+    
b31790
+       ry="1.2758038"
b31790
+       rx="1.2758038"
b31790
+       y="4.6290464"
b31790
+       x="3.6516466"
b31790
+       height="37.870953"
b31790
+       width="40.848354"
b31790
+       id="rect5632"
b31790
+       style="opacity:0.52571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5640);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+    
b31790
+       id="g5677"
b31790
+       transform="translate(43.499997,-2.124989)">
b31790
+      
b31790
+         id="rect3818"
b31790
+         style="color:#000000;fill:url(#linearGradient5682);fill-opacity:1;fill-rule:evenodd;stroke:#8d8d8d;stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         y="19.625"
b31790
+         x="-37.999996"
b31790
+         ry="0.53949153"
b31790
+         rx="0.54073501"
b31790
+         height="19.999989"
b31790
+         width="22.000008" />
b31790
+      
b31790
+         id="rect3820"
b31790
+         style="color:#000000;fill:url(#linearGradient5684);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         y="21.125"
b31790
+         x="-36.499996"
b31790
+         ry="0.095258936"
b31790
+         rx="0.10055112"
b31790
+         height="3"
b31790
+         width="19" />
b31790
+      
b31790
+         id="rect4962"
b31790
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000143;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.47878789;visibility:visible;display:inline;overflow:visible"
b31790
+         y="20.624994"
b31790
+         x="-37"
b31790
+         ry="0.16447251"
b31790
+         rx="0.188051"
b31790
+         height="18.000002"
b31790
+         width="20.000011" />
b31790
+    </g>
b31790
+    
b31790
+       transform="translate(53.499997,-7.124989)"
b31790
+       id="g5686">
b31790
+      
b31790
+         width="22.000008"
b31790
+         height="19.999989"
b31790
+         rx="0.54073501"
b31790
+         ry="0.53949153"
b31790
+         x="-37.999996"
b31790
+         y="19.625"
b31790
+         style="color:#000000;fill:url(#linearGradient5694);fill-opacity:1;fill-rule:evenodd;stroke:#8d8d8d;stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         id="rect5688" />
b31790
+      
b31790
+         width="19"
b31790
+         height="3"
b31790
+         rx="0.10055112"
b31790
+         ry="0.095258936"
b31790
+         x="-36.499996"
b31790
+         y="21.125"
b31790
+         style="color:#000000;fill:url(#linearGradient5696);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
b31790
+         id="rect5690" />
b31790
+      
b31790
+         width="20.000011"
b31790
+         height="18.000002"
b31790
+         rx="0.188051"
b31790
+         ry="0.16447251"
b31790
+         x="-37"
b31790
+         y="20.624994"
b31790
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000143;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.47878789;visibility:visible;display:inline;overflow:visible"
b31790
+         id="rect5692" />
b31790
+    </g>
b31790
+    
b31790
+       id="g5724"
b31790
+       transform="translate(0,8)">
b31790
+      
b31790
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.31428571;filter:url(#filter5786)"
b31790
+         d="M 10.5,25.474874 L 20.5,15.474874 L 20.5,21.005204 L 40.5,21.005204 C 44.35508,21.005204 45.58678,20.95144 45.5,23 L 45.5,33 C 45.5,33 43.070425,29.988738 40.625,29.988738 L 20.5,29.988738 L 20.5,35.474874 L 10.5,25.474874 z "
b31790
+         id="path5738"
b31790
+         sodipodi:nodetypes="cccccccccc" />
b31790
+      
b31790
+         sodipodi:nodetypes="cccccccccc"
b31790
+         id="path5698"
b31790
+         d="M 10.5,23 L 20.5,13 L 20.5,18.53033 L 40.5,18.53033 C 44.35508,18.53033 45.58678,20.95144 45.5,23 L 45.5,33 C 45.5,33 45.096959,27.513864 40.625,27.513864 L 20.5,27.513864 L 20.5,33 L 10.5,23 z "
b31790
+         style="fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
b31790
+      
b31790
+         d="M 19.5625,15.25 L 11.8125,23 L 19.5625,30.75 L 19.5625,27.5 C 19.55998,27.250596 19.657943,27.010672 19.834307,26.834307 C 20.010672,26.657943 20.250596,26.55998 20.5,26.5625 L 40.625,26.5625 C 42.489029,26.5625 43.674657,27.497362 44.5625,28.5625 L 44.5625,23 C 44.562325,22.989584 44.562325,22.979166 44.5625,22.96875 C 44.597378,22.145414 44.36819,21.273844 43.78125,20.625 C 43.19431,19.976156 42.233327,19.46875 40.5,19.46875 L 20.5,19.46875 C 20.250596,19.47127 20.010672,19.373307 19.834307,19.196943 C 19.657943,19.020578 19.55998,18.780654 19.5625,18.53125 L 19.5625,15.25 z "
b31790
+         inkscape:href="#path5698"
b31790
+         id="path5712"
b31790
+         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5730);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
b31790
+         xlink:href="#path5698"
b31790
+         inkscape:original="M 20.5 13 L 10.5 23 L 20.5 33 L 20.5 27.5 L 40.625 27.5 C 45.096959 27.5 45.5 33 45.5 33 L 45.5 23 C 45.58678 20.95144 44.35508 18.531249 40.5 18.53125 L 20.5 18.53125 L 20.5 13 z "
b31790
+         inkscape:radius="-0.92807764"
b31790
+         sodipodi:type="inkscape:offset" />
b31790
+    </g>
b31790
+    
b31790
+       ry="1.1278381"
b31790
+       rx="1.1278381"
b31790
+       y="4.5"
b31790
+       x="3.5"
b31790
+       height="3"
b31790
+       width="41"
b31790
+       id="rect4627"
b31790
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5604);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
b31790
+  </g>
b31790
+</svg>
b31790
diff --git a/data/icons/symbolic/Makefile.am b/data/icons/symbolic/Makefile.am
b31790
new file mode 100644
b31790
index 00000000..670d0a5a
b31790
--- /dev/null
b31790
+++ b/data/icons/symbolic/Makefile.am
b31790
@@ -0,0 +1,25 @@
b31790
+size = symbolic
b31790
+
b31790
+themedir = $(datadir)/icons/hicolor
b31790
+iconsdir = $(themedir)/$(size)/apps
b31790
+
b31790
+icons_DATA = session-properties-symbolic.svg
b31790
+
b31790
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
b31790
+
b31790
+install-data-hook:
b31790
+	@-if test -z "$(DESTDIR)"; then \
b31790
+		echo "Updating Gtk icon cache."; \
b31790
+		$(gtk_update_icon_cache); \
b31790
+	else \
b31790
+		echo "*** Icon cache not updated. After install, run this:"; \
b31790
+		echo "***   $(gtk_update_icon_cache)"; \
b31790
+	fi
b31790
+
b31790
+uninstall-hook:
b31790
+	@rm -f  $(DESTDIR)$(themedir)/icon-theme.cache
b31790
+
b31790
+EXTRA_DIST =		\
b31790
+	$(icons_DATA)
b31790
+
b31790
+-include $(top_srcdir)/git.mk
b31790
diff --git a/data/icons/symbolic/session-properties-symbolic.svg b/data/icons/symbolic/session-properties-symbolic.svg
b31790
new file mode 100644
b31790
index 00000000..e628ecd1
b31790
--- /dev/null
b31790
+++ b/data/icons/symbolic/session-properties-symbolic.svg
b31790
@@ -0,0 +1,28 @@
b31790
+
b31790
+
b31790
+
b31790
+<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:dc='http://purl.org/dc/elements/1.1/' sodipodi:docname='gnome-session-properties-symbolic.svg' height='16.000015' id='svg7384' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:osb='http://www.openswatchbook.org/uri/2009/osb' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:svg='http://www.w3.org/2000/svg' version='1.1' inkscape:version='0.91 r13725' width='16.000013' xmlns='http://www.w3.org/2000/svg'>
b31790
+  <metadata id='metadata90'>
b31790
+    <rdf:RDF>
b31790
+      <cc:Work rdf:about=''>
b31790
+        <dc:format>image/svg+xml</dc:format>
b31790
+        <dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
b31790
+        <dc:title>Gnome Symbolic Icon Theme</dc:title>
b31790
+      </cc:Work>
b31790
+    </rdf:RDF>
b31790
+  </metadata>
b31790
+  <sodipodi:namedview inkscape:bbox-paths='true' bordercolor='#666666' borderopacity='1' inkscape:current-layer='layer9' inkscape:cx='16.984015' inkscape:cy='3.9235845' gridtolerance='10' inkscape:guide-bbox='true' guidetolerance='10' id='namedview88' inkscape:object-nodes='false' inkscape:object-paths='false' objecttolerance='10' pagecolor='#555753' inkscape:pageopacity='1' inkscape:pageshadow='2' showborder='false' showgrid='false' showguides='true' inkscape:snap-bbox='true' inkscape:snap-bbox-midpoints='false' inkscape:snap-global='true' inkscape:snap-grids='true' inkscape:snap-nodes='true' inkscape:snap-others='false' inkscape:snap-to-guides='true' inkscape:window-height='1376' inkscape:window-maximized='1' inkscape:window-width='2560' inkscape:window-x='0' inkscape:window-y='27' inkscape:zoom='1'>
b31790
+    <inkscape:grid empspacing='2' enabled='true' id='grid4866' originx='-22' originy='-341.99999' snapvisiblegridlinesonly='true' spacingx='1px' spacingy='1px' type='xygrid' visible='true'/>
b31790
+  </sodipodi:namedview>
b31790
+  <title id='title9167'>Gnome Symbolic Icon Theme</title>
b31790
+  <defs id='defs7386'>
b31790
+    <linearGradient id='linearGradient7212' osb:paint='solid'>
b31790
+      <stop id='stop7214' offset='0' style='stop-color:#000000;stop-opacity:1;'/>
b31790
+    </linearGradient>
b31790
+  </defs>
b31790
+  <g inkscape:groupmode='layer' id='layer9' inkscape:label='apps' style='display:inline' transform='translate(-263.0002,125)'>
b31790
+    <path inkscape:connector-curvature='0' d='m 264.03145,-125 c -0.56312,0 -1.03125,0.43688 -1.03125,1 l 0,2 16,0 0,-2 c 0,-0.56312 -0.43688,-1 -1,-1 z' id='rect10231' sodipodi:nodetypes='ssccsss' style='color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:0.36470588;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate'/>
b31790
+    <path inkscape:connector-curvature='0' d='m 263.0002,-120.96865 0,10.9061 c 0,0.5631 0.46813,1.0314 1.03125,1.0314 l 13.96875,0 c 0.56312,0 1,-0.4683 1,-1.0314 l 0,-10.9061 z m 6,0.9686 9,0 0,7 -9,0 z m 1,2 0,4 7,0 0,-4 z m -5,1 3,0 0,2 -2,0 0,4 7,0 0,-0.9686 1,0 0,1.9686 -9,0 z' id='rect10231-3' sodipodi:nodetypes='cssssccccccccccccccccccccccc' style='color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate'/>
b31790
+    
b31790
+  </g>
b31790
+</svg>
b31790
diff --git a/data/session-properties.ui b/data/session-properties.ui
b31790
new file mode 100644
b31790
index 00000000..1f0cb9a5
b31790
--- /dev/null
b31790
+++ b/data/session-properties.ui
b31790
@@ -0,0 +1,323 @@
b31790
+
b31790
+<interface>
b31790
+  <requires lib="gtk+" version="2.16"/>
b31790
+  
b31790
+  <object class="GtkNotebook" id="main-notebook">
b31790
+    <property name="visible">True</property>
b31790
+    <property name="can_focus">True</property>
b31790
+    <property name="border_width">6</property>
b31790
+    <child>
b31790
+      <object class="GtkVBox" id="vbox1">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="border_width">12</property>
b31790
+        <property name="orientation">vertical</property>
b31790
+        <property name="spacing">3</property>
b31790
+        <child>
b31790
+          <object class="GtkLabel" id="label6">
b31790
+            <property name="visible">True</property>
b31790
+            <property name="xalign">0</property>
b31790
+            <property name="xpad">3</property>
b31790
+            <property name="ypad">3</property>
b31790
+            <property name="label" translatable="yes">Additional startup _programs:</property>
b31790
+            <property name="use_underline">True</property>
b31790
+            <property name="mnemonic_widget">session_properties_treeview</property>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="expand">False</property>
b31790
+            <property name="position">0</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+        <child>
b31790
+          <object class="GtkHBox" id="hbox1">
b31790
+            <property name="visible">True</property>
b31790
+            <property name="spacing">6</property>
b31790
+            <child>
b31790
+              <object class="GtkScrolledWindow" id="scrolledwindow1">
b31790
+                <property name="visible">True</property>
b31790
+                <property name="can_focus">True</property>
b31790
+                <property name="hscrollbar_policy">never</property>
b31790
+                <property name="vscrollbar_policy">automatic</property>
b31790
+                <property name="shadow_type">etched-in</property>
b31790
+                <child>
b31790
+                  <object class="GtkTreeView" id="session_properties_treeview">
b31790
+                    <property name="height_request">210</property>
b31790
+                    <property name="visible">True</property>
b31790
+                    <property name="can_focus">True</property>
b31790
+                  </object>
b31790
+                </child>
b31790
+              </object>
b31790
+              <packing>
b31790
+                <property name="position">0</property>
b31790
+              </packing>
b31790
+            </child>
b31790
+            <child>
b31790
+              <object class="GtkVButtonBox" id="vbuttonbox1">
b31790
+                <property name="visible">True</property>
b31790
+                <property name="spacing">6</property>
b31790
+                <property name="layout_style">start</property>
b31790
+                <child>
b31790
+                  <object class="GtkButton" id="session_properties_add_button">
b31790
+                    <property name="label">gtk-add</property>
b31790
+                    <property name="visible">True</property>
b31790
+                    <property name="can_focus">True</property>
b31790
+                    <property name="receives_default">True</property>
b31790
+                    <property name="use_stock">True</property>
b31790
+                  </object>
b31790
+                  <packing>
b31790
+                    <property name="expand">False</property>
b31790
+                    <property name="fill">False</property>
b31790
+                    <property name="position">0</property>
b31790
+                  </packing>
b31790
+                </child>
b31790
+                <child>
b31790
+                  <object class="GtkButton" id="session_properties_delete_button">
b31790
+                    <property name="label">gtk-remove</property>
b31790
+                    <property name="visible">True</property>
b31790
+                    <property name="sensitive">False</property>
b31790
+                    <property name="can_focus">True</property>
b31790
+                    <property name="receives_default">True</property>
b31790
+                    <property name="use_stock">True</property>
b31790
+                  </object>
b31790
+                  <packing>
b31790
+                    <property name="expand">False</property>
b31790
+                    <property name="fill">False</property>
b31790
+                    <property name="position">1</property>
b31790
+                  </packing>
b31790
+                </child>
b31790
+                <child>
b31790
+                  <object class="GtkButton" id="session_properties_edit_button">
b31790
+                    <property name="label">gtk-edit</property>
b31790
+                    <property name="visible">True</property>
b31790
+                    <property name="sensitive">False</property>
b31790
+                    <property name="can_focus">True</property>
b31790
+                    <property name="receives_default">True</property>
b31790
+                    <property name="use_stock">True</property>
b31790
+                  </object>
b31790
+                  <packing>
b31790
+                    <property name="expand">False</property>
b31790
+                    <property name="fill">False</property>
b31790
+                    <property name="position">2</property>
b31790
+                  </packing>
b31790
+                </child>
b31790
+              </object>
b31790
+              <packing>
b31790
+                <property name="expand">False</property>
b31790
+                <property name="fill">False</property>
b31790
+                <property name="position">1</property>
b31790
+              </packing>
b31790
+            </child>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="position">1</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+      </object>
b31790
+    </child>
b31790
+    <child type="tab">
b31790
+      <object class="GtkLabel" id="label4">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="label" translatable="yes">Startup Programs</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="tab_fill">False</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkVBox" id="vbox3">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="border_width">12</property>
b31790
+        <property name="orientation">vertical</property>
b31790
+        <property name="spacing">6</property>
b31790
+        <child>
b31790
+          <object class="GtkCheckButton" id="session_properties_remember_toggle">
b31790
+            <property name="label" translatable="yes">_Automatically remember running applications when logging out</property>
b31790
+            <property name="visible">True</property>
b31790
+            <property name="can_focus">True</property>
b31790
+            <property name="receives_default">False</property>
b31790
+            <property name="use_underline">True</property>
b31790
+            <property name="draw_indicator">True</property>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="expand">False</property>
b31790
+            <property name="fill">False</property>
b31790
+            <property name="position">0</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+        <child>
b31790
+          <object class="GtkHButtonBox" id="hbuttonbox1">
b31790
+            <property name="visible">True</property>
b31790
+            <child>
b31790
+              <object class="GtkButton" id="session_properties_save_button">
b31790
+                <property name="can_focus">True</property>
b31790
+                <property name="receives_default">True</property>
b31790
+                <child>
b31790
+                  <object class="GtkHBox" id="hbox2">
b31790
+                    <property name="visible">True</property>
b31790
+                    <property name="spacing">4</property>
b31790
+                    <child>
b31790
+                      <object class="GtkImage" id="image1">
b31790
+                        <property name="visible">True</property>
b31790
+                        <property name="stock">gtk-save</property>
b31790
+                      </object>
b31790
+                      <packing>
b31790
+                        <property name="expand">False</property>
b31790
+                        <property name="fill">False</property>
b31790
+                        <property name="position">0</property>
b31790
+                      </packing>
b31790
+                    </child>
b31790
+                    <child>
b31790
+                      <object class="GtkLabel" id="label7">
b31790
+                        <property name="visible">True</property>
b31790
+                        <property name="label" translatable="yes">_Remember Currently Running Applications</property>
b31790
+                        <property name="use_underline">True</property>
b31790
+                      </object>
b31790
+                      <packing>
b31790
+                        <property name="position">1</property>
b31790
+                      </packing>
b31790
+                    </child>
b31790
+                  </object>
b31790
+                </child>
b31790
+              </object>
b31790
+              <packing>
b31790
+                <property name="expand">False</property>
b31790
+                <property name="fill">False</property>
b31790
+                <property name="position">0</property>
b31790
+              </packing>
b31790
+            </child>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="expand">False</property>
b31790
+            <property name="fill">False</property>
b31790
+            <property name="position">1</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="position">1</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child type="tab">
b31790
+      <object class="GtkLabel" id="label5">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="label" translatable="yes">Options</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="position">1</property>
b31790
+        <property name="tab_fill">False</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+  </object>
b31790
+  <object class="GtkTable" id="main-table">
b31790
+    <property name="visible">True</property>
b31790
+    <property name="border_width">6</property>
b31790
+    <property name="n_rows">3</property>
b31790
+    <property name="n_columns">2</property>
b31790
+    <property name="column_spacing">12</property>
b31790
+    <property name="row_spacing">6</property>
b31790
+    <child>
b31790
+      <object class="GtkHBox" id="hbox3">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="spacing">12</property>
b31790
+        <child>
b31790
+          <object class="GtkEntry" id="session_properties_command_entry">
b31790
+            <property name="visible">True</property>
b31790
+            <property name="can_focus">True</property>
b31790
+            <property name="invisible_char">●</property>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="position">0</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+        <child>
b31790
+          <object class="GtkButton" id="session_properties_browse_button">
b31790
+            <property name="label" translatable="yes">Browse…</property>
b31790
+            <property name="visible">True</property>
b31790
+            <property name="can_focus">True</property>
b31790
+            <property name="receives_default">True</property>
b31790
+          </object>
b31790
+          <packing>
b31790
+            <property name="expand">False</property>
b31790
+            <property name="fill">False</property>
b31790
+            <property name="position">1</property>
b31790
+          </packing>
b31790
+        </child>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="left_attach">1</property>
b31790
+        <property name="right_attach">2</property>
b31790
+        <property name="top_attach">1</property>
b31790
+        <property name="bottom_attach">2</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkEntry" id="session_properties_comment_entry">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="can_focus">True</property>
b31790
+        <property name="invisible_char">●</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="left_attach">1</property>
b31790
+        <property name="right_attach">2</property>
b31790
+        <property name="top_attach">2</property>
b31790
+        <property name="bottom_attach">3</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkEntry" id="session_properties_name_entry">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="can_focus">True</property>
b31790
+        <property name="invisible_char">●</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="left_attach">1</property>
b31790
+        <property name="right_attach">2</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkLabel" id="label3">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="xalign">0</property>
b31790
+        <property name="label" translatable="yes">Comm_ent:</property>
b31790
+        <property name="use_underline">True</property>
b31790
+        <property name="mnemonic_widget">label2</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="top_attach">2</property>
b31790
+        <property name="bottom_attach">3</property>
b31790
+        <property name="x_options">GTK_FILL</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkLabel" id="label2">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="xalign">0</property>
b31790
+        <property name="label" translatable="yes">Co_mmand:</property>
b31790
+        <property name="use_underline">True</property>
b31790
+        <property name="mnemonic_widget">session_properties_command_entry</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="top_attach">1</property>
b31790
+        <property name="bottom_attach">2</property>
b31790
+        <property name="x_options">GTK_FILL</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+    <child>
b31790
+      <object class="GtkLabel" id="label1">
b31790
+        <property name="visible">True</property>
b31790
+        <property name="xalign">0</property>
b31790
+        <property name="label" translatable="yes">_Name:</property>
b31790
+        <property name="use_underline">True</property>
b31790
+        <property name="mnemonic_widget">session_properties_name_entry</property>
b31790
+      </object>
b31790
+      <packing>
b31790
+        <property name="x_options">GTK_FILL</property>
b31790
+        <property name="y_options">GTK_FILL</property>
b31790
+      </packing>
b31790
+    </child>
b31790
+  </object>
b31790
+</interface>
b31790
diff --git a/doc/man/gnome-session.1 b/doc/man/gnome-session.1
b31790
index bf9cf808..35c062c5 100644
b31790
--- a/doc/man/gnome-session.1
b31790
+++ b/doc/man/gnome-session.1
b31790
@@ -67,46 +67,48 @@ Name=GNOME
b31790
 RequiredComponents=gnome-shell;gnome-settings-daemon;
b31790
 .in
b31790
 .fi
b31790
 .PP
b31790
 The \fB.session\fP files are looked for in
b31790
 \fB$XDG_CONFIG_HOME/gnome-session/sessions\fP,
b31790
 \fB$XDG_CONFIG_DIRS/gnome-session/sessions\fP and
b31790
 \fB$XDG_DATA_DIRS/gnome-session/sessions\fP.
b31790
 .SH ENVIRONMENT
b31790
 \fIgnome-session\fP sets several environment variables for the use of
b31790
 its child processes:
b31790
 .PP
b31790
 .B SESSION_MANAGER
b31790
 .IP
b31790
 This variable is used by session-manager aware clients to contact
b31790
 gnome-session.
b31790
 .PP
b31790
 .B DISPLAY
b31790
 .IP
b31790
 This variable is set to the X display being used by
b31790
 \fIgnome-session\fP. Note that if the \fI--display\fP option is used
b31790
 this might be different from the setting of the environment variable
b31790
 when gnome-session is invoked.
b31790
 .SH FILES
b31790
 .PP
b31790
 .B $XDG_CONFIG_HOME/config/autostart
b31790
 .B $XDG_CONFIG_DIRS/config/autostart
b31790
 .B /usr/share/gnome/autostart
b31790
 .IP
b31790
 The applications defined in those directories will be started on login.
b31790
+\fIgnome-session-properties(1)\fP can be used to easily configure them.
b31790
 .PP
b31790
 .B $XDG_CONFIG_HOME/gnome-session/sessions
b31790
 .B $XDG_CONFIG_DIRS/gnome-session/sessions
b31790
 .B $XDG_DATA_DIRS/gnome-session/sessions
b31790
 .IP
b31790
 These directories contain the \fB.session\fP files that can be used
b31790
 with the \fI--session\fP option.
b31790
 .PP
b31790
 .B $XDG_CONFIG_HOME/gnome-session/saved-session
b31790
 .IP
b31790
 This directory contains the list of applications of the saved session.
b31790
 .SH BUGS
b31790
 If you find bugs in the \fIgnome-session\fP program, please report
b31790
 these on https://bugzilla.gnome.org.
b31790
 .SH SEE ALSO
b31790
+.BR gnome-session-properties(1)
b31790
 .BR gnome-session-quit(1)
b31790
diff --git a/po/POTFILES.in b/po/POTFILES.in
b31790
index cc1170aa..76882645 100644
b31790
--- a/po/POTFILES.in
b31790
+++ b/po/POTFILES.in
b31790
@@ -1,18 +1,19 @@
b31790
 # List of source files containing translatable strings.
b31790
 # Please keep this file sorted alphabetically.
b31790
 data/gnome-custom-session.desktop.in
b31790
 data/gnome.desktop.in
b31790
 data/gnome-xorg.desktop.in
b31790
 data/gnome-dummy.session.desktop.in.in
b31790
 data/gnome.session.desktop.in.in
b31790
 [type: gettext/glade]data/session-selector.ui
b31790
+[type: gettext/glade]data/session-properties.ui
b31790
 gnome-session/gsm-fail-whale-dialog.c
b31790
 gnome-session/gsm-manager.c
b31790
 gnome-session/gsm-process-helper.c
b31790
 gnome-session/gsm-util.c
b31790
 gnome-session/gsm-xsmp-client.c
b31790
 gnome-session/gsm-xsmp-server.c
b31790
 gnome-session/main.c
b31790
 tools/gnome-session-inhibit.c
b31790
 tools/gnome-session-selector.c
b31790
 tools/gnome-session-quit.c
b31790
-- 
b31790
2.14.2
b31790