From 0313a4089306caedfdc001644a4b4ec76cb2d31a Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 10 Sep 2019 23:10:44 -0400 Subject: initial commit Baseline child packages are tested, minus plymouth and greeter; Plymouth is not packaged for devuan (banned because of systemd) and greeter depends on lightdm-webkit-greeter which I need to build. --- chicago95/debian/README.Debian | 8 + chicago95/debian/changelog | 5 + chicago95/debian/chicago95-startup.desktop | 8 + chicago95/debian/chicago95-theme-all.install | 1 + chicago95/debian/chicago95-theme-cursors.install | 3 + chicago95/debian/chicago95-theme-doc.docs | 4 + chicago95/debian/chicago95-theme-doc.install | 0 chicago95/debian/chicago95-theme-fonts.install | 1 + chicago95/debian/chicago95-theme-greeter.install | 1 + chicago95/debian/chicago95-theme-gtk.install | 2 + chicago95/debian/chicago95-theme-icons.install | 2 + .../debian/chicago95-theme-login-sound.install | 1 + chicago95/debian/chicago95-theme-plymouth.install | 2 + chicago95/debian/chicago95-theme-plymouth.postinst | 19 + chicago95/debian/chicago95-theme-plymouth.prerm | 25 + chicago95/debian/clean | 1 + chicago95/debian/compat | 1 + chicago95/debian/control | 88 + chicago95/debian/copyright | 8999 ++++++++++++++++++++ chicago95/debian/links | 1 + chicago95/debian/patches/series | 1 + chicago95/debian/postrm | 17 + chicago95/debian/preinst | 20 + chicago95/debian/rules | 24 + chicago95/debian/source/format | 1 + chicago95/debian/source/local-options | 2 + chicago95/debian/watch | 2 + 27 files changed, 9239 insertions(+) create mode 100644 chicago95/debian/README.Debian create mode 100644 chicago95/debian/changelog create mode 100644 chicago95/debian/chicago95-startup.desktop create mode 100644 chicago95/debian/chicago95-theme-all.install create mode 100644 chicago95/debian/chicago95-theme-cursors.install create mode 100644 chicago95/debian/chicago95-theme-doc.docs create mode 100644 chicago95/debian/chicago95-theme-doc.install create mode 100644 chicago95/debian/chicago95-theme-fonts.install create mode 100644 chicago95/debian/chicago95-theme-greeter.install create mode 100644 chicago95/debian/chicago95-theme-gtk.install create mode 100644 chicago95/debian/chicago95-theme-icons.install create mode 100644 chicago95/debian/chicago95-theme-login-sound.install create mode 100644 chicago95/debian/chicago95-theme-plymouth.install create mode 100644 chicago95/debian/chicago95-theme-plymouth.postinst create mode 100644 chicago95/debian/chicago95-theme-plymouth.prerm create mode 100644 chicago95/debian/clean create mode 100644 chicago95/debian/compat create mode 100644 chicago95/debian/control create mode 100644 chicago95/debian/copyright create mode 100644 chicago95/debian/links create mode 100644 chicago95/debian/patches/series create mode 100644 chicago95/debian/postrm create mode 100644 chicago95/debian/preinst create mode 100755 chicago95/debian/rules create mode 100644 chicago95/debian/source/format create mode 100644 chicago95/debian/source/local-options create mode 100644 chicago95/debian/watch diff --git a/chicago95/debian/README.Debian b/chicago95/debian/README.Debian new file mode 100644 index 0000000..e423f73 --- /dev/null +++ b/chicago95/debian/README.Debian @@ -0,0 +1,8 @@ +chicago95 for Devuan + + * Future improvements can include: + - KDE components + - lightdm-webkit2-greet (need to build package) + - Split into the various binary packages. + + -- B Stack Tue, 10 Sep 2019 20:42:20 -0400 diff --git a/chicago95/debian/changelog b/chicago95/debian/changelog new file mode 100644 index 0000000..0b8a12b --- /dev/null +++ b/chicago95/debian/changelog @@ -0,0 +1,5 @@ +chicago95 (0.0.1-1+devuan-1) obs; urgency=low + + * Initial release. + + -- B Stack Tue, 10 Sep 2019 20:42:20 -0400 diff --git a/chicago95/debian/chicago95-startup.desktop b/chicago95/debian/chicago95-startup.desktop new file mode 100644 index 0000000..2253c2b --- /dev/null +++ b/chicago95/debian/chicago95-startup.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Name=Chicago95 startup sound +Exec=play /usr/share/sounds/Chicago95/startup.ogg +NoDisplay=true +Terminal=false +Categories= +GenericName=startup sound diff --git a/chicago95/debian/chicago95-theme-all.install b/chicago95/debian/chicago95-theme-all.install new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/chicago95/debian/chicago95-theme-all.install @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/chicago95/debian/chicago95-theme-cursors.install b/chicago95/debian/chicago95-theme-cursors.install new file mode 100644 index 0000000..198048e --- /dev/null +++ b/chicago95/debian/chicago95-theme-cursors.install @@ -0,0 +1,3 @@ +Cursors/Chicago95_Cursor_Black /usr/share/icons/ +Cursors/Chicago95_Cursor_White /usr/share/icons/ +Cursors/Chicago95_Emerald /usr/share/icons/ diff --git a/chicago95/debian/chicago95-theme-doc.docs b/chicago95/debian/chicago95-theme-doc.docs new file mode 100644 index 0000000..4c3cb1e --- /dev/null +++ b/chicago95/debian/chicago95-theme-doc.docs @@ -0,0 +1,4 @@ +*.md +Plymouth/Readme.md +Screenshots/SCREENSHOTS.md +Lightdm/Chicago95/README.md diff --git a/chicago95/debian/chicago95-theme-doc.install b/chicago95/debian/chicago95-theme-doc.install new file mode 100644 index 0000000..e69de29 diff --git a/chicago95/debian/chicago95-theme-fonts.install b/chicago95/debian/chicago95-theme-fonts.install new file mode 100644 index 0000000..416d785 --- /dev/null +++ b/chicago95/debian/chicago95-theme-fonts.install @@ -0,0 +1 @@ +Fonts/vga_font /usr/share/fonts/truetype/ diff --git a/chicago95/debian/chicago95-theme-greeter.install b/chicago95/debian/chicago95-theme-greeter.install new file mode 100644 index 0000000..ddb5bf7 --- /dev/null +++ b/chicago95/debian/chicago95-theme-greeter.install @@ -0,0 +1 @@ +Lightdm/Chicago95 /usr/share/lightdm-webkit/themes/ diff --git a/chicago95/debian/chicago95-theme-gtk.install b/chicago95/debian/chicago95-theme-gtk.install new file mode 100644 index 0000000..13fe526 --- /dev/null +++ b/chicago95/debian/chicago95-theme-gtk.install @@ -0,0 +1,2 @@ +Extras/Chicago95.theme /usr/share/xfce4/terminal/colorschemes/ +Theme/Chicago95 /usr/share/themes/ diff --git a/chicago95/debian/chicago95-theme-icons.install b/chicago95/debian/chicago95-theme-icons.install new file mode 100644 index 0000000..fd85c66 --- /dev/null +++ b/chicago95/debian/chicago95-theme-icons.install @@ -0,0 +1,2 @@ +Icons/Chicago95 /usr/share/icons/ +Icons/Chicago95-tux /usr/share/icons/ diff --git a/chicago95/debian/chicago95-theme-login-sound.install b/chicago95/debian/chicago95-theme-login-sound.install new file mode 100644 index 0000000..fd9c5dc --- /dev/null +++ b/chicago95/debian/chicago95-theme-login-sound.install @@ -0,0 +1 @@ +debian/usr/share/sounds/Chicago95/startup.ogg /usr/share/sounds/Chicago95/ diff --git a/chicago95/debian/chicago95-theme-plymouth.install b/chicago95/debian/chicago95-theme-plymouth.install new file mode 100644 index 0000000..c9b20d6 --- /dev/null +++ b/chicago95/debian/chicago95-theme-plymouth.install @@ -0,0 +1,2 @@ +Plymouth/Chicago95 /usr/share/plymouth/themes/ +Plymouth/RetroTux /usr/share/plymouth/themes/ diff --git a/chicago95/debian/chicago95-theme-plymouth.postinst b/chicago95/debian/chicago95-theme-plymouth.postinst new file mode 100644 index 0000000..89f4ae8 --- /dev/null +++ b/chicago95/debian/chicago95-theme-plymouth.postinst @@ -0,0 +1,19 @@ +#!/bin/sh +set -e + +case "$1" in + configure| abort-upgrade|abort-remove|abort-deconfigure) + update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth 80 + update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Retrotux/Retrotux.plymouth 70 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 diff --git a/chicago95/debian/chicago95-theme-plymouth.prerm b/chicago95/debian/chicago95-theme-plymouth.prerm new file mode 100644 index 0000000..7ab6565 --- /dev/null +++ b/chicago95/debian/chicago95-theme-plymouth.prerm @@ -0,0 +1,25 @@ +#!/bin/sh +set -e + +case "$1" in + remove|deconfigure) + update-alternatives --remove default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth + update-alternatives --remove default.plymouth /usr/share/plymouth/themes/RetroTux/RetroTux.plymouth + ;; + + upgrade) + ;; + + failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 diff --git a/chicago95/debian/clean b/chicago95/debian/clean new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/chicago95/debian/clean @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/chicago95/debian/compat b/chicago95/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/chicago95/debian/compat @@ -0,0 +1 @@ +11 diff --git a/chicago95/debian/control b/chicago95/debian/control new file mode 100644 index 0000000..216ee18 --- /dev/null +++ b/chicago95/debian/control @@ -0,0 +1,88 @@ +Source: chicago95 +Section: misc +Priority: optional +Maintainer: B Stack +Build-Depends: debhelper (>=11~) +Standards-Version: 4.1.4 +Homepage: https://github.com/grassmunk/Chicago95 + +Package: chicago95-theme-all +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, + chicago95-theme-cursors, + chicago95-theme-doc, + chicago95-theme-fonts, + chicago95-theme-greeter, + chicago95-theme-gtk, + chicago95-theme-icons, + chicago95-theme-plymouth, + chicago95-theme-login-sound, +Description: XFCE Windows 95 Total Conversion + Assets to allow customization of Xfce to look as + close to Microsoft Windows 95 as possible. + +Package: chicago95-theme-cursors +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: Mouse cursor themes for Chicago95 + Mouse cursors for the Chicago95 theme suite. + +Package: chicago95-theme-doc +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: Documentation for Chicago95 + Documentation and readmes for the Chicago95 theme + suite, including ultimate ricing guides. + +Package: chicago95-theme-fonts +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: Fonts for Chicago95 + Terminal fonts for the Chicago95 theme suite. + Overall system fonts are proprietary but described + in the documentation for the theme. + +Package: chicago95-theme-greeter +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, + lightdm-webkit2-greeter, +Description: Lightdm webkit greeter for Chicago95 + Currently broken because no debian derivative yet + packages lightdm-webkit2-greeter. + WORKHERE https://build.opensuse.org/package/show/home:antergos/lightdm-webkit2-greeter + +Package: chicago95-theme-gtk +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: GTK and WM themes for Chicago95 + Themes for GTK2, GTK3, Metacity, and more, for the + Chicago95 theme suite. + +Package: chicago95-theme-icons +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: Icon themes for Chicago95 + Icon themes for Chicago95 theme suite. + +Package: chicago95-theme-plymouth +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, + plymouth +Description: Plymouth theme for Chicago95 + Currently broken because Devuan does not package plymouth. + +Package: chicago95-theme-login-sound +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends}, + sox +Description: Login sound for Chicago95 + XDG autostart and sound file for Chicago95 theme suite. diff --git a/chicago95/debian/copyright b/chicago95/debian/copyright new file mode 100644 index 0000000..b3c7458 --- /dev/null +++ b/chicago95/debian/copyright @@ -0,0 +1,8999 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: chicago95 +Source: +# +# Please double check copyright with the licensecheck(1) command. + +Files: CREDITS + Cursors/Chicago95_Cursor_Black/cursors/HDoubleArrow + Cursors/Chicago95_Cursor_Black/cursors/HandGrab + Cursors/Chicago95_Cursor_Black/cursors/HandSqueezed + Cursors/Chicago95_Cursor_Black/cursors/VDoubleArrow + Cursors/Chicago95_Cursor_Black/cursors/X-cursor + Cursors/Chicago95_Cursor_Black/cursors/X_cursor + Cursors/Chicago95_Cursor_Black/cursors/arrow + Cursors/Chicago95_Cursor_Black/cursors/base_arrow_down + Cursors/Chicago95_Cursor_Black/cursors/base_arrow_up + Cursors/Chicago95_Cursor_Black/cursors/based_arrow_down + Cursors/Chicago95_Cursor_Black/cursors/based_arrow_up + Cursors/Chicago95_Cursor_Black/cursors/bd_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/bottom_left_corner + Cursors/Chicago95_Cursor_Black/cursors/bottom_right_corner + Cursors/Chicago95_Cursor_Black/cursors/bottom_side + Cursors/Chicago95_Cursor_Black/cursors/center_ptr + Cursors/Chicago95_Cursor_Black/cursors/circle + Cursors/Chicago95_Cursor_Black/cursors/copy + Cursors/Chicago95_Cursor_Black/cursors/cross + Cursors/Chicago95_Cursor_Black/cursors/cross_reverse + Cursors/Chicago95_Cursor_Black/cursors/crossed_circle + Cursors/Chicago95_Cursor_Black/cursors/crosshair + Cursors/Chicago95_Cursor_Black/cursors/dnd-ask + Cursors/Chicago95_Cursor_Black/cursors/dnd-copy + Cursors/Chicago95_Cursor_Black/cursors/dnd-link + Cursors/Chicago95_Cursor_Black/cursors/dnd-move + Cursors/Chicago95_Cursor_Black/cursors/dnd-none + Cursors/Chicago95_Cursor_Black/cursors/double_arrow + Cursors/Chicago95_Cursor_Black/cursors/draft_large + Cursors/Chicago95_Cursor_Black/cursors/draft_small + Cursors/Chicago95_Cursor_Black/cursors/fd_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/fleur + Cursors/Chicago95_Cursor_Black/cursors/h_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/hand + Cursors/Chicago95_Cursor_Black/cursors/hand1 + Cursors/Chicago95_Cursor_Black/cursors/hand2 + Cursors/Chicago95_Cursor_Black/cursors/ibeam + Cursors/Chicago95_Cursor_Black/cursors/left_ptr + Cursors/Chicago95_Cursor_Black/cursors/left_ptr_watch + Cursors/Chicago95_Cursor_Black/cursors/left_side + Cursors/Chicago95_Cursor_Black/cursors/link + Cursors/Chicago95_Cursor_Black/cursors/ll_angle + Cursors/Chicago95_Cursor_Black/cursors/lr_angle + Cursors/Chicago95_Cursor_Black/cursors/move + Cursors/Chicago95_Cursor_Black/cursors/pencil + Cursors/Chicago95_Cursor_Black/cursors/plus + Cursors/Chicago95_Cursor_Black/cursors/question_arrow + Cursors/Chicago95_Cursor_Black/cursors/right_ptr + Cursors/Chicago95_Cursor_Black/cursors/right_side + Cursors/Chicago95_Cursor_Black/cursors/sb_down_arrow + Cursors/Chicago95_Cursor_Black/cursors/sb_h_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/sb_left_arrow + Cursors/Chicago95_Cursor_Black/cursors/sb_right_arrow + Cursors/Chicago95_Cursor_Black/cursors/sb_up_arrow + Cursors/Chicago95_Cursor_Black/cursors/sb_v_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/tcross + Cursors/Chicago95_Cursor_Black/cursors/top_left_arrow + Cursors/Chicago95_Cursor_Black/cursors/top_left_corner + Cursors/Chicago95_Cursor_Black/cursors/top_right_corner + Cursors/Chicago95_Cursor_Black/cursors/top_side + Cursors/Chicago95_Cursor_Black/cursors/ul_angle + Cursors/Chicago95_Cursor_Black/cursors/ur_angle + Cursors/Chicago95_Cursor_Black/cursors/v_double_arrow + Cursors/Chicago95_Cursor_Black/cursors/watch + Cursors/Chicago95_Cursor_Black/cursors/xterm + Cursors/Chicago95_Cursor_Black/cursors/zoomIn + Cursors/Chicago95_Cursor_Black/cursors/zoomOut + Cursors/Chicago95_Cursor_Black/index.theme + Cursors/Chicago95_Cursor_Black/src/AngleNE.conf + Cursors/Chicago95_Cursor_Black/src/AngleNE.png + Cursors/Chicago95_Cursor_Black/src/AngleNW.conf + Cursors/Chicago95_Cursor_Black/src/AngleNW.png + Cursors/Chicago95_Cursor_Black/src/AppStarting.conf + Cursors/Chicago95_Cursor_Black/src/AppStarting.png + Cursors/Chicago95_Cursor_Black/src/Arrow.conf + Cursors/Chicago95_Cursor_Black/src/Arrow.png + Cursors/Chicago95_Cursor_Black/src/ArrowRight.conf + Cursors/Chicago95_Cursor_Black/src/ArrowRight.png + Cursors/Chicago95_Cursor_Black/src/BaseN.conf + Cursors/Chicago95_Cursor_Black/src/BaseN.png + Cursors/Chicago95_Cursor_Black/src/Build.sh + Cursors/Chicago95_Cursor_Black/src/Circle.conf + Cursors/Chicago95_Cursor_Black/src/Circle.png + Cursors/Chicago95_Cursor_Black/src/Copy.conf + Cursors/Chicago95_Cursor_Black/src/Copy.png + Cursors/Chicago95_Cursor_Black/src/Cross.conf + Cursors/Chicago95_Cursor_Black/src/Cross.png + Cursors/Chicago95_Cursor_Black/src/Crosshair.conf + Cursors/Chicago95_Cursor_Black/src/Crosshair.png + Cursors/Chicago95_Cursor_Black/src/DND-ask.conf + Cursors/Chicago95_Cursor_Black/src/DND-ask.png + Cursors/Chicago95_Cursor_Black/src/DND-copy.conf + Cursors/Chicago95_Cursor_Black/src/DND-copy.png + Cursors/Chicago95_Cursor_Black/src/DND-link.conf + Cursors/Chicago95_Cursor_Black/src/DND-link.png + Cursors/Chicago95_Cursor_Black/src/DownArrow.conf + Cursors/Chicago95_Cursor_Black/src/DownArrow.png + Cursors/Chicago95_Cursor_Black/src/HDoubleArrow.conf + Cursors/Chicago95_Cursor_Black/src/HDoubleArrow.png + Cursors/Chicago95_Cursor_Black/src/Hand.conf + Cursors/Chicago95_Cursor_Black/src/Hand.png + Cursors/Chicago95_Cursor_Black/src/HandPointer.png + Cursors/Chicago95_Cursor_Black/src/Handgrab.conf + Cursors/Chicago95_Cursor_Black/src/Handsqueezed.conf + Cursors/Chicago95_Cursor_Black/src/Handsqueezed.png + Cursors/Chicago95_Cursor_Black/src/Handwriting.conf + Cursors/Chicago95_Cursor_Black/src/Handwriting.png + Cursors/Chicago95_Cursor_Black/src/Help.conf + Cursors/Chicago95_Cursor_Black/src/Help.png + Cursors/Chicago95_Cursor_Black/src/IBeam.conf + Cursors/Chicago95_Cursor_Black/src/IBeam.png + Cursors/Chicago95_Cursor_Black/src/LeftArrow.conf + Cursors/Chicago95_Cursor_Black/src/LeftArrow.png + Cursors/Chicago95_Cursor_Black/src/Link.conf + Cursors/Chicago95_Cursor_Black/src/Link.png + Cursors/Chicago95_Cursor_Black/src/Move.conf + Cursors/Chicago95_Cursor_Black/src/Move.png + Cursors/Chicago95_Cursor_Black/src/NO.conf + Cursors/Chicago95_Cursor_Black/src/NO.png + Cursors/Chicago95_Cursor_Black/src/RightArrow.conf + Cursors/Chicago95_Cursor_Black/src/RightArrow.png + Cursors/Chicago95_Cursor_Black/src/SizeAll.conf + Cursors/Chicago95_Cursor_Black/src/SizeAll.png + Cursors/Chicago95_Cursor_Black/src/SizeWE.conf + Cursors/Chicago95_Cursor_Black/src/SizeWE.png + Cursors/Chicago95_Cursor_Black/src/UpArrow.conf + Cursors/Chicago95_Cursor_Black/src/UpArrow.png + Cursors/Chicago95_Cursor_Black/src/VDoubleArrow.conf + Cursors/Chicago95_Cursor_Black/src/VDoubleArrow.png + Cursors/Chicago95_Cursor_Black/src/Wait.conf + Cursors/Chicago95_Cursor_Black/src/Wait.png + Cursors/Chicago95_Cursor_Black/src/X.conf + Cursors/Chicago95_Cursor_Black/src/X.png + Cursors/Chicago95_Cursor_Black/src/ZoomIn.conf + Cursors/Chicago95_Cursor_Black/src/ZoomIn.png + Cursors/Chicago95_Cursor_Black/src/ZoomOut.conf + Cursors/Chicago95_Cursor_Black/src/ZoomOut.png + Cursors/Chicago95_Cursor_Black/src/cursors/HDoubleArrow + Cursors/Chicago95_Cursor_Black/src/cursors/HandGrab + Cursors/Chicago95_Cursor_Black/src/cursors/HandSqueezed + Cursors/Chicago95_Cursor_Black/src/cursors/VDoubleArrow + Cursors/Chicago95_Cursor_Black/src/cursors/X-cursor + Cursors/Chicago95_Cursor_Black/src/cursors/X_cursor + Cursors/Chicago95_Cursor_Black/src/cursors/arrow + Cursors/Chicago95_Cursor_Black/src/cursors/base_arrow_down + Cursors/Chicago95_Cursor_Black/src/cursors/base_arrow_up + Cursors/Chicago95_Cursor_Black/src/cursors/based_arrow_down + Cursors/Chicago95_Cursor_Black/src/cursors/based_arrow_up + Cursors/Chicago95_Cursor_Black/src/cursors/bd_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/bottom_left_corner + Cursors/Chicago95_Cursor_Black/src/cursors/bottom_right_corner + Cursors/Chicago95_Cursor_Black/src/cursors/bottom_side + Cursors/Chicago95_Cursor_Black/src/cursors/center_ptr + Cursors/Chicago95_Cursor_Black/src/cursors/circle + Cursors/Chicago95_Cursor_Black/src/cursors/copy + Cursors/Chicago95_Cursor_Black/src/cursors/cross + Cursors/Chicago95_Cursor_Black/src/cursors/cross_reverse + Cursors/Chicago95_Cursor_Black/src/cursors/crossed_circle + Cursors/Chicago95_Cursor_Black/src/cursors/crosshair + Cursors/Chicago95_Cursor_Black/src/cursors/dnd-ask + Cursors/Chicago95_Cursor_Black/src/cursors/dnd-copy + Cursors/Chicago95_Cursor_Black/src/cursors/dnd-link + Cursors/Chicago95_Cursor_Black/src/cursors/dnd-move + Cursors/Chicago95_Cursor_Black/src/cursors/dnd-none + Cursors/Chicago95_Cursor_Black/src/cursors/double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/draft_large + Cursors/Chicago95_Cursor_Black/src/cursors/draft_small + Cursors/Chicago95_Cursor_Black/src/cursors/fd_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/fleur + Cursors/Chicago95_Cursor_Black/src/cursors/h_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/hand + Cursors/Chicago95_Cursor_Black/src/cursors/hand1 + Cursors/Chicago95_Cursor_Black/src/cursors/hand2 + Cursors/Chicago95_Cursor_Black/src/cursors/ibeam + Cursors/Chicago95_Cursor_Black/src/cursors/left_ptr + Cursors/Chicago95_Cursor_Black/src/cursors/left_ptr_watch + Cursors/Chicago95_Cursor_Black/src/cursors/left_side + Cursors/Chicago95_Cursor_Black/src/cursors/link + Cursors/Chicago95_Cursor_Black/src/cursors/ll_angle + Cursors/Chicago95_Cursor_Black/src/cursors/lr_angle + Cursors/Chicago95_Cursor_Black/src/cursors/move + Cursors/Chicago95_Cursor_Black/src/cursors/pencil + Cursors/Chicago95_Cursor_Black/src/cursors/plus + Cursors/Chicago95_Cursor_Black/src/cursors/question_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/right_ptr + Cursors/Chicago95_Cursor_Black/src/cursors/right_side + Cursors/Chicago95_Cursor_Black/src/cursors/sb_down_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/sb_h_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/sb_left_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/sb_right_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/sb_up_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/sb_v_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/tcross + Cursors/Chicago95_Cursor_Black/src/cursors/top_left_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/top_left_corner + Cursors/Chicago95_Cursor_Black/src/cursors/top_right_corner + Cursors/Chicago95_Cursor_Black/src/cursors/top_side + Cursors/Chicago95_Cursor_Black/src/cursors/ul_angle + Cursors/Chicago95_Cursor_Black/src/cursors/ur_angle + Cursors/Chicago95_Cursor_Black/src/cursors/v_double_arrow + Cursors/Chicago95_Cursor_Black/src/cursors/watch + Cursors/Chicago95_Cursor_Black/src/cursors/xterm + Cursors/Chicago95_Cursor_Black/src/cursors/zoomIn + Cursors/Chicago95_Cursor_Black/src/cursors/zoomOut + Cursors/Chicago95_Cursor_White/cursors/HDoubleArrow + Cursors/Chicago95_Cursor_White/cursors/HandGrab + Cursors/Chicago95_Cursor_White/cursors/HandSqueezed + Cursors/Chicago95_Cursor_White/cursors/VDoubleArrow + Cursors/Chicago95_Cursor_White/cursors/X-cursor + Cursors/Chicago95_Cursor_White/cursors/X_cursor + Cursors/Chicago95_Cursor_White/cursors/arrow + Cursors/Chicago95_Cursor_White/cursors/base_arrow_down + Cursors/Chicago95_Cursor_White/cursors/base_arrow_up + Cursors/Chicago95_Cursor_White/cursors/based_arrow_down + Cursors/Chicago95_Cursor_White/cursors/based_arrow_up + Cursors/Chicago95_Cursor_White/cursors/bd_double_arrow + Cursors/Chicago95_Cursor_White/cursors/bottom_left_corner + Cursors/Chicago95_Cursor_White/cursors/bottom_right_corner + Cursors/Chicago95_Cursor_White/cursors/bottom_side + Cursors/Chicago95_Cursor_White/cursors/center_ptr + Cursors/Chicago95_Cursor_White/cursors/circle + Cursors/Chicago95_Cursor_White/cursors/copy + Cursors/Chicago95_Cursor_White/cursors/cross + Cursors/Chicago95_Cursor_White/cursors/cross_reverse + Cursors/Chicago95_Cursor_White/cursors/crossed_circle + Cursors/Chicago95_Cursor_White/cursors/crosshair + Cursors/Chicago95_Cursor_White/cursors/dnd-ask + Cursors/Chicago95_Cursor_White/cursors/dnd-copy + Cursors/Chicago95_Cursor_White/cursors/dnd-link + Cursors/Chicago95_Cursor_White/cursors/dnd-move + Cursors/Chicago95_Cursor_White/cursors/dnd-none + Cursors/Chicago95_Cursor_White/cursors/double_arrow + Cursors/Chicago95_Cursor_White/cursors/draft_large + Cursors/Chicago95_Cursor_White/cursors/draft_small + Cursors/Chicago95_Cursor_White/cursors/fd_double_arrow + Cursors/Chicago95_Cursor_White/cursors/fleur + Cursors/Chicago95_Cursor_White/cursors/h_double_arrow + Cursors/Chicago95_Cursor_White/cursors/hand + Cursors/Chicago95_Cursor_White/cursors/hand1 + Cursors/Chicago95_Cursor_White/cursors/hand2 + Cursors/Chicago95_Cursor_White/cursors/ibeam + Cursors/Chicago95_Cursor_White/cursors/left_ptr + Cursors/Chicago95_Cursor_White/cursors/left_ptr_watch + Cursors/Chicago95_Cursor_White/cursors/left_side + Cursors/Chicago95_Cursor_White/cursors/link + Cursors/Chicago95_Cursor_White/cursors/ll_angle + Cursors/Chicago95_Cursor_White/cursors/lr_angle + Cursors/Chicago95_Cursor_White/cursors/move + Cursors/Chicago95_Cursor_White/cursors/pencil + Cursors/Chicago95_Cursor_White/cursors/plus + Cursors/Chicago95_Cursor_White/cursors/question_arrow + Cursors/Chicago95_Cursor_White/cursors/right_ptr + Cursors/Chicago95_Cursor_White/cursors/right_side + Cursors/Chicago95_Cursor_White/cursors/sb_down_arrow + Cursors/Chicago95_Cursor_White/cursors/sb_h_double_arrow + Cursors/Chicago95_Cursor_White/cursors/sb_left_arrow + Cursors/Chicago95_Cursor_White/cursors/sb_right_arrow + Cursors/Chicago95_Cursor_White/cursors/sb_up_arrow + Cursors/Chicago95_Cursor_White/cursors/sb_v_double_arrow + Cursors/Chicago95_Cursor_White/cursors/tcross + Cursors/Chicago95_Cursor_White/cursors/top_left_arrow + Cursors/Chicago95_Cursor_White/cursors/top_left_corner + Cursors/Chicago95_Cursor_White/cursors/top_right_corner + Cursors/Chicago95_Cursor_White/cursors/top_side + Cursors/Chicago95_Cursor_White/cursors/ul_angle + Cursors/Chicago95_Cursor_White/cursors/ur_angle + Cursors/Chicago95_Cursor_White/cursors/v_double_arrow + Cursors/Chicago95_Cursor_White/cursors/watch + Cursors/Chicago95_Cursor_White/cursors/xterm + Cursors/Chicago95_Cursor_White/cursors/zoomIn + Cursors/Chicago95_Cursor_White/cursors/zoomOut + Cursors/Chicago95_Cursor_White/index.theme + Cursors/Chicago95_Cursor_White/src/AngleNE.conf + Cursors/Chicago95_Cursor_White/src/AngleNE.png + Cursors/Chicago95_Cursor_White/src/AngleNW.conf + Cursors/Chicago95_Cursor_White/src/AngleNW.png + Cursors/Chicago95_Cursor_White/src/AppStarting.conf + Cursors/Chicago95_Cursor_White/src/AppStarting.png + Cursors/Chicago95_Cursor_White/src/Arrow.conf + Cursors/Chicago95_Cursor_White/src/Arrow.png + Cursors/Chicago95_Cursor_White/src/ArrowRight.conf + Cursors/Chicago95_Cursor_White/src/ArrowRight.png + Cursors/Chicago95_Cursor_White/src/BaseN.conf + Cursors/Chicago95_Cursor_White/src/BaseN.png + Cursors/Chicago95_Cursor_White/src/Build.sh + Cursors/Chicago95_Cursor_White/src/Circle.conf + Cursors/Chicago95_Cursor_White/src/Circle.png + Cursors/Chicago95_Cursor_White/src/Copy.conf + Cursors/Chicago95_Cursor_White/src/Copy.png + Cursors/Chicago95_Cursor_White/src/Cross.conf + Cursors/Chicago95_Cursor_White/src/Cross.png + Cursors/Chicago95_Cursor_White/src/Crosshair.conf + Cursors/Chicago95_Cursor_White/src/Crosshair.png + Cursors/Chicago95_Cursor_White/src/DND-ask.conf + Cursors/Chicago95_Cursor_White/src/DND-ask.png + Cursors/Chicago95_Cursor_White/src/DND-copy.conf + Cursors/Chicago95_Cursor_White/src/DND-copy.png + Cursors/Chicago95_Cursor_White/src/DND-link.conf + Cursors/Chicago95_Cursor_White/src/DND-link.png + Cursors/Chicago95_Cursor_White/src/DownArrow.conf + Cursors/Chicago95_Cursor_White/src/DownArrow.png + Cursors/Chicago95_Cursor_White/src/HDoubleArrow.conf + Cursors/Chicago95_Cursor_White/src/HDoubleArrow.png + Cursors/Chicago95_Cursor_White/src/Hand.conf + Cursors/Chicago95_Cursor_White/src/Hand.png + Cursors/Chicago95_Cursor_White/src/HandPointer.png + Cursors/Chicago95_Cursor_White/src/Handgrab.conf + Cursors/Chicago95_Cursor_White/src/Handsqueezed.conf + Cursors/Chicago95_Cursor_White/src/Handsqueezed.png + Cursors/Chicago95_Cursor_White/src/Handwriting.conf + Cursors/Chicago95_Cursor_White/src/Handwriting.png + Cursors/Chicago95_Cursor_White/src/Help.conf + Cursors/Chicago95_Cursor_White/src/Help.png + Cursors/Chicago95_Cursor_White/src/IBeam.conf + Cursors/Chicago95_Cursor_White/src/IBeam.png + Cursors/Chicago95_Cursor_White/src/LeftArrow.conf + Cursors/Chicago95_Cursor_White/src/LeftArrow.png + Cursors/Chicago95_Cursor_White/src/Link.conf + Cursors/Chicago95_Cursor_White/src/Link.png + Cursors/Chicago95_Cursor_White/src/Move.conf + Cursors/Chicago95_Cursor_White/src/Move.png + Cursors/Chicago95_Cursor_White/src/NO.conf + Cursors/Chicago95_Cursor_White/src/NO.png + Cursors/Chicago95_Cursor_White/src/RightArrow.conf + Cursors/Chicago95_Cursor_White/src/RightArrow.png + Cursors/Chicago95_Cursor_White/src/SizeAll.conf + Cursors/Chicago95_Cursor_White/src/SizeAll.png + Cursors/Chicago95_Cursor_White/src/SizeWE.conf + Cursors/Chicago95_Cursor_White/src/SizeWE.png + Cursors/Chicago95_Cursor_White/src/UpArrow.conf + Cursors/Chicago95_Cursor_White/src/UpArrow.png + Cursors/Chicago95_Cursor_White/src/VDoubleArrow.conf + Cursors/Chicago95_Cursor_White/src/VDoubleArrow.png + Cursors/Chicago95_Cursor_White/src/Wait.conf + Cursors/Chicago95_Cursor_White/src/Wait.png + Cursors/Chicago95_Cursor_White/src/X.conf + Cursors/Chicago95_Cursor_White/src/X.png + Cursors/Chicago95_Cursor_White/src/ZoomIn.conf + Cursors/Chicago95_Cursor_White/src/ZoomIn.png + Cursors/Chicago95_Cursor_White/src/ZoomOut.conf + Cursors/Chicago95_Cursor_White/src/ZoomOut.png + Cursors/Chicago95_Emerald/cursors/HDoubleArrow + Cursors/Chicago95_Emerald/cursors/HandGrab + Cursors/Chicago95_Emerald/cursors/HandSqueezed + Cursors/Chicago95_Emerald/cursors/VDoubleArrow + Cursors/Chicago95_Emerald/cursors/X-cursor + Cursors/Chicago95_Emerald/cursors/X_cursor + Cursors/Chicago95_Emerald/cursors/arrow + Cursors/Chicago95_Emerald/cursors/base_arrow_down + Cursors/Chicago95_Emerald/cursors/base_arrow_up + Cursors/Chicago95_Emerald/cursors/based_arrow_down + Cursors/Chicago95_Emerald/cursors/based_arrow_up + Cursors/Chicago95_Emerald/cursors/bd_double_arrow + Cursors/Chicago95_Emerald/cursors/bottom_left_corner + Cursors/Chicago95_Emerald/cursors/bottom_right_corner + Cursors/Chicago95_Emerald/cursors/bottom_side + Cursors/Chicago95_Emerald/cursors/center_ptr + Cursors/Chicago95_Emerald/cursors/circle + Cursors/Chicago95_Emerald/cursors/copy + Cursors/Chicago95_Emerald/cursors/cross + Cursors/Chicago95_Emerald/cursors/cross_reverse + Cursors/Chicago95_Emerald/cursors/crossed_circle + Cursors/Chicago95_Emerald/cursors/crosshair + Cursors/Chicago95_Emerald/cursors/dnd-ask + Cursors/Chicago95_Emerald/cursors/dnd-copy + Cursors/Chicago95_Emerald/cursors/dnd-link + Cursors/Chicago95_Emerald/cursors/dnd-move + Cursors/Chicago95_Emerald/cursors/dnd-none + Cursors/Chicago95_Emerald/cursors/double_arrow + Cursors/Chicago95_Emerald/cursors/draft_large + Cursors/Chicago95_Emerald/cursors/draft_small + Cursors/Chicago95_Emerald/cursors/fd_double_arrow + Cursors/Chicago95_Emerald/cursors/fleur + Cursors/Chicago95_Emerald/cursors/h_double_arrow + Cursors/Chicago95_Emerald/cursors/hand + Cursors/Chicago95_Emerald/cursors/hand1 + Cursors/Chicago95_Emerald/cursors/hand2 + Cursors/Chicago95_Emerald/cursors/ibeam + Cursors/Chicago95_Emerald/cursors/left_ptr + Cursors/Chicago95_Emerald/cursors/left_ptr_watch + Cursors/Chicago95_Emerald/cursors/left_side + Cursors/Chicago95_Emerald/cursors/link + Cursors/Chicago95_Emerald/cursors/ll_angle + Cursors/Chicago95_Emerald/cursors/lr_angle + Cursors/Chicago95_Emerald/cursors/move + Cursors/Chicago95_Emerald/cursors/pencil + Cursors/Chicago95_Emerald/cursors/plus + Cursors/Chicago95_Emerald/cursors/question_arrow + Cursors/Chicago95_Emerald/cursors/right_ptr + Cursors/Chicago95_Emerald/cursors/right_side + Cursors/Chicago95_Emerald/cursors/sb_down_arrow + Cursors/Chicago95_Emerald/cursors/sb_h_double_arrow + Cursors/Chicago95_Emerald/cursors/sb_left_arrow + Cursors/Chicago95_Emerald/cursors/sb_right_arrow + Cursors/Chicago95_Emerald/cursors/sb_up_arrow + Cursors/Chicago95_Emerald/cursors/sb_v_double_arrow + Cursors/Chicago95_Emerald/cursors/tcross + Cursors/Chicago95_Emerald/cursors/top_left_arrow + Cursors/Chicago95_Emerald/cursors/top_left_corner + Cursors/Chicago95_Emerald/cursors/top_right_corner + Cursors/Chicago95_Emerald/cursors/top_side + Cursors/Chicago95_Emerald/cursors/ul_angle + Cursors/Chicago95_Emerald/cursors/ur_angle + Cursors/Chicago95_Emerald/cursors/v_double_arrow + Cursors/Chicago95_Emerald/cursors/watch + Cursors/Chicago95_Emerald/cursors/xterm + Cursors/Chicago95_Emerald/cursors/zoomIn + Cursors/Chicago95_Emerald/cursors/zoomOut + Cursors/Chicago95_Emerald/index.theme + Cursors/Chicago95_Emerald/src/AngleNE.conf + Cursors/Chicago95_Emerald/src/AngleNE.png + Cursors/Chicago95_Emerald/src/AngleNW.conf + Cursors/Chicago95_Emerald/src/AngleNW.png + Cursors/Chicago95_Emerald/src/AppStarting.conf + Cursors/Chicago95_Emerald/src/Appstart/appstart_01.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_02.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_03.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_04.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_05.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_06.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_07.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_08.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_09.png + Cursors/Chicago95_Emerald/src/Appstart/appstart_10.png + Cursors/Chicago95_Emerald/src/Arrow.conf + Cursors/Chicago95_Emerald/src/Arrow.png + Cursors/Chicago95_Emerald/src/ArrowRight.conf + Cursors/Chicago95_Emerald/src/ArrowRight.png + Cursors/Chicago95_Emerald/src/BaseN.conf + Cursors/Chicago95_Emerald/src/BaseN.png + Cursors/Chicago95_Emerald/src/Build.sh + Cursors/Chicago95_Emerald/src/Busy/busy_01.png + Cursors/Chicago95_Emerald/src/Busy/busy_02.png + Cursors/Chicago95_Emerald/src/Busy/busy_03.png + Cursors/Chicago95_Emerald/src/Busy/busy_04.png + Cursors/Chicago95_Emerald/src/Busy/busy_05.png + Cursors/Chicago95_Emerald/src/Busy/busy_06.png + Cursors/Chicago95_Emerald/src/Busy/busy_07.png + Cursors/Chicago95_Emerald/src/Busy/busy_08.png + Cursors/Chicago95_Emerald/src/Busy/busy_09.png + Cursors/Chicago95_Emerald/src/Busy/busy_10.png + Cursors/Chicago95_Emerald/src/Busy/busy_11.png + Cursors/Chicago95_Emerald/src/Busy/busy_12.png + Cursors/Chicago95_Emerald/src/Busy/busy_13.png + Cursors/Chicago95_Emerald/src/Busy/busy_14.png + Cursors/Chicago95_Emerald/src/Busy/busy_15.png + Cursors/Chicago95_Emerald/src/Circle.conf + Cursors/Chicago95_Emerald/src/Circle.png + Cursors/Chicago95_Emerald/src/Copy.conf + Cursors/Chicago95_Emerald/src/Copy.png + Cursors/Chicago95_Emerald/src/Cross.conf + Cursors/Chicago95_Emerald/src/Cross.png + Cursors/Chicago95_Emerald/src/Crosshair.conf + Cursors/Chicago95_Emerald/src/Crosshair.png + Cursors/Chicago95_Emerald/src/DND-ask.conf + Cursors/Chicago95_Emerald/src/DND-ask.png + Cursors/Chicago95_Emerald/src/DND-copy.conf + Cursors/Chicago95_Emerald/src/DND-copy.png + Cursors/Chicago95_Emerald/src/DND-link.conf + Cursors/Chicago95_Emerald/src/DND-link.png + Cursors/Chicago95_Emerald/src/DownArrow.conf + Cursors/Chicago95_Emerald/src/DownArrow.png + Cursors/Chicago95_Emerald/src/HDoubleArrow.conf + Cursors/Chicago95_Emerald/src/HDoubleArrow.png + Cursors/Chicago95_Emerald/src/Hand.conf + Cursors/Chicago95_Emerald/src/Hand.png + Cursors/Chicago95_Emerald/src/HandPointer.png + Cursors/Chicago95_Emerald/src/Handgrab.conf + Cursors/Chicago95_Emerald/src/Handsqueezed.conf + Cursors/Chicago95_Emerald/src/Handsqueezed.png + Cursors/Chicago95_Emerald/src/Handwriting.conf + Cursors/Chicago95_Emerald/src/Handwriting.png + Cursors/Chicago95_Emerald/src/Help.conf + Cursors/Chicago95_Emerald/src/Help.png + Cursors/Chicago95_Emerald/src/IBeam.conf + Cursors/Chicago95_Emerald/src/IBeam.png + Cursors/Chicago95_Emerald/src/LeftArrow.conf + Cursors/Chicago95_Emerald/src/LeftArrow.png + Cursors/Chicago95_Emerald/src/Link.conf + Cursors/Chicago95_Emerald/src/Link.png + Cursors/Chicago95_Emerald/src/Move.conf + Cursors/Chicago95_Emerald/src/Move.png + Cursors/Chicago95_Emerald/src/NO.conf + Cursors/Chicago95_Emerald/src/NO.png + Cursors/Chicago95_Emerald/src/RightArrow.conf + Cursors/Chicago95_Emerald/src/RightArrow.png + Cursors/Chicago95_Emerald/src/SizeAll.conf + Cursors/Chicago95_Emerald/src/SizeAll.png + Cursors/Chicago95_Emerald/src/SizeWE.conf + Cursors/Chicago95_Emerald/src/SizeWE.png + Cursors/Chicago95_Emerald/src/UpArrow.conf + Cursors/Chicago95_Emerald/src/UpArrow.png + Cursors/Chicago95_Emerald/src/VDoubleArrow.conf + Cursors/Chicago95_Emerald/src/VDoubleArrow.png + Cursors/Chicago95_Emerald/src/Wait.conf + Cursors/Chicago95_Emerald/src/X.conf + Cursors/Chicago95_Emerald/src/X.png + Cursors/Chicago95_Emerald/src/ZoomIn.conf + Cursors/Chicago95_Emerald/src/ZoomIn.png + Cursors/Chicago95_Emerald/src/ZoomOut.conf + Cursors/Chicago95_Emerald/src/ZoomOut.png + Extras/Chicago95.theme + Extras/Chicago95.zsh-theme + Extras/Chicago95_qt.conf + Extras/DOSrc + Extras/Microsoft Windows 95 Startup Sound.ogg + Extras/ZSHDOSrc + Extras/compton.conf + Extras/hidpi/.gtkrc-2.0 + Extras/override/.xsessionrc + Extras/override/gtk.css + Extras/recolor.py + Fonts/vga_font/LessPerfectDOSVGA.ttf + Fonts/vga_font/MorePerfectDOSVGA.ttf + Icons/Chicago95-tux/.icon-theme.cache + Icons/Chicago95-tux/actions/16/address-book-new.png + Icons/Chicago95-tux/actions/16/align-horizontal-center.png + Icons/Chicago95-tux/actions/16/align-horizontal-left.png + Icons/Chicago95-tux/actions/16/align-horizontal-right.png + Icons/Chicago95-tux/actions/16/align-vertical-bottom.png + Icons/Chicago95-tux/actions/16/align-vertical-center.png + Icons/Chicago95-tux/actions/16/align-vertical-top.png + Icons/Chicago95-tux/actions/16/application-exit.png + Icons/Chicago95-tux/actions/16/appointment-new.png + Icons/Chicago95-tux/actions/16/bookmark-new.png + Icons/Chicago95-tux/actions/16/call-start.png + Icons/Chicago95-tux/actions/16/call-stop.png + Icons/Chicago95-tux/actions/16/contact-new.png + Icons/Chicago95-tux/actions/16/distribute-horizontal-left.png + Icons/Chicago95-tux/actions/16/distribute-horizontal-right.png + Icons/Chicago95-tux/actions/16/distribute-vertical-bottom.png + Icons/Chicago95-tux/actions/16/distribute-vertical-center.png + Icons/Chicago95-tux/actions/16/distribute-vertical-top.png + Icons/Chicago95-tux/actions/16/document-export.png + Icons/Chicago95-tux/actions/16/document-import.png + Icons/Chicago95-tux/actions/16/document-new.png + Icons/Chicago95-tux/actions/16/document-open-recent.png + Icons/Chicago95-tux/actions/16/document-open.png + Icons/Chicago95-tux/actions/16/document-page-setup.png + Icons/Chicago95-tux/actions/16/document-print-preview.png + Icons/Chicago95-tux/actions/16/document-print.png + Icons/Chicago95-tux/actions/16/document-properties.png + Icons/Chicago95-tux/actions/16/document-revert.png + Icons/Chicago95-tux/actions/16/document-save-as.png + Icons/Chicago95-tux/actions/16/document-save.png + Icons/Chicago95-tux/actions/16/document-send.png + Icons/Chicago95-tux/actions/16/edit-clear.png + Icons/Chicago95-tux/actions/16/edit-copy.png + Icons/Chicago95-tux/actions/16/edit-cut.png + Icons/Chicago95-tux/actions/16/edit-delete.png + Icons/Chicago95-tux/actions/16/edit-find-replace.png + Icons/Chicago95-tux/actions/16/edit-find.png + Icons/Chicago95-tux/actions/16/edit-paste.png + Icons/Chicago95-tux/actions/16/edit-redo.png + Icons/Chicago95-tux/actions/16/edit-select-all.png + Icons/Chicago95-tux/actions/16/edit-undo.png + Icons/Chicago95-tux/actions/16/folder-copy.png + Icons/Chicago95-tux/actions/16/folder-new.png + Icons/Chicago95-tux/actions/16/format-indent-less.png + Icons/Chicago95-tux/actions/16/format-indent-more.png + Icons/Chicago95-tux/actions/16/format-justify-center.png + Icons/Chicago95-tux/actions/16/format-justify-fill.png + Icons/Chicago95-tux/actions/16/format-justify-left.png + Icons/Chicago95-tux/actions/16/format-justify-right.png + Icons/Chicago95-tux/actions/16/format-text-bold.png + Icons/Chicago95-tux/actions/16/format-text-direction-ltr.png + Icons/Chicago95-tux/actions/16/format-text-direction-rtl.png + Icons/Chicago95-tux/actions/16/format-text-italic.png + Icons/Chicago95-tux/actions/16/format-text-strikethrough.png + Icons/Chicago95-tux/actions/16/format-text-underline.png + Icons/Chicago95-tux/actions/16/go-bottom.png + Icons/Chicago95-tux/actions/16/go-down.png + Icons/Chicago95-tux/actions/16/go-first.png + Icons/Chicago95-tux/actions/16/go-home.png + Icons/Chicago95-tux/actions/16/go-jump.png + Icons/Chicago95-tux/actions/16/go-last.png + Icons/Chicago95-tux/actions/16/go-next.png + Icons/Chicago95-tux/actions/16/go-previous.png + Icons/Chicago95-tux/actions/16/go-top.png + Icons/Chicago95-tux/actions/16/go-up.png + Icons/Chicago95-tux/actions/16/gtk-apply.png + Icons/Chicago95-tux/actions/16/gtk-edit.png + Icons/Chicago95-tux/actions/16/gtk-no.png + Icons/Chicago95-tux/actions/16/gtk-ok.png + Icons/Chicago95-tux/actions/16/gtk-print-error.png + Icons/Chicago95-tux/actions/16/gtk-print-paused.png + Icons/Chicago95-tux/actions/16/gtk-print-report.png + Icons/Chicago95-tux/actions/16/gtk-print-warning.png + Icons/Chicago95-tux/actions/16/gtk-yes.png + Icons/Chicago95-tux/actions/16/help-about.png + Icons/Chicago95-tux/actions/16/help-contents.png + Icons/Chicago95-tux/actions/16/help-faq.png + Icons/Chicago95-tux/actions/16/im-message-new.png + Icons/Chicago95-tux/actions/16/insert-image.png + Icons/Chicago95-tux/actions/16/insert-link.png + Icons/Chicago95-tux/actions/16/insert-object.png + Icons/Chicago95-tux/actions/16/insert-text.png + Icons/Chicago95-tux/actions/16/iso-image-burn.png + Icons/Chicago95-tux/actions/16/list-add.png + Icons/Chicago95-tux/actions/16/list-remove.png + Icons/Chicago95-tux/actions/16/mail-forward.png + Icons/Chicago95-tux/actions/16/mail-mark-important.png + Icons/Chicago95-tux/actions/16/mail-mark-junk.png + Icons/Chicago95-tux/actions/16/mail-mark-not-junk.png + Icons/Chicago95-tux/actions/16/mail-mark-read.png + Icons/Chicago95-tux/actions/16/mail-mark-unread.png + Icons/Chicago95-tux/actions/16/mail-message-new.png + Icons/Chicago95-tux/actions/16/mail-reply-all.png + Icons/Chicago95-tux/actions/16/mail-reply-sender.png + Icons/Chicago95-tux/actions/16/mail-send-receive.png + Icons/Chicago95-tux/actions/16/mail-send.png + Icons/Chicago95-tux/actions/16/media-eject.png + Icons/Chicago95-tux/actions/16/media-import-audio-cd.png + Icons/Chicago95-tux/actions/16/media-playback-pause.png + Icons/Chicago95-tux/actions/16/media-playback-start.png + Icons/Chicago95-tux/actions/16/media-playback-stop.png + Icons/Chicago95-tux/actions/16/media-record.png + Icons/Chicago95-tux/actions/16/media-seek-backward.png + Icons/Chicago95-tux/actions/16/media-seek-forward.png + Icons/Chicago95-tux/actions/16/media-skip-backward.png + Icons/Chicago95-tux/actions/16/media-skip-forward.png + Icons/Chicago95-tux/actions/16/node-add.png + Icons/Chicago95-tux/actions/16/node-align-horizontal.png + Icons/Chicago95-tux/actions/16/node-align-vertical.png + Icons/Chicago95-tux/actions/16/node-break.png + Icons/Chicago95-tux/actions/16/node-cusp.png + Icons/Chicago95-tux/actions/16/node-delete-segment.png + Icons/Chicago95-tux/actions/16/node-delete.png + Icons/Chicago95-tux/actions/16/node-distribute-horizontal.png + Icons/Chicago95-tux/actions/16/node-distribute-vertical.png + Icons/Chicago95-tux/actions/16/node-join-segment.png + Icons/Chicago95-tux/actions/16/node-join.png + Icons/Chicago95-tux/actions/16/node-smooth.png + Icons/Chicago95-tux/actions/16/node-symmectric + Icons/Chicago95-tux/actions/16/node-symmetric.png + Icons/Chicago95-tux/actions/16/object-flip-horizontal.png + Icons/Chicago95-tux/actions/16/object-flip-vertical.png + Icons/Chicago95-tux/actions/16/object-group.png + Icons/Chicago95-tux/actions/16/object-inverse.png + Icons/Chicago95-tux/actions/16/object-merge.png + Icons/Chicago95-tux/actions/16/object-rotate-left.png + Icons/Chicago95-tux/actions/16/object-rotate-right.png + Icons/Chicago95-tux/actions/16/object-to-path.png + Icons/Chicago95-tux/actions/16/object-ungroup.png + Icons/Chicago95-tux/actions/16/package-available-locked.png + Icons/Chicago95-tux/actions/16/package-available-new.png + Icons/Chicago95-tux/actions/16/package-available.png + Icons/Chicago95-tux/actions/16/package-broken.png + Icons/Chicago95-tux/actions/16/package-downgrade.png + Icons/Chicago95-tux/actions/16/package-install.png + Icons/Chicago95-tux/actions/16/package-installed-locked.png + Icons/Chicago95-tux/actions/16/package-installed-outdated.png + Icons/Chicago95-tux/actions/16/package-installed-updated.png + Icons/Chicago95-tux/actions/16/package-new.png + Icons/Chicago95-tux/actions/16/package-purge.png + Icons/Chicago95-tux/actions/16/package-reinstall.png + Icons/Chicago95-tux/actions/16/package-remove.png + Icons/Chicago95-tux/actions/16/package-supported.png + Icons/Chicago95-tux/actions/16/package-upgrade.png + Icons/Chicago95-tux/actions/16/process-stop.png + Icons/Chicago95-tux/actions/16/segment-curve.png + Icons/Chicago95-tux/actions/16/segment-line.png + Icons/Chicago95-tux/actions/16/selection-break.png + Icons/Chicago95-tux/actions/16/selection-combine.png + Icons/Chicago95-tux/actions/16/selection-exclude.png + Icons/Chicago95-tux/actions/16/stroke-to-path.png + Icons/Chicago95-tux/actions/16/system-lock-screen.png + Icons/Chicago95-tux/actions/16/system-log-out.png + Icons/Chicago95-tux/actions/16/system-run.png + Icons/Chicago95-tux/actions/16/system-search.png + Icons/Chicago95-tux/actions/16/system-shutdown.png + Icons/Chicago95-tux/actions/16/system-upgrade.png + Icons/Chicago95-tux/actions/16/tab-new.png + Icons/Chicago95-tux/actions/16/tag-new.png + Icons/Chicago95-tux/actions/16/tools-check-spelling.png + Icons/Chicago95-tux/actions/16/view-fullscreen.png + Icons/Chicago95-tux/actions/16/view-refresh.png + Icons/Chicago95-tux/actions/16/view-restore.png + Icons/Chicago95-tux/actions/16/view-sort-ascending.png + Icons/Chicago95-tux/actions/16/view-sort-descending.png + Icons/Chicago95-tux/actions/16/window-close.png + Icons/Chicago95-tux/actions/16/window-new.png + Icons/Chicago95-tux/actions/16/zoom-fit-best.png + Icons/Chicago95-tux/actions/16/zoom-in.png + Icons/Chicago95-tux/actions/16/zoom-original.png + Icons/Chicago95-tux/actions/16/zoom-out.png + Icons/Chicago95-tux/actions/22/address-book-new.png + Icons/Chicago95-tux/actions/22/align-horizontal-center.png + Icons/Chicago95-tux/actions/22/align-horizontal-left.png + Icons/Chicago95-tux/actions/22/align-horizontal-right.png + Icons/Chicago95-tux/actions/22/align-vertical-bottom.png + Icons/Chicago95-tux/actions/22/align-vertical-center.png + Icons/Chicago95-tux/actions/22/align-vertical-top.png + Icons/Chicago95-tux/actions/22/application-exit.png + Icons/Chicago95-tux/actions/22/appointment-new.png + Icons/Chicago95-tux/actions/22/archive-insert.png + Icons/Chicago95-tux/actions/22/bookmark-new.png + Icons/Chicago95-tux/actions/22/call-start.png + Icons/Chicago95-tux/actions/22/call-stop.png + Icons/Chicago95-tux/actions/22/contact-new.png + Icons/Chicago95-tux/actions/22/dialog-apply.png + Icons/Chicago95-tux/actions/22/dialog-ok-apply.png + Icons/Chicago95-tux/actions/22/distribute-horizontal-left.png + Icons/Chicago95-tux/actions/22/distribute-horizontal-right.png + Icons/Chicago95-tux/actions/22/distribute-vertical-bottom.png + Icons/Chicago95-tux/actions/22/distribute-vertical-center.png + Icons/Chicago95-tux/actions/22/distribute-vertical-top.png + Icons/Chicago95-tux/actions/22/document-export.png + Icons/Chicago95-tux/actions/22/document-import.png + Icons/Chicago95-tux/actions/22/document-new.png + Icons/Chicago95-tux/actions/22/document-open-recent.png + Icons/Chicago95-tux/actions/22/document-open.png + Icons/Chicago95-tux/actions/22/document-page-setup.png + Icons/Chicago95-tux/actions/22/document-print-preview.png + Icons/Chicago95-tux/actions/22/document-print.png + Icons/Chicago95-tux/actions/22/document-properties.png + Icons/Chicago95-tux/actions/22/document-revert.png + Icons/Chicago95-tux/actions/22/document-save-as.png + Icons/Chicago95-tux/actions/22/document-save.png + Icons/Chicago95-tux/actions/22/document-send.png + Icons/Chicago95-tux/actions/22/edit-clear.png + Icons/Chicago95-tux/actions/22/edit-copy.png + Icons/Chicago95-tux/actions/22/edit-cut.png + Icons/Chicago95-tux/actions/22/edit-delete.png + Icons/Chicago95-tux/actions/22/edit-find-replace.png + Icons/Chicago95-tux/actions/22/edit-find.png + Icons/Chicago95-tux/actions/22/edit-paste.png + Icons/Chicago95-tux/actions/22/edit-redo.png + Icons/Chicago95-tux/actions/22/edit-select-all.png + Icons/Chicago95-tux/actions/22/edit-undo.png + Icons/Chicago95-tux/actions/22/folder-copy.png + Icons/Chicago95-tux/actions/22/folder-move.png + Icons/Chicago95-tux/actions/22/folder-new.png + Icons/Chicago95-tux/actions/22/format-indent-less.png + Icons/Chicago95-tux/actions/22/format-indent-more.png + Icons/Chicago95-tux/actions/22/format-justify-center.png + Icons/Chicago95-tux/actions/22/format-justify-fill.png + Icons/Chicago95-tux/actions/22/format-justify-left.png + Icons/Chicago95-tux/actions/22/format-justify-right.png + Icons/Chicago95-tux/actions/22/format-text-bold.png + Icons/Chicago95-tux/actions/22/format-text-direction-ltr.png + Icons/Chicago95-tux/actions/22/format-text-direction-rtl.png + Icons/Chicago95-tux/actions/22/format-text-italic.png + Icons/Chicago95-tux/actions/22/format-text-strikethrough.png + Icons/Chicago95-tux/actions/22/format-text-underline.png + Icons/Chicago95-tux/actions/22/go-bottom.png + Icons/Chicago95-tux/actions/22/go-down.png + Icons/Chicago95-tux/actions/22/go-first.png + Icons/Chicago95-tux/actions/22/go-home.png + Icons/Chicago95-tux/actions/22/go-jump.png + Icons/Chicago95-tux/actions/22/go-last.png + Icons/Chicago95-tux/actions/22/go-next.png + Icons/Chicago95-tux/actions/22/go-previous.png + Icons/Chicago95-tux/actions/22/go-top.png + Icons/Chicago95-tux/actions/22/go-up.png + Icons/Chicago95-tux/actions/22/gtk-apply.png + Icons/Chicago95-tux/actions/22/gtk-edit.png + Icons/Chicago95-tux/actions/22/gtk-no.png + Icons/Chicago95-tux/actions/22/gtk-ok.png + Icons/Chicago95-tux/actions/22/gtk-print-error.png + Icons/Chicago95-tux/actions/22/gtk-print-paused.png + Icons/Chicago95-tux/actions/22/gtk-print-report.png + Icons/Chicago95-tux/actions/22/gtk-print-warning.png + Icons/Chicago95-tux/actions/22/gtk-yes.png + Icons/Chicago95-tux/actions/22/help-about.png + Icons/Chicago95-tux/actions/22/help-contents.png + Icons/Chicago95-tux/actions/22/help-faq.png + Icons/Chicago95-tux/actions/22/im-message-new.png + Icons/Chicago95-tux/actions/22/insert-image.png + Icons/Chicago95-tux/actions/22/insert-link.png + Icons/Chicago95-tux/actions/22/insert-object.png + Icons/Chicago95-tux/actions/22/insert-text.png + Icons/Chicago95-tux/actions/22/iso-image-burn-22.png + Icons/Chicago95-tux/actions/22/list-add.png + Icons/Chicago95-tux/actions/22/list-remove.png + Icons/Chicago95-tux/actions/22/mail-forward-all.png + Icons/Chicago95-tux/actions/22/mail-forward.png + Icons/Chicago95-tux/actions/22/mail-mark-important.png + Icons/Chicago95-tux/actions/22/mail-mark-junk.png + Icons/Chicago95-tux/actions/22/mail-mark-not-junk.png + Icons/Chicago95-tux/actions/22/mail-mark-read.png + Icons/Chicago95-tux/actions/22/mail-mark-unread.png + Icons/Chicago95-tux/actions/22/mail-message-new.png + Icons/Chicago95-tux/actions/22/mail-reply-all.png + Icons/Chicago95-tux/actions/22/mail-reply-sender.png + Icons/Chicago95-tux/actions/22/mail-send-receive.png + Icons/Chicago95-tux/actions/22/mail-send.png + Icons/Chicago95-tux/actions/22/media-eject.png + Icons/Chicago95-tux/actions/22/media-import-audio-cd.png + Icons/Chicago95-tux/actions/22/media-playback-pause.png + Icons/Chicago95-tux/actions/22/media-playback-start.png + Icons/Chicago95-tux/actions/22/media-playback-stop.png + Icons/Chicago95-tux/actions/22/media-record.png + Icons/Chicago95-tux/actions/22/media-seek-backward.png + Icons/Chicago95-tux/actions/22/media-seek-forward.png + Icons/Chicago95-tux/actions/22/media-skip-backward.png + Icons/Chicago95-tux/actions/22/media-skip-forward.png + Icons/Chicago95-tux/actions/22/node-add.png + Icons/Chicago95-tux/actions/22/node-align-horizontal.png + Icons/Chicago95-tux/actions/22/node-align-vertical.png + Icons/Chicago95-tux/actions/22/node-break.png + Icons/Chicago95-tux/actions/22/node-curve.png + Icons/Chicago95-tux/actions/22/node-cusp.png + Icons/Chicago95-tux/actions/22/node-delete-segment.png + Icons/Chicago95-tux/actions/22/node-delete.png + Icons/Chicago95-tux/actions/22/node-distribute-horizontal.png + Icons/Chicago95-tux/actions/22/node-distribute-vertical.png + Icons/Chicago95-tux/actions/22/node-insert.png + Icons/Chicago95-tux/actions/22/node-join-segment.png + Icons/Chicago95-tux/actions/22/node-join.png + Icons/Chicago95-tux/actions/22/node-line.png + Icons/Chicago95-tux/actions/22/node-smooth.png + Icons/Chicago95-tux/actions/22/node-symmectric.png + Icons/Chicago95-tux/actions/22/node-symmetric.png + Icons/Chicago95-tux/actions/22/object-flip-horizontal.png + Icons/Chicago95-tux/actions/22/object-flip-vertical.png + Icons/Chicago95-tux/actions/22/object-inverse.png + Icons/Chicago95-tux/actions/22/object-rotate-left.png + Icons/Chicago95-tux/actions/22/object-rotate-right.png + Icons/Chicago95-tux/actions/22/object-to-path.png + Icons/Chicago95-tux/actions/22/process-stop.png + Icons/Chicago95-tux/actions/22/segment-curve.png + Icons/Chicago95-tux/actions/22/segment-line.png + Icons/Chicago95-tux/actions/22/selection-break.png + Icons/Chicago95-tux/actions/22/selection-exclude.png + Icons/Chicago95-tux/actions/22/selection-union.png + Icons/Chicago95-tux/actions/22/sleep.png + Icons/Chicago95-tux/actions/22/stroke-to-path.png + Icons/Chicago95-tux/actions/22/system-lock-screen.png + Icons/Chicago95-tux/actions/22/system-log-out.png + Icons/Chicago95-tux/actions/22/system-run.png + Icons/Chicago95-tux/actions/22/system-search.png + Icons/Chicago95-tux/actions/22/system-shutdown.png + Icons/Chicago95-tux/actions/22/tab-new.png + Icons/Chicago95-tux/actions/22/tag-new.png + Icons/Chicago95-tux/actions/22/tools-check-spelling.png + Icons/Chicago95-tux/actions/22/view-fullscreen.png + Icons/Chicago95-tux/actions/22/view-refresh.png + Icons/Chicago95-tux/actions/22/view-restore.png + Icons/Chicago95-tux/actions/22/view-sort-ascending.png + Icons/Chicago95-tux/actions/22/view-sort-descending.png + Icons/Chicago95-tux/actions/22/window-close.png + Icons/Chicago95-tux/actions/22/window-new.png + Icons/Chicago95-tux/actions/22/zoom-best-fit.png + Icons/Chicago95-tux/actions/22/zoom-fit-best.png + Icons/Chicago95-tux/actions/22/zoom-in.png + Icons/Chicago95-tux/actions/22/zoom-original.png + Icons/Chicago95-tux/actions/22/zoom-out.png + Icons/Chicago95-tux/actions/24/address-book-new.png + Icons/Chicago95-tux/actions/24/align-horizontal-center.png + Icons/Chicago95-tux/actions/24/align-horizontal-left.png + Icons/Chicago95-tux/actions/24/align-horizontal-right.png + Icons/Chicago95-tux/actions/24/application-exit.png + Icons/Chicago95-tux/actions/24/appointment-new.png + Icons/Chicago95-tux/actions/24/archive-insert.png + Icons/Chicago95-tux/actions/24/bookmark-new.png + Icons/Chicago95-tux/actions/24/call-start.png + Icons/Chicago95-tux/actions/24/call-stop.png + Icons/Chicago95-tux/actions/24/contact-new.png + Icons/Chicago95-tux/actions/24/dialog-apply.png + Icons/Chicago95-tux/actions/24/dialog-ok-apply.png + Icons/Chicago95-tux/actions/24/document-export.png + Icons/Chicago95-tux/actions/24/document-import.png + Icons/Chicago95-tux/actions/24/document-new.png + Icons/Chicago95-tux/actions/24/document-open-recent.png + Icons/Chicago95-tux/actions/24/document-open.png + Icons/Chicago95-tux/actions/24/document-page-setup.png + Icons/Chicago95-tux/actions/24/document-print-preview.png + Icons/Chicago95-tux/actions/24/document-print.png + Icons/Chicago95-tux/actions/24/document-properties.png + Icons/Chicago95-tux/actions/24/document-revert.png + Icons/Chicago95-tux/actions/24/document-save-as.png + Icons/Chicago95-tux/actions/24/document-save.png + Icons/Chicago95-tux/actions/24/document-send.png + Icons/Chicago95-tux/actions/24/edit-clear.png + Icons/Chicago95-tux/actions/24/edit-copy.png + Icons/Chicago95-tux/actions/24/edit-cut.png + Icons/Chicago95-tux/actions/24/edit-delete-mail.png + Icons/Chicago95-tux/actions/24/edit-delete.png + Icons/Chicago95-tux/actions/24/edit-find-replace.png + Icons/Chicago95-tux/actions/24/edit-find.png + Icons/Chicago95-tux/actions/24/edit-paste.png + Icons/Chicago95-tux/actions/24/edit-redo.png + Icons/Chicago95-tux/actions/24/edit-select-all.png + Icons/Chicago95-tux/actions/24/edit-undo.png + Icons/Chicago95-tux/actions/24/event-new.png + Icons/Chicago95-tux/actions/24/folder-copy.png + Icons/Chicago95-tux/actions/24/folder-move.png + Icons/Chicago95-tux/actions/24/folder-new.png + Icons/Chicago95-tux/actions/24/format-indent-less.png + Icons/Chicago95-tux/actions/24/format-indent-more.png + Icons/Chicago95-tux/actions/24/format-justify-center.png + Icons/Chicago95-tux/actions/24/format-justify-fill.png + Icons/Chicago95-tux/actions/24/format-justify-left.png + Icons/Chicago95-tux/actions/24/format-justify-right.png + Icons/Chicago95-tux/actions/24/format-text-bold.png + Icons/Chicago95-tux/actions/24/format-text-direction-ltr.png + Icons/Chicago95-tux/actions/24/format-text-direction-rtl.png + Icons/Chicago95-tux/actions/24/format-text-italic.png + Icons/Chicago95-tux/actions/24/format-text-strikethrough.png + Icons/Chicago95-tux/actions/24/format-text-underline.png + Icons/Chicago95-tux/actions/24/go-bottom.png + Icons/Chicago95-tux/actions/24/go-down.png + Icons/Chicago95-tux/actions/24/go-first.png + Icons/Chicago95-tux/actions/24/go-home.png + Icons/Chicago95-tux/actions/24/go-jump.png + Icons/Chicago95-tux/actions/24/go-last.png + Icons/Chicago95-tux/actions/24/go-next.png + Icons/Chicago95-tux/actions/24/go-previous.png + Icons/Chicago95-tux/actions/24/go-top.png + Icons/Chicago95-tux/actions/24/go-up.png + Icons/Chicago95-tux/actions/24/gtk-apply.png + Icons/Chicago95-tux/actions/24/gtk-edit.png + Icons/Chicago95-tux/actions/24/gtk-no.png + Icons/Chicago95-tux/actions/24/gtk-print-error.png + Icons/Chicago95-tux/actions/24/gtk-print-paused.png + Icons/Chicago95-tux/actions/24/gtk-print-report.png + Icons/Chicago95-tux/actions/24/gtk-print-warning.png + Icons/Chicago95-tux/actions/24/help-about.png + Icons/Chicago95-tux/actions/24/help-contents.png + Icons/Chicago95-tux/actions/24/help-faq.png + Icons/Chicago95-tux/actions/24/help-info.png + Icons/Chicago95-tux/actions/24/im-message-new.png + Icons/Chicago95-tux/actions/24/insert-image.png + Icons/Chicago95-tux/actions/24/insert-link.png + Icons/Chicago95-tux/actions/24/insert-object.png + Icons/Chicago95-tux/actions/24/insert-text.png + Icons/Chicago95-tux/actions/24/iso-image-burn.png + Icons/Chicago95-tux/actions/24/jockey-proprietary.png + Icons/Chicago95-tux/actions/24/list-add.png + Icons/Chicago95-tux/actions/24/list-remove.png + Icons/Chicago95-tux/actions/24/mail-copy.png + Icons/Chicago95-tux/actions/24/mail-forward.png + Icons/Chicago95-tux/actions/24/mail-mark-important.png + Icons/Chicago95-tux/actions/24/mail-mark-junk.png + Icons/Chicago95-tux/actions/24/mail-mark-not-junk.png + Icons/Chicago95-tux/actions/24/mail-mark-read.png + Icons/Chicago95-tux/actions/24/mail-mark-unread.png + Icons/Chicago95-tux/actions/24/mail-message-new.png + Icons/Chicago95-tux/actions/24/mail-move.png + Icons/Chicago95-tux/actions/24/mail-reply-all.png + Icons/Chicago95-tux/actions/24/mail-reply-sender.png + Icons/Chicago95-tux/actions/24/mail-send-receive.png + Icons/Chicago95-tux/actions/24/mail-send.png + Icons/Chicago95-tux/actions/24/media-eject.png + Icons/Chicago95-tux/actions/24/media-import-audio-cd.png + Icons/Chicago95-tux/actions/24/media-playback-pause.png + Icons/Chicago95-tux/actions/24/media-playback-start.png + Icons/Chicago95-tux/actions/24/media-playback-stop.png + Icons/Chicago95-tux/actions/24/media-record.png + Icons/Chicago95-tux/actions/24/media-seek-backward.png + Icons/Chicago95-tux/actions/24/media-seek-forward.png + Icons/Chicago95-tux/actions/24/media-skip-backward.png + Icons/Chicago95-tux/actions/24/media-skip-forward.png + Icons/Chicago95-tux/actions/24/object-flip-horizontal.png + Icons/Chicago95-tux/actions/24/object-flip-vertical.png + Icons/Chicago95-tux/actions/24/object-inverse.png + Icons/Chicago95-tux/actions/24/object-rotate-left.png + Icons/Chicago95-tux/actions/24/object-rotate-right.png + Icons/Chicago95-tux/actions/24/process-stop.png + Icons/Chicago95-tux/actions/24/sleep.png + Icons/Chicago95-tux/actions/24/stock_xfburn-data-copy.png + Icons/Chicago95-tux/actions/24/stock_xfburn-import-session.png + Icons/Chicago95-tux/actions/24/stock_xfburn-new-data-composition.png + Icons/Chicago95-tux/actions/24/system-lock-screen.png + Icons/Chicago95-tux/actions/24/system-log-out.png + Icons/Chicago95-tux/actions/24/system-restart.png + Icons/Chicago95-tux/actions/24/system-run.png + Icons/Chicago95-tux/actions/24/system-search.png + Icons/Chicago95-tux/actions/24/system-shutdown.png + Icons/Chicago95-tux/actions/24/tab-new.png + Icons/Chicago95-tux/actions/24/tag-new.png + Icons/Chicago95-tux/actions/24/tools-check-spelling.png + Icons/Chicago95-tux/actions/24/view-fullscreen.png + Icons/Chicago95-tux/actions/24/view-refresh.png + Icons/Chicago95-tux/actions/24/view-restore.png + Icons/Chicago95-tux/actions/24/view-sort-ascending.png + Icons/Chicago95-tux/actions/24/view-sort-descending.png + Icons/Chicago95-tux/actions/24/window-close.png + Icons/Chicago95-tux/actions/24/window-new.png + Icons/Chicago95-tux/actions/24/zoom-fit-best.png + Icons/Chicago95-tux/actions/24/zoom-in.png + Icons/Chicago95-tux/actions/24/zoom-original.png + Icons/Chicago95-tux/actions/24/zoom-out.png + Icons/Chicago95-tux/actions/32/address-book-new.png + Icons/Chicago95-tux/actions/32/appointment-new.png + Icons/Chicago95-tux/actions/32/bookmark-new.png + Icons/Chicago95-tux/actions/32/call-start.png + Icons/Chicago95-tux/actions/32/call-stop.png + Icons/Chicago95-tux/actions/32/contact-new.png + Icons/Chicago95-tux/actions/32/dialog-apply.png + Icons/Chicago95-tux/actions/32/document-export.png + Icons/Chicago95-tux/actions/32/document-import.png + Icons/Chicago95-tux/actions/32/document-new.png + Icons/Chicago95-tux/actions/32/document-open-recent.png + Icons/Chicago95-tux/actions/32/document-open.png + Icons/Chicago95-tux/actions/32/document-page-setup.png + Icons/Chicago95-tux/actions/32/document-print-preview.png + Icons/Chicago95-tux/actions/32/document-print.png + Icons/Chicago95-tux/actions/32/document-properties.png + Icons/Chicago95-tux/actions/32/document-revert.png + Icons/Chicago95-tux/actions/32/document-save-as.png + Icons/Chicago95-tux/actions/32/document-save.png + Icons/Chicago95-tux/actions/32/document-send.png + Icons/Chicago95-tux/actions/32/edit-clear.png + Icons/Chicago95-tux/actions/32/edit-copy.png + Icons/Chicago95-tux/actions/32/edit-cut.png + Icons/Chicago95-tux/actions/32/edit-delete.png + Icons/Chicago95-tux/actions/32/edit-find-replace.png + Icons/Chicago95-tux/actions/32/edit-find.png + Icons/Chicago95-tux/actions/32/edit-paste.png + Icons/Chicago95-tux/actions/32/edit-redo.png + Icons/Chicago95-tux/actions/32/edit-select-all.png + Icons/Chicago95-tux/actions/32/edit-undo.png + Icons/Chicago95-tux/actions/32/folder-new.png + Icons/Chicago95-tux/actions/32/format-indent-less.png + Icons/Chicago95-tux/actions/32/format-indent-more.png + Icons/Chicago95-tux/actions/32/format-justify-center.png + Icons/Chicago95-tux/actions/32/format-justify-fill.png + Icons/Chicago95-tux/actions/32/format-justify-left.png + Icons/Chicago95-tux/actions/32/format-justify-right.png + Icons/Chicago95-tux/actions/32/format-text-bold.png + Icons/Chicago95-tux/actions/32/format-text-direction-ltr.png + Icons/Chicago95-tux/actions/32/format-text-direction-rtl.png + Icons/Chicago95-tux/actions/32/format-text-italic.png + Icons/Chicago95-tux/actions/32/format-text-strikethrough.png + Icons/Chicago95-tux/actions/32/format-text-underline.png + Icons/Chicago95-tux/actions/32/go-bottom.png + Icons/Chicago95-tux/actions/32/go-down.png + Icons/Chicago95-tux/actions/32/go-first.png + Icons/Chicago95-tux/actions/32/go-home.png + Icons/Chicago95-tux/actions/32/go-jump.png + Icons/Chicago95-tux/actions/32/go-last.png + Icons/Chicago95-tux/actions/32/go-next.png + Icons/Chicago95-tux/actions/32/go-previous.png + Icons/Chicago95-tux/actions/32/go-top.png + Icons/Chicago95-tux/actions/32/go-up.png + Icons/Chicago95-tux/actions/32/gtk-apply.png + Icons/Chicago95-tux/actions/32/gtk-edit.png + Icons/Chicago95-tux/actions/32/gtk-no.png + Icons/Chicago95-tux/actions/32/gtk-print-error.png + Icons/Chicago95-tux/actions/32/gtk-print-paused.png + Icons/Chicago95-tux/actions/32/gtk-print-report.png + Icons/Chicago95-tux/actions/32/gtk-print-warning.png + Icons/Chicago95-tux/actions/32/help-about.png + Icons/Chicago95-tux/actions/32/help-contents.png + Icons/Chicago95-tux/actions/32/help-faq.png + Icons/Chicago95-tux/actions/32/help-info.png + Icons/Chicago95-tux/actions/32/insert-image.png + Icons/Chicago95-tux/actions/32/insert-link.png + Icons/Chicago95-tux/actions/32/insert-object.png + Icons/Chicago95-tux/actions/32/insert-text.png + Icons/Chicago95-tux/actions/32/jockey-proprietary.png + Icons/Chicago95-tux/actions/32/list-add.png + Icons/Chicago95-tux/actions/32/list-remove.png + Icons/Chicago95-tux/actions/32/mail-forward.png + Icons/Chicago95-tux/actions/32/mail-mark-important.png + Icons/Chicago95-tux/actions/32/mail-mark-read.png + Icons/Chicago95-tux/actions/32/mail-mark-unread.png + Icons/Chicago95-tux/actions/32/mail-message-new.png + Icons/Chicago95-tux/actions/32/mail-reply-all.png + Icons/Chicago95-tux/actions/32/mail-reply-sender.png + Icons/Chicago95-tux/actions/32/mail-send-receive.png + Icons/Chicago95-tux/actions/32/mail-send.png + Icons/Chicago95-tux/actions/32/media-eject.png + Icons/Chicago95-tux/actions/32/media-import-audio-cd.png + Icons/Chicago95-tux/actions/32/media-playback-pause.png + Icons/Chicago95-tux/actions/32/media-playback-start.png + Icons/Chicago95-tux/actions/32/media-playback-stop.png + Icons/Chicago95-tux/actions/32/media-record.png + Icons/Chicago95-tux/actions/32/media-seek-backward.png + Icons/Chicago95-tux/actions/32/media-seek-forward.png + Icons/Chicago95-tux/actions/32/media-skip-backward.png + Icons/Chicago95-tux/actions/32/media-skip-forward.png + Icons/Chicago95-tux/actions/32/object-flip-horizontal.png + Icons/Chicago95-tux/actions/32/object-flip-vertical.png + Icons/Chicago95-tux/actions/32/object-inverse.png + Icons/Chicago95-tux/actions/32/object-rotate-left.png + Icons/Chicago95-tux/actions/32/object-rotate-right.png + Icons/Chicago95-tux/actions/32/process-stop.png + Icons/Chicago95-tux/actions/32/system-lock-screen.png + Icons/Chicago95-tux/actions/32/system-log-out.png + Icons/Chicago95-tux/actions/32/system-restart.png + Icons/Chicago95-tux/actions/32/system-run.png + Icons/Chicago95-tux/actions/32/system-search.png + Icons/Chicago95-tux/actions/32/system-shutdown.png + Icons/Chicago95-tux/actions/32/tab-new.png + Icons/Chicago95-tux/actions/32/tag-new.png + Icons/Chicago95-tux/actions/32/tools-check-spelling.png + Icons/Chicago95-tux/actions/32/view-fullscreen.png + Icons/Chicago95-tux/actions/32/view-refresh.png + Icons/Chicago95-tux/actions/32/view-restore.png + Icons/Chicago95-tux/actions/32/view-sort-ascending.png + Icons/Chicago95-tux/actions/32/view-sort-descending.png + Icons/Chicago95-tux/actions/32/window-close.png + Icons/Chicago95-tux/actions/32/window-new.png + Icons/Chicago95-tux/actions/32/zoom-fit-best.png + Icons/Chicago95-tux/actions/32/zoom-in.png + Icons/Chicago95-tux/actions/32/zoom-original.png + Icons/Chicago95-tux/actions/32/zoom-out.png + Icons/Chicago95-tux/actions/48/address-book-new.png + Icons/Chicago95-tux/actions/48/appointment-new.png + Icons/Chicago95-tux/actions/48/archive-extract.png + Icons/Chicago95-tux/actions/48/bookmark-new.png + Icons/Chicago95-tux/actions/48/call-start.png + Icons/Chicago95-tux/actions/48/call-stop.png + Icons/Chicago95-tux/actions/48/contact-new.png + Icons/Chicago95-tux/actions/48/dialog-ok-apply.png + Icons/Chicago95-tux/actions/48/document-export.png + Icons/Chicago95-tux/actions/48/document-import.png + Icons/Chicago95-tux/actions/48/document-new.png + Icons/Chicago95-tux/actions/48/document-page-setup.png + Icons/Chicago95-tux/actions/48/document-print-preview.png + Icons/Chicago95-tux/actions/48/document-print.png + Icons/Chicago95-tux/actions/48/document-properties.png + Icons/Chicago95-tux/actions/48/document-revert.png + Icons/Chicago95-tux/actions/48/document-save-as.png + Icons/Chicago95-tux/actions/48/document-save.png + Icons/Chicago95-tux/actions/48/document-send.png + Icons/Chicago95-tux/actions/48/edit-clear.png + Icons/Chicago95-tux/actions/48/edit-copy.png + Icons/Chicago95-tux/actions/48/edit-cut.png + Icons/Chicago95-tux/actions/48/edit-delete-mail.png + Icons/Chicago95-tux/actions/48/edit-delete.png + Icons/Chicago95-tux/actions/48/edit-find-replace.png + Icons/Chicago95-tux/actions/48/edit-find.png + Icons/Chicago95-tux/actions/48/edit-paste.png + Icons/Chicago95-tux/actions/48/edit-redo.png + Icons/Chicago95-tux/actions/48/edit-select-all.png + Icons/Chicago95-tux/actions/48/edit-undo.png + Icons/Chicago95-tux/actions/48/folder-copy.png + Icons/Chicago95-tux/actions/48/folder-new.png + Icons/Chicago95-tux/actions/48/format-indent-less.png + Icons/Chicago95-tux/actions/48/format-indent-more.png + Icons/Chicago95-tux/actions/48/format-justify-center.png + Icons/Chicago95-tux/actions/48/format-justify-fill.png + Icons/Chicago95-tux/actions/48/format-justify-left.png + Icons/Chicago95-tux/actions/48/format-justify-right.png + Icons/Chicago95-tux/actions/48/format-text-bold.png + Icons/Chicago95-tux/actions/48/format-text-direction-ltr.png + Icons/Chicago95-tux/actions/48/format-text-direction-rtl.png + Icons/Chicago95-tux/actions/48/format-text-italic.png + Icons/Chicago95-tux/actions/48/format-text-strikethrough.png + Icons/Chicago95-tux/actions/48/format-text-underline.png + Icons/Chicago95-tux/actions/48/go-bottom.png + Icons/Chicago95-tux/actions/48/go-down.png + Icons/Chicago95-tux/actions/48/go-first.png + Icons/Chicago95-tux/actions/48/go-home.png + Icons/Chicago95-tux/actions/48/go-jump.png + Icons/Chicago95-tux/actions/48/go-last.png + Icons/Chicago95-tux/actions/48/go-next.png + Icons/Chicago95-tux/actions/48/go-previous.png + Icons/Chicago95-tux/actions/48/go-top.png + Icons/Chicago95-tux/actions/48/go-up.png + Icons/Chicago95-tux/actions/48/gtk-edit.png + Icons/Chicago95-tux/actions/48/gtk-print-error.png + Icons/Chicago95-tux/actions/48/gtk-print-paused.png + Icons/Chicago95-tux/actions/48/gtk-print-report.png + Icons/Chicago95-tux/actions/48/gtk-print-warning.png + Icons/Chicago95-tux/actions/48/help-about.png + Icons/Chicago95-tux/actions/48/help-contents.png + Icons/Chicago95-tux/actions/48/help-faq.png + Icons/Chicago95-tux/actions/48/help-info.png + Icons/Chicago95-tux/actions/48/insert-image.png + Icons/Chicago95-tux/actions/48/insert-link.png + Icons/Chicago95-tux/actions/48/insert-object.png + Icons/Chicago95-tux/actions/48/insert-text.png + Icons/Chicago95-tux/actions/48/iso-image-burn.png + Icons/Chicago95-tux/actions/48/jockey-proprietary.png + Icons/Chicago95-tux/actions/48/list-add.png + Icons/Chicago95-tux/actions/48/list-remove.png + Icons/Chicago95-tux/actions/48/mail-forward.png + Icons/Chicago95-tux/actions/48/mail-mark-important.png + Icons/Chicago95-tux/actions/48/mail-mark-read.png + Icons/Chicago95-tux/actions/48/mail-mark-unread.png + Icons/Chicago95-tux/actions/48/mail-message-new.png + Icons/Chicago95-tux/actions/48/mail-reply-all.png + Icons/Chicago95-tux/actions/48/mail-reply-sender.png + Icons/Chicago95-tux/actions/48/mail-send-receive.png + Icons/Chicago95-tux/actions/48/mail-send.png + Icons/Chicago95-tux/actions/48/media-eject.png + Icons/Chicago95-tux/actions/48/media-import-audio-cd.png + Icons/Chicago95-tux/actions/48/media-optical-data-new.png + Icons/Chicago95-tux/actions/48/media-optical-video-new.png + Icons/Chicago95-tux/actions/48/media-playback-pause.png + Icons/Chicago95-tux/actions/48/media-playback-start.png + Icons/Chicago95-tux/actions/48/media-playback-stop.png + Icons/Chicago95-tux/actions/48/media-record.png + Icons/Chicago95-tux/actions/48/media-seek-backward.png + Icons/Chicago95-tux/actions/48/media-seek-forward.png + Icons/Chicago95-tux/actions/48/media-skip-backward.png + Icons/Chicago95-tux/actions/48/media-skip-forward.png + Icons/Chicago95-tux/actions/48/object-flip-horizontal.png + Icons/Chicago95-tux/actions/48/object-flip-vertical.png + Icons/Chicago95-tux/actions/48/object-inverse.png + Icons/Chicago95-tux/actions/48/object-rotate-left.png + Icons/Chicago95-tux/actions/48/process-stop.png + Icons/Chicago95-tux/actions/48/sleep.png + Icons/Chicago95-tux/actions/48/stock_xfburn-data-copy.png + Icons/Chicago95-tux/actions/48/stock_xfburn-import-session.png + Icons/Chicago95-tux/actions/48/system-lock-screen.png + Icons/Chicago95-tux/actions/48/system-log-out.png + Icons/Chicago95-tux/actions/48/system-run.png + Icons/Chicago95-tux/actions/48/system-shutdown.png + Icons/Chicago95-tux/actions/48/tab-new.png + Icons/Chicago95-tux/actions/48/tag-new.png + Icons/Chicago95-tux/actions/48/tools-check-spelling.png + Icons/Chicago95-tux/actions/48/transform-rotate.png + Icons/Chicago95-tux/actions/48/view-fullscreen.png + Icons/Chicago95-tux/actions/48/view-refresh.png + Icons/Chicago95-tux/actions/48/view-restore.png + Icons/Chicago95-tux/actions/48/view-sort-ascending.png + Icons/Chicago95-tux/actions/48/view-sort-descending.png + Icons/Chicago95-tux/actions/48/window-close.png + Icons/Chicago95-tux/actions/48/window-new.png + Icons/Chicago95-tux/actions/48/zoom-fit-best.png + Icons/Chicago95-tux/actions/48/zoom-in.png + Icons/Chicago95-tux/actions/48/zoom-original.png + Icons/Chicago95-tux/actions/48/zoom-out.png + Icons/Chicago95-tux/actions/scalable/.png + Icons/Chicago95-tux/actions/scalable/.svg + Icons/Chicago95-tux/actions/symbolic/go-down-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-home-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-next-rtl-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-next-symbolic-rtl.png + Icons/Chicago95-tux/actions/symbolic/go-next-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-previous-rtl-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-previous-symbolic-rtl.png + Icons/Chicago95-tux/actions/symbolic/go-previous-symbolic.png + Icons/Chicago95-tux/actions/symbolic/go-up-symbolic.png + Icons/Chicago95-tux/actions/symbolic/help-about-symbolic.png + Icons/Chicago95-tux/actions/symbolic/view-refresh-symbolic.png + Icons/Chicago95-tux/animations/10/spinner.png + Icons/Chicago95-tux/animations/128/brasero-disk-00.png + Icons/Chicago95-tux/animations/16/brasero-disc-00.png + Icons/Chicago95-tux/animations/16/brasero-disc-05.png + Icons/Chicago95-tux/animations/16/brasero-disc-10.png + Icons/Chicago95-tux/animations/16/brasero-disc-15.png + Icons/Chicago95-tux/animations/16/brasero-disc-20.png + Icons/Chicago95-tux/animations/16/brasero-disc-25.png + Icons/Chicago95-tux/animations/16/brasero-disc-30.png + Icons/Chicago95-tux/animations/16/brasero-disc-35.png + Icons/Chicago95-tux/animations/16/brasero-disc-40.png + Icons/Chicago95-tux/animations/16/brasero-disc-45.png + Icons/Chicago95-tux/animations/16/brasero-disc-50.png + Icons/Chicago95-tux/animations/16/process-working.png + Icons/Chicago95-tux/animations/16/spinner.png + Icons/Chicago95-tux/animations/22/brasero-disc-00.png + Icons/Chicago95-tux/animations/22/brasero-disc-05.png + Icons/Chicago95-tux/animations/22/brasero-disc-10.png + Icons/Chicago95-tux/animations/22/brasero-disc-100.png + Icons/Chicago95-tux/animations/22/brasero-disc-15.png + Icons/Chicago95-tux/animations/22/brasero-disc-20.png + Icons/Chicago95-tux/animations/22/brasero-disc-25.png + Icons/Chicago95-tux/animations/22/brasero-disc-30.png + Icons/Chicago95-tux/animations/22/brasero-disc-35.png + Icons/Chicago95-tux/animations/22/brasero-disc-40.png + Icons/Chicago95-tux/animations/22/brasero-disc-45.png + Icons/Chicago95-tux/animations/22/brasero-disc-50.png + Icons/Chicago95-tux/animations/22/brasero-disc-55.png + Icons/Chicago95-tux/animations/22/brasero-disc-60.png + Icons/Chicago95-tux/animations/22/brasero-disc-65.png + Icons/Chicago95-tux/animations/22/brasero-disc-70.png + Icons/Chicago95-tux/animations/22/brasero-disc-75.png + Icons/Chicago95-tux/animations/22/brasero-disc-80.png + Icons/Chicago95-tux/animations/22/brasero-disc-85.png + Icons/Chicago95-tux/animations/22/brasero-disc-90.png + Icons/Chicago95-tux/animations/22/brasero-disc-95.png + Icons/Chicago95-tux/animations/22/nm-stage01-connecting01.png + Icons/Chicago95-tux/animations/22/nm-stage01-connecting02.png + Icons/Chicago95-tux/animations/22/nm-stage01-connecting03.png + Icons/Chicago95-tux/animations/22/nm-stage01-connecting04.png + Icons/Chicago95-tux/animations/22/process-working.png + Icons/Chicago95-tux/animations/24/nm-stage01-connecting01.png + Icons/Chicago95-tux/animations/24/nm-stage01-connecting02.png + Icons/Chicago95-tux/animations/24/nm-stage01-connecting03.png + Icons/Chicago95-tux/animations/24/nm-stage01-connecting04.png + Icons/Chicago95-tux/animations/24/process-working.png + Icons/Chicago95-tux/animations/32/brasero-disc-05.png + Icons/Chicago95-tux/animations/32/brasero-disc-10.png + Icons/Chicago95-tux/animations/32/brasero-disc-100.png + Icons/Chicago95-tux/animations/32/brasero-disc-15.png + Icons/Chicago95-tux/animations/32/brasero-disc-20.png + Icons/Chicago95-tux/animations/32/brasero-disc-25.png + Icons/Chicago95-tux/animations/32/brasero-disc-30.png + Icons/Chicago95-tux/animations/32/brasero-disc-35.png + Icons/Chicago95-tux/animations/32/brasero-disc-40.png + Icons/Chicago95-tux/animations/32/brasero-disc-45.png + Icons/Chicago95-tux/animations/32/brasero-disc-50.png + Icons/Chicago95-tux/animations/32/brasero-disc-55.png + Icons/Chicago95-tux/animations/32/brasero-disc-60.png + Icons/Chicago95-tux/animations/32/brasero-disc-65.png + Icons/Chicago95-tux/animations/32/brasero-disc-70.png + Icons/Chicago95-tux/animations/32/brasero-disc-75.png + Icons/Chicago95-tux/animations/32/brasero-disc-80.png + Icons/Chicago95-tux/animations/32/brasero-disc-85.png + Icons/Chicago95-tux/animations/32/brasero-disc-90.png + Icons/Chicago95-tux/animations/32/brasero-disc-95.png + Icons/Chicago95-tux/animations/32/nm-stage01-connecting01.png + Icons/Chicago95-tux/animations/32/nm-stage01-connecting02.png + Icons/Chicago95-tux/animations/32/nm-stage01-connecting03.png + Icons/Chicago95-tux/animations/32/nm-stage01-connecting04.png + Icons/Chicago95-tux/animations/32/process-working.png + Icons/Chicago95-tux/animations/48/brasero-disc-00.png + Icons/Chicago95-tux/animations/48/brasero-disc-05.png + Icons/Chicago95-tux/animations/48/brasero-disc-10.png + Icons/Chicago95-tux/animations/48/brasero-disc-100.png + Icons/Chicago95-tux/animations/48/brasero-disc-15.png + Icons/Chicago95-tux/animations/48/brasero-disc-20.png + Icons/Chicago95-tux/animations/48/brasero-disc-25.png + Icons/Chicago95-tux/animations/48/brasero-disc-30.png + Icons/Chicago95-tux/animations/48/brasero-disc-35.png + Icons/Chicago95-tux/animations/48/brasero-disc-40.png + Icons/Chicago95-tux/animations/48/brasero-disc-45.png + Icons/Chicago95-tux/animations/48/brasero-disc-50.png + Icons/Chicago95-tux/animations/48/brasero-disc-55.png + Icons/Chicago95-tux/animations/48/brasero-disc-60.png + Icons/Chicago95-tux/animations/48/brasero-disc-65.png + Icons/Chicago95-tux/animations/48/brasero-disc-70.png + Icons/Chicago95-tux/animations/48/brasero-disc-75.png + Icons/Chicago95-tux/animations/48/brasero-disc-80.png + Icons/Chicago95-tux/animations/48/brasero-disc-85.png + Icons/Chicago95-tux/animations/48/brasero-disc-90.png + Icons/Chicago95-tux/animations/48/brasero-disc-95.png + Icons/Chicago95-tux/animations/64/brasero-disk-00.png + Icons/Chicago95-tux/apps/16/abiword.png + Icons/Chicago95-tux/apps/16/accessories-calculator.png + Icons/Chicago95-tux/apps/16/accessories-character-map.png + Icons/Chicago95-tux/apps/16/accessories-dictionary.png + Icons/Chicago95-tux/apps/16/applets-screenshooter.png + Icons/Chicago95-tux/apps/16/application-community.png + Icons/Chicago95-tux/apps/16/application-default-icon.png + Icons/Chicago95-tux/apps/16/archive-manager.png + Icons/Chicago95-tux/apps/16/baobab.png + Icons/Chicago95-tux/apps/16/bluetooth.png + Icons/Chicago95-tux/apps/16/brasero.png + Icons/Chicago95-tux/apps/16/ccsm.png + Icons/Chicago95-tux/apps/16/checkbox.png + Icons/Chicago95-tux/apps/16/chromium-browser.png + Icons/Chicago95-tux/apps/16/clock.png + Icons/Chicago95-tux/apps/16/com.visualstudio.code.png + Icons/Chicago95-tux/apps/16/dconf-editor.png + Icons/Chicago95-tux/apps/16/display-im6.q16.png + Icons/Chicago95-tux/apps/16/easytag.png + Icons/Chicago95-tux/apps/16/empathy.png + Icons/Chicago95-tux/apps/16/evolution.png + Icons/Chicago95-tux/apps/16/facebook.png + Icons/Chicago95-tux/apps/16/firefox.png + Icons/Chicago95-tux/apps/16/flickr.png + Icons/Chicago95-tux/apps/16/gimp.png + Icons/Chicago95-tux/apps/16/gksu-root-terminal.png + Icons/Chicago95-tux/apps/16/gmail.png + Icons/Chicago95-tux/apps/16/gmusicbrowser.png + Icons/Chicago95-tux/apps/16/gnome-desktop-config.png + Icons/Chicago95-tux/apps/16/gnome-display-properties.png + Icons/Chicago95-tux/apps/16/gnome-do.png + Icons/Chicago95-tux/apps/16/gnome-inhibit-applet.png + Icons/Chicago95-tux/apps/16/gnome-logout.png + Icons/Chicago95-tux/apps/16/gnome-mines.png + Icons/Chicago95-tux/apps/16/gnome-panel-force-quit.png + Icons/Chicago95-tux/apps/16/gnome-panel-notification-area.png + Icons/Chicago95-tux/apps/16/gnome-panel-window-list.png + Icons/Chicago95-tux/apps/16/gnome-panel-workspace-switcher.png + Icons/Chicago95-tux/apps/16/gnome-session-hibernate.png + Icons/Chicago95-tux/apps/16/gnome-session-reboot.png + Icons/Chicago95-tux/apps/16/gnome-session-suspend.png + Icons/Chicago95-tux/apps/16/gnome-shutdown.png + Icons/Chicago95-tux/apps/16/gnome-sudoku.png + Icons/Chicago95-tux/apps/16/help-browser.png + Icons/Chicago95-tux/apps/16/ibus.png + Icons/Chicago95-tux/apps/16/im-aim.png + Icons/Chicago95-tux/apps/16/im-icq.png + Icons/Chicago95-tux/apps/16/im-jabber.png + Icons/Chicago95-tux/apps/16/im-msn.png + Icons/Chicago95-tux/apps/16/im-yahoo.png + Icons/Chicago95-tux/apps/16/inkscape.png + Icons/Chicago95-tux/apps/16/internet-news-reader.png + Icons/Chicago95-tux/apps/16/invest-applet.png + Icons/Chicago95-tux/apps/16/jockey.png + Icons/Chicago95-tux/apps/16/leafpad.png + Icons/Chicago95-tux/apps/16/libreoffice-base.png + Icons/Chicago95-tux/apps/16/libreoffice-calc.png + Icons/Chicago95-tux/apps/16/libreoffice-impress.png + Icons/Chicago95-tux/apps/16/libreoffice-main.png + Icons/Chicago95-tux/apps/16/libreoffice-math.png + Icons/Chicago95-tux/apps/16/lightdm-gtk-greeter-settings.png + Icons/Chicago95-tux/apps/16/logviewer.png + Icons/Chicago95-tux/apps/16/lpi-bug.png + Icons/Chicago95-tux/apps/16/lpi-help.png + Icons/Chicago95-tux/apps/16/lxfind.png + Icons/Chicago95-tux/apps/16/mate-power-manager.png + Icons/Chicago95-tux/apps/16/mateconf-editor.png + Icons/Chicago95-tux/apps/16/mdmsetup.png + Icons/Chicago95-tux/apps/16/menu-editor.png + Icons/Chicago95-tux/apps/16/midori.png + Icons/Chicago95-tux/apps/16/miro.png + Icons/Chicago95-tux/apps/16/mplayer.png + Icons/Chicago95-tux/apps/16/mugshot.png + Icons/Chicago95-tux/apps/16/multimedia-audio-player.png + Icons/Chicago95-tux/apps/16/multimedia-photo-manager.png + Icons/Chicago95-tux/apps/16/multimedia-video-player.png + Icons/Chicago95-tux/apps/16/multimedia-volume-control.png + Icons/Chicago95-tux/apps/16/office-address-book.png + Icons/Chicago95-tux/apps/16/office-calendar.png + Icons/Chicago95-tux/apps/16/onboard.png + Icons/Chicago95-tux/apps/16/ooo-draw.png + Icons/Chicago95-tux/apps/16/ooo-writer.png + Icons/Chicago95-tux/apps/16/palemoon.png + Icons/Chicago95-tux/apps/16/parole.png + Icons/Chicago95-tux/apps/16/pdfshuffler.png + Icons/Chicago95-tux/apps/16/pidgin.png + Icons/Chicago95-tux/apps/16/pithos.png + Icons/Chicago95-tux/apps/16/preferences-desktop-accessibility.png + Icons/Chicago95-tux/apps/16/preferences-desktop-default-applications.png + Icons/Chicago95-tux/apps/16/preferences-desktop-font.png + Icons/Chicago95-tux/apps/16/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95-tux/apps/16/preferences-desktop-keyboard.png + Icons/Chicago95-tux/apps/16/preferences-desktop-locale.png + Icons/Chicago95-tux/apps/16/preferences-desktop-remote-desktop.png + Icons/Chicago95-tux/apps/16/preferences-desktop-screensaver.png + Icons/Chicago95-tux/apps/16/preferences-desktop-sound.png + Icons/Chicago95-tux/apps/16/preferences-desktop-theme.png + Icons/Chicago95-tux/apps/16/preferences-desktop-wallpaper.png + Icons/Chicago95-tux/apps/16/preferences-desktop.png + Icons/Chicago95-tux/apps/16/preferences-system-network.png + Icons/Chicago95-tux/apps/16/preferences-system-power.png + Icons/Chicago95-tux/apps/16/preferences-system-windows.png + Icons/Chicago95-tux/apps/16/promoe.png + Icons/Chicago95-tux/apps/16/ristretto.png + Icons/Chicago95-tux/apps/16/session-properties.png + Icons/Chicago95-tux/apps/16/software-properties.png + Icons/Chicago95-tux/apps/16/softwarecenter.png + Icons/Chicago95-tux/apps/16/stock_keyring.png + Icons/Chicago95-tux/apps/16/system-config-date.png + Icons/Chicago95-tux/apps/16/system-config-display.png + Icons/Chicago95-tux/apps/16/system-file-manager.png + Icons/Chicago95-tux/apps/16/system-software-install.png + Icons/Chicago95-tux/apps/16/system-software-update.png + Icons/Chicago95-tux/apps/16/system-upgrade.png + Icons/Chicago95-tux/apps/16/system-users.png + Icons/Chicago95-tux/apps/16/thunderbird.png + Icons/Chicago95-tux/apps/16/tomboy.png + Icons/Chicago95-tux/apps/16/transmission.png + Icons/Chicago95-tux/apps/16/ubiquity.png + Icons/Chicago95-tux/apps/16/user-info.png + Icons/Chicago95-tux/apps/16/utilities-system-monitor.png + Icons/Chicago95-tux/apps/16/utilities-terminal.png + Icons/Chicago95-tux/apps/16/virtualbox.png + Icons/Chicago95-tux/apps/16/web-browser.png + Icons/Chicago95-tux/apps/16/window.png + Icons/Chicago95-tux/apps/16/xchat-gnome.png + Icons/Chicago95-tux/apps/16/xfce4-appfinder.png + Icons/Chicago95-tux/apps/16/xfce4-notes-plugin.png + Icons/Chicago95-tux/apps/16/xfce4-notifyd.png + Icons/Chicago95-tux/apps/16/xfce4-panel.png + Icons/Chicago95-tux/apps/16/xfce4-whiskermenu.png + Icons/Chicago95-tux/apps/16/xfce4-workspaces.png + Icons/Chicago95-tux/apps/16/youtube.png + Icons/Chicago95-tux/apps/22/abiword.png + Icons/Chicago95-tux/apps/22/accessories-calculator.png + Icons/Chicago95-tux/apps/22/accessories-character-map.png + Icons/Chicago95-tux/apps/22/accessories-dictionary.png + Icons/Chicago95-tux/apps/22/applets-screenshooter.png + Icons/Chicago95-tux/apps/22/apport.png + Icons/Chicago95-tux/apps/22/archive-manager.png + Icons/Chicago95-tux/apps/22/bluetooth.png + Icons/Chicago95-tux/apps/22/ccsm.png + Icons/Chicago95-tux/apps/22/checkbox.png + Icons/Chicago95-tux/apps/22/chromium-browser.png + Icons/Chicago95-tux/apps/22/clock.png + Icons/Chicago95-tux/apps/22/desktop-effects.png + Icons/Chicago95-tux/apps/22/desktop-effects.png.old + Icons/Chicago95-tux/apps/22/easytag.png + Icons/Chicago95-tux/apps/22/empathy.png + Icons/Chicago95-tux/apps/22/facebook.png + Icons/Chicago95-tux/apps/22/firefox.png + Icons/Chicago95-tux/apps/22/gimp.png + Icons/Chicago95-tux/apps/22/gmail.png + Icons/Chicago95-tux/apps/22/gnome-do.png + Icons/Chicago95-tux/apps/22/gnome-inhibit-applet.png + Icons/Chicago95-tux/apps/22/gnome-logout.png + Icons/Chicago95-tux/apps/22/gnome-network-properties.png + Icons/Chicago95-tux/apps/22/gnome-panel-force-quit.png + Icons/Chicago95-tux/apps/22/gnome-session-hibernate.png + Icons/Chicago95-tux/apps/22/google-chrome.png + Icons/Chicago95-tux/apps/22/gstreamer-properties.png + Icons/Chicago95-tux/apps/22/help-browser.png + Icons/Chicago95-tux/apps/22/im-aim.png + Icons/Chicago95-tux/apps/22/im-icq.png + Icons/Chicago95-tux/apps/22/im-jabber.png + Icons/Chicago95-tux/apps/22/im-msn.png + Icons/Chicago95-tux/apps/22/im-yahoo.png + Icons/Chicago95-tux/apps/22/internet-mail.png + Icons/Chicago95-tux/apps/22/internet-news-reader.png + Icons/Chicago95-tux/apps/22/invest-applet.png + Icons/Chicago95-tux/apps/22/jockey.png + Icons/Chicago95-tux/apps/22/leafpad.png + Icons/Chicago95-tux/apps/22/libreoffice-base.png + Icons/Chicago95-tux/apps/22/libreoffice-calc.png + Icons/Chicago95-tux/apps/22/libreoffice-draw.png + Icons/Chicago95-tux/apps/22/libreoffice-impress.png + Icons/Chicago95-tux/apps/22/libreoffice-main.png + Icons/Chicago95-tux/apps/22/libreoffice-math.png + Icons/Chicago95-tux/apps/22/libreoffice-writer.png + Icons/Chicago95-tux/apps/22/logviewer.png + Icons/Chicago95-tux/apps/22/lxfind.png + Icons/Chicago95-tux/apps/22/menulibre.png + Icons/Chicago95-tux/apps/22/miro-browse.png + Icons/Chicago95-tux/apps/22/miro.png + Icons/Chicago95-tux/apps/22/multimedia-audio-player.png + Icons/Chicago95-tux/apps/22/multimedia-video-player.png + Icons/Chicago95-tux/apps/22/multimedia-volume-control.png + Icons/Chicago95-tux/apps/22/office-address-book.png + Icons/Chicago95-tux/apps/22/office-calendar.png + Icons/Chicago95-tux/apps/22/office-database.png + Icons/Chicago95-tux/apps/22/palemoon.png + Icons/Chicago95-tux/apps/22/pidgin.png + Icons/Chicago95-tux/apps/22/postscript-viewer.png + Icons/Chicago95-tux/apps/22/preferences-desktop-accessibility.png + Icons/Chicago95-tux/apps/22/preferences-desktop-font.png + Icons/Chicago95-tux/apps/22/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95-tux/apps/22/preferences-desktop-keyboard.png + Icons/Chicago95-tux/apps/22/preferences-desktop-locale.png + Icons/Chicago95-tux/apps/22/preferences-desktop-remote-desktop.png + Icons/Chicago95-tux/apps/22/preferences-desktop-screensaver.png + Icons/Chicago95-tux/apps/22/preferences-desktop-sound.png + Icons/Chicago95-tux/apps/22/preferences-desktop-theme.png + Icons/Chicago95-tux/apps/22/preferences-desktop-wallpaper.png + Icons/Chicago95-tux/apps/22/preferences-system-network.png + Icons/Chicago95-tux/apps/22/preferences-system-power.png + Icons/Chicago95-tux/apps/22/preferences-system-windows.png + Icons/Chicago95-tux/apps/22/session-properties.png + Icons/Chicago95-tux/apps/22/system-config-display.png + Icons/Chicago95-tux/apps/22/system-file-manager.png + Icons/Chicago95-tux/apps/22/system-software-install.png + Icons/Chicago95-tux/apps/22/system-software-update.png + Icons/Chicago95-tux/apps/22/system-users.png + Icons/Chicago95-tux/apps/22/thunderbird.png + Icons/Chicago95-tux/apps/22/totem.png + Icons/Chicago95-tux/apps/22/ubiquity.png + Icons/Chicago95-tux/apps/22/user-info.png + Icons/Chicago95-tux/apps/22/utilities-system-monitor.png + Icons/Chicago95-tux/apps/22/utilities-terminal.png + Icons/Chicago95-tux/apps/22/virtualbox.png + Icons/Chicago95-tux/apps/22/web-browser.png + Icons/Chicago95-tux/apps/22/window.png + Icons/Chicago95-tux/apps/22/xfce4-panel-menu.png + Icons/Chicago95-tux/apps/22/xfce4-panel-menu.png.old + Icons/Chicago95-tux/apps/22/youtube.png + Icons/Chicago95-tux/apps/24/accessories-calculator.png + Icons/Chicago95-tux/apps/24/accessories-character-map.png + Icons/Chicago95-tux/apps/24/accessories-dictionary.png + Icons/Chicago95-tux/apps/24/accessories-text-editor.png + Icons/Chicago95-tux/apps/24/application-community.png + Icons/Chicago95-tux/apps/24/application-default-icon.png + Icons/Chicago95-tux/apps/24/apport.png + Icons/Chicago95-tux/apps/24/archive-manager.png + Icons/Chicago95-tux/apps/24/audio-player.png + Icons/Chicago95-tux/apps/24/baobab.png + Icons/Chicago95-tux/apps/24/bluetooth.png + Icons/Chicago95-tux/apps/24/ccsm.png + Icons/Chicago95-tux/apps/24/checkbox.png + Icons/Chicago95-tux/apps/24/chromium-browser.png + Icons/Chicago95-tux/apps/24/clock.png + Icons/Chicago95-tux/apps/24/desktop-effects.png + Icons/Chicago95-tux/apps/24/easytag.png + Icons/Chicago95-tux/apps/24/empathy.png + Icons/Chicago95-tux/apps/24/facebook.png + Icons/Chicago95-tux/apps/24/firefox.png + Icons/Chicago95-tux/apps/24/gdm-setup.png + Icons/Chicago95-tux/apps/24/gimp.png + Icons/Chicago95-tux/apps/24/gmail.png + Icons/Chicago95-tux/apps/24/gmusicbrowser.png + Icons/Chicago95-tux/apps/24/gnome-do.png + Icons/Chicago95-tux/apps/24/gnome-do.png.old + Icons/Chicago95-tux/apps/24/gnome-fs-bookmark-missing.png + Icons/Chicago95-tux/apps/24/gnome-nettool.png + Icons/Chicago95-tux/apps/24/gnome-network-properties.png + Icons/Chicago95-tux/apps/24/gnome-panel-force-quit.png + Icons/Chicago95-tux/apps/24/gnome-session-hibernate.png + Icons/Chicago95-tux/apps/24/gnome-sound-recorder.png + Icons/Chicago95-tux/apps/24/google-chrome.png + Icons/Chicago95-tux/apps/24/google-hangout.png + Icons/Chicago95-tux/apps/24/gstreamer-properties.png + Icons/Chicago95-tux/apps/24/hwbrowser.png + Icons/Chicago95-tux/apps/24/ibus.png + Icons/Chicago95-tux/apps/24/im-aim.png + Icons/Chicago95-tux/apps/24/im-icq.png + Icons/Chicago95-tux/apps/24/im-jabber.png + Icons/Chicago95-tux/apps/24/im-msn.png + Icons/Chicago95-tux/apps/24/im-yahoo.png + Icons/Chicago95-tux/apps/24/inkscape.png + Icons/Chicago95-tux/apps/24/internet-mail.png + Icons/Chicago95-tux/apps/24/internet-news-reader.png + Icons/Chicago95-tux/apps/24/invest-applet.png + Icons/Chicago95-tux/apps/24/jockey.png + Icons/Chicago95-tux/apps/24/libreoffice-base.png + Icons/Chicago95-tux/apps/24/libreoffice-calc.png + Icons/Chicago95-tux/apps/24/libreoffice-draw.png + Icons/Chicago95-tux/apps/24/libreoffice-impress.png + Icons/Chicago95-tux/apps/24/libreoffice-main.png + Icons/Chicago95-tux/apps/24/libreoffice-math.png + Icons/Chicago95-tux/apps/24/libreoffice-writer.png + Icons/Chicago95-tux/apps/24/logviewer.png + Icons/Chicago95-tux/apps/24/lxfind.png + Icons/Chicago95-tux/apps/24/menu-editor.png + Icons/Chicago95-tux/apps/24/midori.png + Icons/Chicago95-tux/apps/24/miro-browse.png + Icons/Chicago95-tux/apps/24/miro.png + Icons/Chicago95-tux/apps/24/mplayer.png + Icons/Chicago95-tux/apps/24/office-address-book.png + Icons/Chicago95-tux/apps/24/office-calendar.png + Icons/Chicago95-tux/apps/24/onboard.png + Icons/Chicago95-tux/apps/24/palemoon.png + Icons/Chicago95-tux/apps/24/postscript-viewer.png + Icons/Chicago95-tux/apps/24/preferences-desktop-accessibility.png + Icons/Chicago95-tux/apps/24/preferences-desktop-default-applications.png + Icons/Chicago95-tux/apps/24/preferences-desktop-font.png + Icons/Chicago95-tux/apps/24/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95-tux/apps/24/preferences-desktop-locale.png + Icons/Chicago95-tux/apps/24/preferences-desktop-remote-desktop.png + Icons/Chicago95-tux/apps/24/preferences-desktop-screensaver.png + Icons/Chicago95-tux/apps/24/preferences-desktop-sound.png + Icons/Chicago95-tux/apps/24/preferences-desktop-theme.png + Icons/Chicago95-tux/apps/24/preferences-desktop-wallpaper.png + Icons/Chicago95-tux/apps/24/preferences-desktop.png + Icons/Chicago95-tux/apps/24/preferences-system-network.png + Icons/Chicago95-tux/apps/24/preferences-system-power.png + Icons/Chicago95-tux/apps/24/preferences-system-windows.png + Icons/Chicago95-tux/apps/24/session-properties.png + Icons/Chicago95-tux/apps/24/shotwell.png + Icons/Chicago95-tux/apps/24/softwarecenter.png + Icons/Chicago95-tux/apps/24/stock_keyring.png + Icons/Chicago95-tux/apps/24/system-config-display.png + Icons/Chicago95-tux/apps/24/system-file-manager.png + Icons/Chicago95-tux/apps/24/system-software-install.png + Icons/Chicago95-tux/apps/24/system-software-update.png + Icons/Chicago95-tux/apps/24/system-upgrade.png + Icons/Chicago95-tux/apps/24/system-users.png + Icons/Chicago95-tux/apps/24/thunderbird.png + Icons/Chicago95-tux/apps/24/time-admin.png + Icons/Chicago95-tux/apps/24/totem.png + Icons/Chicago95-tux/apps/24/transmission.png + Icons/Chicago95-tux/apps/24/ubiquity.png + Icons/Chicago95-tux/apps/24/user-info.png + Icons/Chicago95-tux/apps/24/utilities-system-monitor.png + Icons/Chicago95-tux/apps/24/utilities-terminal.png + Icons/Chicago95-tux/apps/24/virtualbox.png + Icons/Chicago95-tux/apps/24/web-browser.png + Icons/Chicago95-tux/apps/24/wine.png + Icons/Chicago95-tux/apps/24/xchat-gnome.png + Icons/Chicago95-tux/apps/24/xfce4-splash.png + Icons/Chicago95-tux/apps/24/xfce4-weather.png + Icons/Chicago95-tux/apps/24/xfce4-workspaces.png + Icons/Chicago95-tux/apps/24/youtube.png + Icons/Chicago95-tux/apps/256/gimp.png + Icons/Chicago95-tux/apps/32/abiword.png + Icons/Chicago95-tux/apps/32/accessories-calculator.png + Icons/Chicago95-tux/apps/32/accessories-character-map.png + Icons/Chicago95-tux/apps/32/accessories-dictionary.png + Icons/Chicago95-tux/apps/32/applets-screenshooter.png + Icons/Chicago95-tux/apps/32/application-community.png + Icons/Chicago95-tux/apps/32/application-default-icon.png + Icons/Chicago95-tux/apps/32/aptoncd.png + Icons/Chicago95-tux/apps/32/archive-manager.png + Icons/Chicago95-tux/apps/32/baobab.png + Icons/Chicago95-tux/apps/32/bluetooth.png + Icons/Chicago95-tux/apps/32/brasero.png + Icons/Chicago95-tux/apps/32/ccsm.png + Icons/Chicago95-tux/apps/32/checkbox.png + Icons/Chicago95-tux/apps/32/chromium-browser.png + Icons/Chicago95-tux/apps/32/com.visualstudio.code.png + Icons/Chicago95-tux/apps/32/dconf-editor.png + Icons/Chicago95-tux/apps/32/desktop-effects.png + Icons/Chicago95-tux/apps/32/display-capplet.png + Icons/Chicago95-tux/apps/32/display-im6.q16.png + Icons/Chicago95-tux/apps/32/easytag.png + Icons/Chicago95-tux/apps/32/eom.png + Icons/Chicago95-tux/apps/32/evolution.png + Icons/Chicago95-tux/apps/32/facebook.png + Icons/Chicago95-tux/apps/32/firefox.png + Icons/Chicago95-tux/apps/32/gcolor2.png + Icons/Chicago95-tux/apps/32/gimp.png + Icons/Chicago95-tux/apps/32/gksu-root-terminal.png + Icons/Chicago95-tux/apps/32/gmail.png + Icons/Chicago95-tux/apps/32/gmusicbrowser.png + Icons/Chicago95-tux/apps/32/gnome-desktop-config.png + Icons/Chicago95-tux/apps/32/gnome-do.png + Icons/Chicago95-tux/apps/32/gnome-fs-bookmark-missing.png + Icons/Chicago95-tux/apps/32/gnome-inhibit-applet.png + Icons/Chicago95-tux/apps/32/gnome-logout.png + Icons/Chicago95-tux/apps/32/gnome-mines.png + Icons/Chicago95-tux/apps/32/gnome-nettool.png + Icons/Chicago95-tux/apps/32/gnome-network-properties.png + Icons/Chicago95-tux/apps/32/gnome-panel-clock.png + Icons/Chicago95-tux/apps/32/gnome-panel-force-quit.png + Icons/Chicago95-tux/apps/32/gnome-panel-notification-area.png + Icons/Chicago95-tux/apps/32/gnome-panel-window-list.png + Icons/Chicago95-tux/apps/32/gnome-panel-workspace-switcher.png + Icons/Chicago95-tux/apps/32/gnome-session-hibernate.png + Icons/Chicago95-tux/apps/32/gnome-session-reboot.png + Icons/Chicago95-tux/apps/32/gnome-session-suspend.png + Icons/Chicago95-tux/apps/32/gnome-shutdown.png + Icons/Chicago95-tux/apps/32/gnome-sudoku.png + Icons/Chicago95-tux/apps/32/google-hangout.png + Icons/Chicago95-tux/apps/32/help-browser.png + Icons/Chicago95-tux/apps/32/im-jabber.png + Icons/Chicago95-tux/apps/32/im-msn.png + Icons/Chicago95-tux/apps/32/im-yahoo.png + Icons/Chicago95-tux/apps/32/im.png + Icons/Chicago95-tux/apps/32/inkscape.png + Icons/Chicago95-tux/apps/32/internet-news-reader.png + Icons/Chicago95-tux/apps/32/invest-applet.png + Icons/Chicago95-tux/apps/32/leafpad.png + Icons/Chicago95-tux/apps/32/libreoffice-base.png + Icons/Chicago95-tux/apps/32/libreoffice-calc.png + Icons/Chicago95-tux/apps/32/libreoffice-impress.png + Icons/Chicago95-tux/apps/32/libreoffice-main.png + Icons/Chicago95-tux/apps/32/libreoffice-math.png + Icons/Chicago95-tux/apps/32/lightdm-gtk-greeter-settings.png + Icons/Chicago95-tux/apps/32/logviewer.png + Icons/Chicago95-tux/apps/32/lxfind.png + Icons/Chicago95-tux/apps/32/mate-notification-properties.png + Icons/Chicago95-tux/apps/32/mate-panel-launcher.png + Icons/Chicago95-tux/apps/32/mate-power-manager.png + Icons/Chicago95-tux/apps/32/mate-preferences-desktop-display.png + Icons/Chicago95-tux/apps/32/mateconf-editor.png + Icons/Chicago95-tux/apps/32/mdmsetup.png + Icons/Chicago95-tux/apps/32/menu-editor.png + Icons/Chicago95-tux/apps/32/midori.png + Icons/Chicago95-tux/apps/32/miro-browse.png + Icons/Chicago95-tux/apps/32/mozo.png + Icons/Chicago95-tux/apps/32/mplayer.png + Icons/Chicago95-tux/apps/32/mugshot.png + Icons/Chicago95-tux/apps/32/multimedia-audio-player.png + Icons/Chicago95-tux/apps/32/multimedia-video-player.png + Icons/Chicago95-tux/apps/32/multimedia-volume-control.png + Icons/Chicago95-tux/apps/32/news-feed.png + Icons/Chicago95-tux/apps/32/office-address-book.png + Icons/Chicago95-tux/apps/32/office-calendar.png + Icons/Chicago95-tux/apps/32/onboard.png + Icons/Chicago95-tux/apps/32/ooo-draw.png + Icons/Chicago95-tux/apps/32/ooo-writer.png + Icons/Chicago95-tux/apps/32/palemoon.png + Icons/Chicago95-tux/apps/32/palm-pilot-sync + Icons/Chicago95-tux/apps/32/pidgin.png + Icons/Chicago95-tux/apps/32/plugin-scale.png + Icons/Chicago95-tux/apps/32/postscript-viewer.png + Icons/Chicago95-tux/apps/32/preferences-desktop-accessibility.png + Icons/Chicago95-tux/apps/32/preferences-desktop-default-applications.png + Icons/Chicago95-tux/apps/32/preferences-desktop-font.png + Icons/Chicago95-tux/apps/32/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95-tux/apps/32/preferences-desktop-keyboard.png + Icons/Chicago95-tux/apps/32/preferences-desktop-locale.png + Icons/Chicago95-tux/apps/32/preferences-desktop-remote-desktop.png + Icons/Chicago95-tux/apps/32/preferences-desktop-screensaver.png + Icons/Chicago95-tux/apps/32/preferences-desktop-sound.png + Icons/Chicago95-tux/apps/32/preferences-desktop-theme.png + Icons/Chicago95-tux/apps/32/preferences-desktop-wallpaper.png + Icons/Chicago95-tux/apps/32/preferences-desktop.png + Icons/Chicago95-tux/apps/32/preferences-system-network.png + Icons/Chicago95-tux/apps/32/preferences-system-power.png + Icons/Chicago95-tux/apps/32/preferences-system-windows.png + Icons/Chicago95-tux/apps/32/session-properties.png + Icons/Chicago95-tux/apps/32/shotwell.png + Icons/Chicago95-tux/apps/32/softwarecenter.png + Icons/Chicago95-tux/apps/32/stock_keyring.png + Icons/Chicago95-tux/apps/32/system-file-manager.png + Icons/Chicago95-tux/apps/32/system-software-install.png + Icons/Chicago95-tux/apps/32/system-software-update.png + Icons/Chicago95-tux/apps/32/system-users.png + Icons/Chicago95-tux/apps/32/thunderbird.png + Icons/Chicago95-tux/apps/32/time-admin.png + Icons/Chicago95-tux/apps/32/tomboy.png + Icons/Chicago95-tux/apps/32/transmission.png + Icons/Chicago95-tux/apps/32/ubiquity.png + Icons/Chicago95-tux/apps/32/user-info.png + Icons/Chicago95-tux/apps/32/utilities-system-monitor.png + Icons/Chicago95-tux/apps/32/utilities-terminal.png + Icons/Chicago95-tux/apps/32/virtualbox.png + Icons/Chicago95-tux/apps/32/web-browser.png + Icons/Chicago95-tux/apps/32/xchat-gnome.png + Icons/Chicago95-tux/apps/32/xfce4-notifyd.png + Icons/Chicago95-tux/apps/32/xfce4-splash.png + Icons/Chicago95-tux/apps/32/xfce4-weather.png + Icons/Chicago95-tux/apps/32/xfce4-whiskermenu.png + Icons/Chicago95-tux/apps/32/xfce4-whiskermenu.png.old + Icons/Chicago95-tux/apps/32/xfce4-workspaces.png + Icons/Chicago95-tux/apps/32/youtube.png + Icons/Chicago95-tux/apps/48/abiword.png + Icons/Chicago95-tux/apps/48/accessories-character-map.png + Icons/Chicago95-tux/apps/48/accessories-dictionary.png + Icons/Chicago95-tux/apps/48/accessories-text-editor.png + Icons/Chicago95-tux/apps/48/applets-screenshooter.png + Icons/Chicago95-tux/apps/48/application-community.png + Icons/Chicago95-tux/apps/48/application-default-icon.png + Icons/Chicago95-tux/apps/48/apport.png + Icons/Chicago95-tux/apps/48/aptoncd.png + Icons/Chicago95-tux/apps/48/archive-manager.png + Icons/Chicago95-tux/apps/48/baobab.png + Icons/Chicago95-tux/apps/48/bluetooth.png + Icons/Chicago95-tux/apps/48/brasero.png + Icons/Chicago95-tux/apps/48/calc.png + Icons/Chicago95-tux/apps/48/catfish.png + Icons/Chicago95-tux/apps/48/ccsm.png + Icons/Chicago95-tux/apps/48/checkbox.png + Icons/Chicago95-tux/apps/48/chromium-browser.png + Icons/Chicago95-tux/apps/48/clock.png + Icons/Chicago95-tux/apps/48/com.visualstudio.code.png + Icons/Chicago95-tux/apps/48/dconf-editor.png + Icons/Chicago95-tux/apps/48/dconf.png + Icons/Chicago95-tux/apps/48/desktop-effects.png + Icons/Chicago95-tux/apps/48/display-im6.q16.png + Icons/Chicago95-tux/apps/48/easytag.png + Icons/Chicago95-tux/apps/48/eject_pc_cool_6_48x48x4.png + Icons/Chicago95-tux/apps/48/empathy.png + Icons/Chicago95-tux/apps/48/evolution.png + Icons/Chicago95-tux/apps/48/facebook.png + Icons/Chicago95-tux/apps/48/firefox.png + Icons/Chicago95-tux/apps/48/gimp.png + Icons/Chicago95-tux/apps/48/gmail.png + Icons/Chicago95-tux/apps/48/gmusicbrowser.png + Icons/Chicago95-tux/apps/48/gnome-desktop-config.png + Icons/Chicago95-tux/apps/48/gnome-do.png + Icons/Chicago95-tux/apps/48/gnome-mines.png + Icons/Chicago95-tux/apps/48/gnome-nettool.png + Icons/Chicago95-tux/apps/48/gnome-network-properties.png + Icons/Chicago95-tux/apps/48/gnome-panel-force-quit.png + Icons/Chicago95-tux/apps/48/gnome-panel-notification-area.png + Icons/Chicago95-tux/apps/48/gnome-panel-window-list.png + Icons/Chicago95-tux/apps/48/gnome-power-manager.png + Icons/Chicago95-tux/apps/48/gnome-session-hibernate.png + Icons/Chicago95-tux/apps/48/gnome-session-switch.png + Icons/Chicago95-tux/apps/48/gnome-shutdown.png + Icons/Chicago95-tux/apps/48/gnome-sound-recorder.png + Icons/Chicago95-tux/apps/48/gnome-sudoku.png + Icons/Chicago95-tux/apps/48/gstreamer-properties.png + Icons/Chicago95-tux/apps/48/gthumb.png + Icons/Chicago95-tux/apps/48/help-browser.png + Icons/Chicago95-tux/apps/48/hwbrowser.png + Icons/Chicago95-tux/apps/48/im-msn_48.png + Icons/Chicago95-tux/apps/48/inkscape.png + Icons/Chicago95-tux/apps/48/internet-mail.png + Icons/Chicago95-tux/apps/48/internet-news-reader.png + Icons/Chicago95-tux/apps/48/invest-applet.png + Icons/Chicago95-tux/apps/48/libreoffice-base.png + Icons/Chicago95-tux/apps/48/libreoffice-calc.png + Icons/Chicago95-tux/apps/48/libreoffice-impress.png + Icons/Chicago95-tux/apps/48/libreoffice-main.png + Icons/Chicago95-tux/apps/48/libreoffice-math.png + Icons/Chicago95-tux/apps/48/lightdm-gtk-greeter-settings.png + Icons/Chicago95-tux/apps/48/locale_48x48.png + Icons/Chicago95-tux/apps/48/logviewer.png + Icons/Chicago95-tux/apps/48/lxfind_48.png + Icons/Chicago95-tux/apps/48/mahjong.png + Icons/Chicago95-tux/apps/48/mail.png + Icons/Chicago95-tux/apps/48/media-player-banshee.png + Icons/Chicago95-tux/apps/48/midori.png + Icons/Chicago95-tux/apps/48/minesweper.png + Icons/Chicago95-tux/apps/48/miro-browse.png + Icons/Chicago95-tux/apps/48/miro.png + Icons/Chicago95-tux/apps/48/mozo.png + Icons/Chicago95-tux/apps/48/mugshot.png + Icons/Chicago95-tux/apps/48/multimedia-audio-player.png + Icons/Chicago95-tux/apps/48/multimedia-photo-manager.png + Icons/Chicago95-tux/apps/48/office-address-book.png + Icons/Chicago95-tux/apps/48/office-calendar.png + Icons/Chicago95-tux/apps/48/ooo-draw.png + Icons/Chicago95-tux/apps/48/ooo-writer.png + Icons/Chicago95-tux/apps/48/palemoon.png + Icons/Chicago95-tux/apps/48/palm-pilot-sync.png + Icons/Chicago95-tux/apps/48/palm-pilot.png + Icons/Chicago95-tux/apps/48/pidgin.png + Icons/Chicago95-tux/apps/48/plugin-scale.png + Icons/Chicago95-tux/apps/48/postscript-viewer.png + Icons/Chicago95-tux/apps/48/preferences-desktop-accesibility.png + Icons/Chicago95-tux/apps/48/preferences-desktop-default-applications.png + Icons/Chicago95-tux/apps/48/preferences-desktop-font.png + Icons/Chicago95-tux/apps/48/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95-tux/apps/48/preferences-desktop-locale.png + Icons/Chicago95-tux/apps/48/preferences-desktop-remote-desktop.png + Icons/Chicago95-tux/apps/48/preferences-desktop-screensaver.png + Icons/Chicago95-tux/apps/48/preferences-desktop-theme.png + Icons/Chicago95-tux/apps/48/preferences-desktop-wallpaper.png + Icons/Chicago95-tux/apps/48/preferences-desktop.png + Icons/Chicago95-tux/apps/48/preferences-system-network.png + Icons/Chicago95-tux/apps/48/preferences-system-power.png + Icons/Chicago95-tux/apps/48/preferences-system-services.png + Icons/Chicago95-tux/apps/48/preferences-system-windows.png + Icons/Chicago95-tux/apps/48/serpentine.png + Icons/Chicago95-tux/apps/48/session-properties.png + Icons/Chicago95-tux/apps/48/shotwell.png + Icons/Chicago95-tux/apps/48/simple-scan.png + Icons/Chicago95-tux/apps/48/software.png + Icons/Chicago95-tux/apps/48/softwarecenter.png + Icons/Chicago95-tux/apps/48/stock_keyring.png + Icons/Chicago95-tux/apps/48/system-config-display.png + Icons/Chicago95-tux/apps/48/system-file-manager.png + Icons/Chicago95-tux/apps/48/system-software-update.png + Icons/Chicago95-tux/apps/48/system-users.png + Icons/Chicago95-tux/apps/48/thunderbird.png + Icons/Chicago95-tux/apps/48/time-admin.png + Icons/Chicago95-tux/apps/48/tomboy.png + Icons/Chicago95-tux/apps/48/totem.png + Icons/Chicago95-tux/apps/48/transmission.png + Icons/Chicago95-tux/apps/48/ubiquity.png + Icons/Chicago95-tux/apps/48/utilities-system-monitor.png + Icons/Chicago95-tux/apps/48/utilities-terminal.png + Icons/Chicago95-tux/apps/48/virtualbox.png + Icons/Chicago95-tux/apps/48/xchat-gnome.png + Icons/Chicago95-tux/apps/48/xfce4-fsguard-plugin-warning.png + Icons/Chicago95-tux/apps/48/xfce4-notifyd.png + Icons/Chicago95-tux/apps/48/xfce4-panel-menu.png + Icons/Chicago95-tux/apps/48/xfce4-panel-menu.png.old + Icons/Chicago95-tux/apps/48/xfce4-panel.png + Icons/Chicago95-tux/apps/48/xfce4-splash.png + Icons/Chicago95-tux/apps/48/xfce4-workspaces.png + Icons/Chicago95-tux/apps/48/youtube.png + Icons/Chicago95-tux/apps/scalable/brasero.png + Icons/Chicago95-tux/apps/scalable/totem.png + Icons/Chicago95-tux/categories/16/application-community.png + Icons/Chicago95-tux/categories/16/applications-accessories.png + Icons/Chicago95-tux/categories/16/applications-development.png + Icons/Chicago95-tux/categories/16/applications-engineering.png + Icons/Chicago95-tux/categories/16/applications-fonts.png + Icons/Chicago95-tux/categories/16/applications-games.png + Icons/Chicago95-tux/categories/16/applications-graphics.png + Icons/Chicago95-tux/categories/16/applications-multimedia.png + Icons/Chicago95-tux/categories/16/applications-other.png + Icons/Chicago95-tux/categories/16/applications-science.png + Icons/Chicago95-tux/categories/16/applications-utilities.png + Icons/Chicago95-tux/categories/16/preferences-desktop-peripherals.png + Icons/Chicago95-tux/categories/16/preferences-desktop-personal.png + Icons/Chicago95-tux/categories/16/preferences-desktop.png + Icons/Chicago95-tux/categories/16/preferences-other.png + Icons/Chicago95-tux/categories/16/preferences-system-network.png + Icons/Chicago95-tux/categories/16/preferences-system-parental-controls.png + Icons/Chicago95-tux/categories/16/preferences-system.png + Icons/Chicago95-tux/categories/16/system-help.png + Icons/Chicago95-tux/categories/22/application-community.png + Icons/Chicago95-tux/categories/22/applications-accessories.png + Icons/Chicago95-tux/categories/22/applications-development.png + Icons/Chicago95-tux/categories/22/applications-engineering.png + Icons/Chicago95-tux/categories/22/applications-games.png + Icons/Chicago95-tux/categories/22/applications-internet.png + Icons/Chicago95-tux/categories/22/applications-other.png + Icons/Chicago95-tux/categories/22/applications-science.png + Icons/Chicago95-tux/categories/22/applications-utilities.png + Icons/Chicago95-tux/categories/22/preferences-desktop-peripherals.png + Icons/Chicago95-tux/categories/22/preferences-desktop-personal.png + Icons/Chicago95-tux/categories/22/preferences-desktop.png + Icons/Chicago95-tux/categories/22/preferences-other.png + Icons/Chicago95-tux/categories/22/preferences-system-network.png + Icons/Chicago95-tux/categories/22/preferences-system.png + Icons/Chicago95-tux/categories/22/system-help.png + Icons/Chicago95-tux/categories/24/application-community.png + Icons/Chicago95-tux/categories/24/applications-accessories.png + Icons/Chicago95-tux/categories/24/applications-development.png + Icons/Chicago95-tux/categories/24/applications-engineering.png + Icons/Chicago95-tux/categories/24/applications-games.png + Icons/Chicago95-tux/categories/24/applications-internet.png + Icons/Chicago95-tux/categories/24/applications-other.png + Icons/Chicago95-tux/categories/24/applications-science.png + Icons/Chicago95-tux/categories/24/applications-utilities.png + Icons/Chicago95-tux/categories/24/preferences-desktop-personal.png + Icons/Chicago95-tux/categories/24/preferences-desktop.png + Icons/Chicago95-tux/categories/24/preferences-other.png + Icons/Chicago95-tux/categories/24/preferences-system-network.png + Icons/Chicago95-tux/categories/24/preferences-system.png + Icons/Chicago95-tux/categories/24/system-help.png + Icons/Chicago95-tux/categories/32/application-community.png + Icons/Chicago95-tux/categories/32/applications-accessories.png + Icons/Chicago95-tux/categories/32/applications-development.png + Icons/Chicago95-tux/categories/32/applications-engineering.png + Icons/Chicago95-tux/categories/32/applications-fonts.png + Icons/Chicago95-tux/categories/32/applications-games.png + Icons/Chicago95-tux/categories/32/applications-internet.png + Icons/Chicago95-tux/categories/32/applications-other.png + Icons/Chicago95-tux/categories/32/applications-science.png + Icons/Chicago95-tux/categories/32/applications-utilities.png + Icons/Chicago95-tux/categories/32/preferences-desktop-peripherals.png + Icons/Chicago95-tux/categories/32/preferences-desktop-personal.png + Icons/Chicago95-tux/categories/32/preferences-desktop.png + Icons/Chicago95-tux/categories/32/preferences-other.png + Icons/Chicago95-tux/categories/32/preferences-system-network.png + Icons/Chicago95-tux/categories/32/preferences-system-parental-controls.png + Icons/Chicago95-tux/categories/32/preferences-system.png + Icons/Chicago95-tux/categories/32/system-help.png + Icons/Chicago95-tux/categories/48/applications-accessories.png + Icons/Chicago95-tux/categories/48/applications-internet.png + Icons/Chicago95-tux/categories/48/preferences-desktop-peripherals.png + Icons/Chicago95-tux/categories/48/preferences-desktop-personal.png + Icons/Chicago95-tux/categories/48/preferences-desktop.png + Icons/Chicago95-tux/categories/48/preferences-other.png + Icons/Chicago95-tux/categories/48/preferences-system.png + Icons/Chicago95-tux/categories/48/xfdesktop-menu.png + Icons/Chicago95-tux/categories/48/xfdesktop-menu.png.old + Icons/Chicago95-tux/devices/16/audio-card.png + Icons/Chicago95-tux/devices/16/audio-input-microphone.png + Icons/Chicago95-tux/devices/16/battery.png + Icons/Chicago95-tux/devices/16/camera-photo.png + Icons/Chicago95-tux/devices/16/camera-video.png + Icons/Chicago95-tux/devices/16/camera-web.png + Icons/Chicago95-tux/devices/16/computer-apple-ipad.png + Icons/Chicago95-tux/devices/16/computer.png + Icons/Chicago95-tux/devices/16/drive-encrypted.png + Icons/Chicago95-tux/devices/16/drive-harddisk-ieee1394.png + Icons/Chicago95-tux/devices/16/drive-harddisk-usb.png + Icons/Chicago95-tux/devices/16/drive-harddisk.png + Icons/Chicago95-tux/devices/16/drive-optical-recorder.png + Icons/Chicago95-tux/devices/16/drive-optical.png + Icons/Chicago95-tux/devices/16/drive-removable-media-flash-cf.png + Icons/Chicago95-tux/devices/16/drive-removable-media-flash-ms.png + Icons/Chicago95-tux/devices/16/drive-removable-media-flash-sd.png + Icons/Chicago95-tux/devices/16/drive-removable-media-flash-sm.png + Icons/Chicago95-tux/devices/16/drive-removable-media-flash.png + Icons/Chicago95-tux/devices/16/drive-removable-media-floppy.png + Icons/Chicago95-tux/devices/16/drive-removable-media-ieee1394.png + Icons/Chicago95-tux/devices/16/drive-removable-media-usb.png + Icons/Chicago95-tux/devices/16/drive-removable-media.png + Icons/Chicago95-tux/devices/16/gnome-dev-ethernet.png + Icons/Chicago95-tux/devices/16/gnome-dev-printer-network.png + Icons/Chicago95-tux/devices/16/gnome-dev-printer-new.png + Icons/Chicago95-tux/devices/16/gnome-dev-removable-1394.png + Icons/Chicago95-tux/devices/16/gnome-dev-removable-usb.png + Icons/Chicago95-tux/devices/16/gnome-dev-removable.png + Icons/Chicago95-tux/devices/16/input-gaming.png + Icons/Chicago95-tux/devices/16/input-keyboard.png + Icons/Chicago95-tux/devices/16/input-mouse.png + Icons/Chicago95-tux/devices/16/input-tablet.png + Icons/Chicago95-tux/devices/16/media-encrypted.png + Icons/Chicago95-tux/devices/16/media-flash.png + Icons/Chicago95-tux/devices/16/media-floppy.png + Icons/Chicago95-tux/devices/16/media-optical-audio.png + Icons/Chicago95-tux/devices/16/media-optical-bd.png + Icons/Chicago95-tux/devices/16/media-optical-cd.png + Icons/Chicago95-tux/devices/16/media-optical-dvd.png + Icons/Chicago95-tux/devices/16/media-optical-hddvd.png + Icons/Chicago95-tux/devices/16/media-optical.png + Icons/Chicago95-tux/devices/16/media-tape.png + Icons/Chicago95-tux/devices/16/media-zip.png + Icons/Chicago95-tux/devices/16/modem.png + Icons/Chicago95-tux/devices/16/multimedia-player.png + Icons/Chicago95-tux/devices/16/network-wired.png + Icons/Chicago95-tux/devices/16/network-wireless.png + Icons/Chicago95-tux/devices/16/pda.png + Icons/Chicago95-tux/devices/16/phone-motorola-droid.png + Icons/Chicago95-tux/devices/16/phone.png + Icons/Chicago95-tux/devices/16/printer.png + Icons/Chicago95-tux/devices/16/scanner.png + Icons/Chicago95-tux/devices/16/video-display.png + Icons/Chicago95-tux/devices/22/audio-card.png + Icons/Chicago95-tux/devices/22/audio-input-microphone.png + Icons/Chicago95-tux/devices/22/battery.png + Icons/Chicago95-tux/devices/22/camera-photo.png + Icons/Chicago95-tux/devices/22/camera-video.png + Icons/Chicago95-tux/devices/22/camera-web.png + Icons/Chicago95-tux/devices/22/computer.png + Icons/Chicago95-tux/devices/22/drive-encrypted.png + Icons/Chicago95-tux/devices/22/drive-harddisk-ieee1394.png + Icons/Chicago95-tux/devices/22/drive-harddisk-usb.png + Icons/Chicago95-tux/devices/22/drive-harddisk.png + Icons/Chicago95-tux/devices/22/drive-optical-recorder.png + Icons/Chicago95-tux/devices/22/drive-optical.png + Icons/Chicago95-tux/devices/22/drive-removable-media-flash-cf.png + Icons/Chicago95-tux/devices/22/drive-removable-media-flash-ms.png + Icons/Chicago95-tux/devices/22/drive-removable-media-flash-sd.png + Icons/Chicago95-tux/devices/22/drive-removable-media-flash-sm.png + Icons/Chicago95-tux/devices/22/drive-removable-media-flash.png + Icons/Chicago95-tux/devices/22/drive-removable-media-floppy.png + Icons/Chicago95-tux/devices/22/drive-removable-media-ieee1394.png + Icons/Chicago95-tux/devices/22/drive-removable-media-usb.png + Icons/Chicago95-tux/devices/22/drive-removable-media.png + Icons/Chicago95-tux/devices/22/gnome-dev-removable-1394.png + Icons/Chicago95-tux/devices/22/gnome-dev-removable-usb.png + Icons/Chicago95-tux/devices/22/gnome-dev-removable.png + Icons/Chicago95-tux/devices/22/input-gaming.png + Icons/Chicago95-tux/devices/22/input-keyboard.png + Icons/Chicago95-tux/devices/22/input-mouse.png + Icons/Chicago95-tux/devices/22/input-tablet.png + Icons/Chicago95-tux/devices/22/media-encrypted.png + Icons/Chicago95-tux/devices/22/media-flash-cf.png + Icons/Chicago95-tux/devices/22/media-flash-ms.png + Icons/Chicago95-tux/devices/22/media-flash-sd.png + Icons/Chicago95-tux/devices/22/media-flash-sm.png + Icons/Chicago95-tux/devices/22/media-flash.png + Icons/Chicago95-tux/devices/22/media-floppy.png + Icons/Chicago95-tux/devices/22/media-optical-audio.png + Icons/Chicago95-tux/devices/22/media-optical-bd.png + Icons/Chicago95-tux/devices/22/media-optical-cd.png + Icons/Chicago95-tux/devices/22/media-optical-dvd.png + Icons/Chicago95-tux/devices/22/media-optical-hddvd.png + Icons/Chicago95-tux/devices/22/media-optical.png + Icons/Chicago95-tux/devices/22/media-tape.png + Icons/Chicago95-tux/devices/22/media-zip.png + Icons/Chicago95-tux/devices/22/modem.png + Icons/Chicago95-tux/devices/22/multimedia-player.png + Icons/Chicago95-tux/devices/22/network-wired.png + Icons/Chicago95-tux/devices/22/network-wireless.png + Icons/Chicago95-tux/devices/22/pda.png + Icons/Chicago95-tux/devices/22/phone.png + Icons/Chicago95-tux/devices/22/printer.png + Icons/Chicago95-tux/devices/22/scanner.png + Icons/Chicago95-tux/devices/22/usbpendrive_unmount.png + Icons/Chicago95-tux/devices/22/video-display.png + Icons/Chicago95-tux/devices/24/audio-card.png + Icons/Chicago95-tux/devices/24/audio-input-microphone.png + Icons/Chicago95-tux/devices/24/battery.png + Icons/Chicago95-tux/devices/24/camera-photo.png + Icons/Chicago95-tux/devices/24/camera-video.png + Icons/Chicago95-tux/devices/24/camera-web.png + Icons/Chicago95-tux/devices/24/cdrom_unmount.png + Icons/Chicago95-tux/devices/24/cdwriter_unmount.png + Icons/Chicago95-tux/devices/24/computer.png + Icons/Chicago95-tux/devices/24/drive-harddisk.png + Icons/Chicago95-tux/devices/24/drive-optical.png + Icons/Chicago95-tux/devices/24/drive-removable-media.png + Icons/Chicago95-tux/devices/24/dvd_unmount.png + Icons/Chicago95-tux/devices/24/gnome-dev-cdrom-audio.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-cdr.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-cdrw.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-dvdr-plus.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-dvdr.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-dvdram.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-dvdrom.png + Icons/Chicago95-tux/devices/24/gnome-dev-disc-dvdrw.png + Icons/Chicago95-tux/devices/24/gnome-dev-removable-1394.png + Icons/Chicago95-tux/devices/24/gnome-dev-removable-usb.png + Icons/Chicago95-tux/devices/24/gnome-dev-removable.png + Icons/Chicago95-tux/devices/24/gtk-cdrom.png + Icons/Chicago95-tux/devices/24/input-gaming.png + Icons/Chicago95-tux/devices/24/input-keyboard.png + Icons/Chicago95-tux/devices/24/input-mouse.png + Icons/Chicago95-tux/devices/24/input-tablet.png + Icons/Chicago95-tux/devices/24/media-cdrom.png + Icons/Chicago95-tux/devices/24/media-flash.png + Icons/Chicago95-tux/devices/24/media-floppy.png + Icons/Chicago95-tux/devices/24/media-optical.png + Icons/Chicago95-tux/devices/24/media-tape.png + Icons/Chicago95-tux/devices/24/media-zip.png + Icons/Chicago95-tux/devices/24/modem.png + Icons/Chicago95-tux/devices/24/multimedia-player.png + Icons/Chicago95-tux/devices/24/network-wired.png + Icons/Chicago95-tux/devices/24/network-wireless.png + Icons/Chicago95-tux/devices/24/pda.png + Icons/Chicago95-tux/devices/24/phone.png + Icons/Chicago95-tux/devices/24/printer.png + Icons/Chicago95-tux/devices/24/scanner.png + Icons/Chicago95-tux/devices/24/usbpendrive_unmount.png + Icons/Chicago95-tux/devices/24/video-display.png + Icons/Chicago95-tux/devices/32/audio-card.png + Icons/Chicago95-tux/devices/32/audio-input-microphone.png + Icons/Chicago95-tux/devices/32/battery.png + Icons/Chicago95-tux/devices/32/camera-photo.png + Icons/Chicago95-tux/devices/32/camera-video.png + Icons/Chicago95-tux/devices/32/camera-web.png + Icons/Chicago95-tux/devices/32/computer-apple-ipad.png + Icons/Chicago95-tux/devices/32/computer.png + Icons/Chicago95-tux/devices/32/drive-harddisk.png + Icons/Chicago95-tux/devices/32/drive-optical.png + Icons/Chicago95-tux/devices/32/drive-removable-media.png + Icons/Chicago95-tux/devices/32/gnome-dev-ethernet.png + Icons/Chicago95-tux/devices/32/gnome-dev-ipod.png + Icons/Chicago95-tux/devices/32/gnome-dev-printer-network.png + Icons/Chicago95-tux/devices/32/gvc-tone.png + Icons/Chicago95-tux/devices/32/input-gaming.png + Icons/Chicago95-tux/devices/32/input-keyboard.png + Icons/Chicago95-tux/devices/32/input-mouse.png + Icons/Chicago95-tux/devices/32/input-tablet.png + Icons/Chicago95-tux/devices/32/media-flash.png + Icons/Chicago95-tux/devices/32/media-floppy.png + Icons/Chicago95-tux/devices/32/media-optical-audio.png + Icons/Chicago95-tux/devices/32/media-optical.png + Icons/Chicago95-tux/devices/32/media-tape.png + Icons/Chicago95-tux/devices/32/media-zip.png + Icons/Chicago95-tux/devices/32/modem.png + Icons/Chicago95-tux/devices/32/multimedia-player.png + Icons/Chicago95-tux/devices/32/network-wired.png + Icons/Chicago95-tux/devices/32/network-wireless.png + Icons/Chicago95-tux/devices/32/pda.png + Icons/Chicago95-tux/devices/32/phone-motorola-droid.png + Icons/Chicago95-tux/devices/32/phone.png + Icons/Chicago95-tux/devices/32/printer.png + Icons/Chicago95-tux/devices/32/scanner.png + Icons/Chicago95-tux/devices/32/video-display.png + Icons/Chicago95-tux/devices/48/audio-card.png + Icons/Chicago95-tux/devices/48/audio-input-microphone.png + Icons/Chicago95-tux/devices/48/battery.png + Icons/Chicago95-tux/devices/48/camera-photo.png + Icons/Chicago95-tux/devices/48/camera-web.png + Icons/Chicago95-tux/devices/48/drive-encrypted.png + Icons/Chicago95-tux/devices/48/drive-harddisk-ieee1394.png + Icons/Chicago95-tux/devices/48/drive-harddisk-usb.png + Icons/Chicago95-tux/devices/48/drive-harddisk.png + Icons/Chicago95-tux/devices/48/drive-optical-recorder.png + Icons/Chicago95-tux/devices/48/drive-removable-media-flash-cf.png + Icons/Chicago95-tux/devices/48/drive-removable-media-flash-ms.png + Icons/Chicago95-tux/devices/48/drive-removable-media-flash-sd.png + Icons/Chicago95-tux/devices/48/drive-removable-media-flash-sm.png + Icons/Chicago95-tux/devices/48/drive-removable-media-flash.png + Icons/Chicago95-tux/devices/48/drive-removable-media-floppy.png + Icons/Chicago95-tux/devices/48/drive-removable-media-ieee1394.png + Icons/Chicago95-tux/devices/48/drive-removable-media-usb.png + Icons/Chicago95-tux/devices/48/drive-removable-media.png + Icons/Chicago95-tux/devices/48/gnome-dev-harddisk-1394.png + Icons/Chicago95-tux/devices/48/gnome-dev-harddisk-usb.png + Icons/Chicago95-tux/devices/48/gnome-dev-media-cf.png + Icons/Chicago95-tux/devices/48/gnome-dev-media-ms.png + Icons/Chicago95-tux/devices/48/gnome-dev-media-sdmmc.png + Icons/Chicago95-tux/devices/48/gnome-dev-media-sm.png + Icons/Chicago95-tux/devices/48/gnome-dev-memory.png + Icons/Chicago95-tux/devices/48/gnome-dev-pcmcia.png + Icons/Chicago95-tux/devices/48/gnome-dev-printer-network.png + Icons/Chicago95-tux/devices/48/gnome-dev-printer-new.png + Icons/Chicago95-tux/devices/48/gnome-dev-zipdisk.png + Icons/Chicago95-tux/devices/48/input-gaming.png + Icons/Chicago95-tux/devices/48/input-keyboard.png + Icons/Chicago95-tux/devices/48/input-mouse.png + Icons/Chicago95-tux/devices/48/input-tablet.png + Icons/Chicago95-tux/devices/48/media-encrypted.png + Icons/Chicago95-tux/devices/48/media-floppy.png + Icons/Chicago95-tux/devices/48/media-jaz.png + Icons/Chicago95-tux/devices/48/media-optical-audio.png + Icons/Chicago95-tux/devices/48/media-optical-bd.png + Icons/Chicago95-tux/devices/48/media-optical-cd.png + Icons/Chicago95-tux/devices/48/media-optical-dvd.png + Icons/Chicago95-tux/devices/48/media-optical-hddvd.png + Icons/Chicago95-tux/devices/48/media-optical.png + Icons/Chicago95-tux/devices/48/multimedia-player.png + Icons/Chicago95-tux/devices/48/pda.png + Icons/Chicago95-tux/devices/48/phone-motorola-droid.png + Icons/Chicago95-tux/devices/48/phone.png + Icons/Chicago95-tux/devices/48/printer.png + Icons/Chicago95-tux/devices/48/processor.png + Icons/Chicago95-tux/devices/48/scanner.png + Icons/Chicago95-tux/devices/48/video-display.png + Icons/Chicago95-tux/devices/scalable/scanner.png + Icons/Chicago95-tux/emblems/16/emblem-default.png + Icons/Chicago95-tux/emblems/16/emblem-documents.png + Icons/Chicago95-tux/emblems/16/emblem-downloads.png + Icons/Chicago95-tux/emblems/16/emblem-favorite.png + Icons/Chicago95-tux/emblems/16/emblem-generic.png + Icons/Chicago95-tux/emblems/16/emblem-important.png + Icons/Chicago95-tux/emblems/16/emblem-mail.png + Icons/Chicago95-tux/emblems/16/emblem-new.png + Icons/Chicago95-tux/emblems/16/emblem-package.png + Icons/Chicago95-tux/emblems/16/emblem-photos.png + Icons/Chicago95-tux/emblems/16/emblem-readonly.png + Icons/Chicago95-tux/emblems/16/emblem-shared.png + Icons/Chicago95-tux/emblems/16/emblem-symbolic-link.png + Icons/Chicago95-tux/emblems/16/emblem-system.png + Icons/Chicago95-tux/emblems/16/emblem-unreadable.png + Icons/Chicago95-tux/emblems/16/emblem-web.png + Icons/Chicago95-tux/emblems/22/emblem-default.png + Icons/Chicago95-tux/emblems/22/emblem-documents.png + Icons/Chicago95-tux/emblems/22/emblem-downloads.png + Icons/Chicago95-tux/emblems/22/emblem-favorite.png + Icons/Chicago95-tux/emblems/22/emblem-generic.png + Icons/Chicago95-tux/emblems/22/emblem-important.png + Icons/Chicago95-tux/emblems/22/emblem-mail.png + Icons/Chicago95-tux/emblems/22/emblem-new.png + Icons/Chicago95-tux/emblems/22/emblem-noread.png + Icons/Chicago95-tux/emblems/22/emblem-nowrite.png + Icons/Chicago95-tux/emblems/22/emblem-package.png + Icons/Chicago95-tux/emblems/22/emblem-photos.png + Icons/Chicago95-tux/emblems/22/emblem-readonly.png + Icons/Chicago95-tux/emblems/22/emblem-shared.png + Icons/Chicago95-tux/emblems/22/emblem-symbolic-link.png + Icons/Chicago95-tux/emblems/22/emblem-system.png + Icons/Chicago95-tux/emblems/22/emblem-unreadable.png + Icons/Chicago95-tux/emblems/22/emblem-urgent.png + Icons/Chicago95-tux/emblems/22/emblem-web.png + Icons/Chicago95-tux/emblems/24/emblem-default.png + Icons/Chicago95-tux/emblems/24/emblem-documents.png + Icons/Chicago95-tux/emblems/24/emblem-downloads.png + Icons/Chicago95-tux/emblems/24/emblem-favorite.png + Icons/Chicago95-tux/emblems/24/emblem-generic.png + Icons/Chicago95-tux/emblems/24/emblem-important.png + Icons/Chicago95-tux/emblems/24/emblem-mail.png + Icons/Chicago95-tux/emblems/24/emblem-new.png + Icons/Chicago95-tux/emblems/24/emblem-noread.png + Icons/Chicago95-tux/emblems/24/emblem-nowrite.png + Icons/Chicago95-tux/emblems/24/emblem-package.png + Icons/Chicago95-tux/emblems/24/emblem-photos.png + Icons/Chicago95-tux/emblems/24/emblem-readonly.png + Icons/Chicago95-tux/emblems/24/emblem-shared.png + Icons/Chicago95-tux/emblems/24/emblem-symbolic-link.png + Icons/Chicago95-tux/emblems/24/emblem-system.png + Icons/Chicago95-tux/emblems/24/emblem-unreadable.png + Icons/Chicago95-tux/emblems/24/emblem-urgent.png + Icons/Chicago95-tux/emblems/24/emblem-web.png + Icons/Chicago95-tux/emblems/32/emblem-colors-blue.png + Icons/Chicago95-tux/emblems/32/emblem-colors-brown.png + Icons/Chicago95-tux/emblems/32/emblem-colors-green.png + Icons/Chicago95-tux/emblems/32/emblem-colors-grey.png + Icons/Chicago95-tux/emblems/32/emblem-colors-orange.png + Icons/Chicago95-tux/emblems/32/emblem-colors-red.png + Icons/Chicago95-tux/emblems/32/emblem-colors-violet.png + Icons/Chicago95-tux/emblems/32/emblem-colors-white.png + Icons/Chicago95-tux/emblems/32/emblem-colors-yellow.png + Icons/Chicago95-tux/emblems/32/emblem-default.png + Icons/Chicago95-tux/emblems/32/emblem-documents.png + Icons/Chicago95-tux/emblems/32/emblem-downloads.png + Icons/Chicago95-tux/emblems/32/emblem-favorite.png + Icons/Chicago95-tux/emblems/32/emblem-generic.png + Icons/Chicago95-tux/emblems/32/emblem-important.png + Icons/Chicago95-tux/emblems/32/emblem-mail.png + Icons/Chicago95-tux/emblems/32/emblem-new.png + Icons/Chicago95-tux/emblems/32/emblem-package.png + Icons/Chicago95-tux/emblems/32/emblem-photos.png + Icons/Chicago95-tux/emblems/32/emblem-readonly.png + Icons/Chicago95-tux/emblems/32/emblem-shared.png + Icons/Chicago95-tux/emblems/32/emblem-symbolic-link.png + Icons/Chicago95-tux/emblems/32/emblem-system.png + Icons/Chicago95-tux/emblems/32/emblem-unreadable.png + Icons/Chicago95-tux/emblems/32/emblem-web.png + Icons/Chicago95-tux/emblems/48/emblem-colors-blue.png + Icons/Chicago95-tux/emblems/48/emblem-colors-brown.png + Icons/Chicago95-tux/emblems/48/emblem-colors-green.png + Icons/Chicago95-tux/emblems/48/emblem-colors-grey.png + Icons/Chicago95-tux/emblems/48/emblem-colors-orange.png + Icons/Chicago95-tux/emblems/48/emblem-colors-red.png + Icons/Chicago95-tux/emblems/48/emblem-colors-violet.png + Icons/Chicago95-tux/emblems/48/emblem-colors-white.png + Icons/Chicago95-tux/emblems/48/emblem-colors-yellow.png + Icons/Chicago95-tux/emblems/48/emblem-default.png + Icons/Chicago95-tux/emblems/48/emblem-documents.png + Icons/Chicago95-tux/emblems/48/emblem-downloads.png + Icons/Chicago95-tux/emblems/48/emblem-favorite.png + Icons/Chicago95-tux/emblems/48/emblem-generic.png + Icons/Chicago95-tux/emblems/48/emblem-important.png + Icons/Chicago95-tux/emblems/48/emblem-mail.png + Icons/Chicago95-tux/emblems/48/emblem-new.png + Icons/Chicago95-tux/emblems/48/emblem-noread.png + Icons/Chicago95-tux/emblems/48/emblem-nowrite.png + Icons/Chicago95-tux/emblems/48/emblem-package.png + Icons/Chicago95-tux/emblems/48/emblem-photos.png + Icons/Chicago95-tux/emblems/48/emblem-readonly.png + Icons/Chicago95-tux/emblems/48/emblem-shared.png + Icons/Chicago95-tux/emblems/48/emblem-symbolic-link.png + Icons/Chicago95-tux/emblems/48/emblem-system.png + Icons/Chicago95-tux/emblems/48/emblem-unreadable.png + Icons/Chicago95-tux/emblems/48/emblem-urgent.png + Icons/Chicago95-tux/emblems/48/emblem-web.png + Icons/Chicago95-tux/emotes/16/face-angel.png + Icons/Chicago95-tux/emotes/16/face-angry.png + Icons/Chicago95-tux/emotes/16/face-cool.png + Icons/Chicago95-tux/emotes/16/face-crying.png + Icons/Chicago95-tux/emotes/16/face-devilish.png + Icons/Chicago95-tux/emotes/16/face-embarrassed.png + Icons/Chicago95-tux/emotes/16/face-heart-broken.png + Icons/Chicago95-tux/emotes/16/face-heart.png + Icons/Chicago95-tux/emotes/16/face-kiss.png + Icons/Chicago95-tux/emotes/16/face-laugh.png + Icons/Chicago95-tux/emotes/16/face-monkey.png + Icons/Chicago95-tux/emotes/16/face-plain.png + Icons/Chicago95-tux/emotes/16/face-raspberry.png + Icons/Chicago95-tux/emotes/16/face-sad.png + Icons/Chicago95-tux/emotes/16/face-sick.png + Icons/Chicago95-tux/emotes/16/face-smile-big.png + Icons/Chicago95-tux/emotes/16/face-smile.png + Icons/Chicago95-tux/emotes/16/face-smirk.png + Icons/Chicago95-tux/emotes/16/face-surprise.png + Icons/Chicago95-tux/emotes/16/face-tired.png + Icons/Chicago95-tux/emotes/16/face-uncertain.png + Icons/Chicago95-tux/emotes/16/face-wink.png + Icons/Chicago95-tux/emotes/16/face-worried.png + Icons/Chicago95-tux/emotes/32/face-angel.png + Icons/Chicago95-tux/emotes/32/face-angry.png + Icons/Chicago95-tux/emotes/32/face-cool.png + Icons/Chicago95-tux/emotes/32/face-crying.png + Icons/Chicago95-tux/emotes/32/face-devilish.png + Icons/Chicago95-tux/emotes/32/face-embarrassed.png + Icons/Chicago95-tux/emotes/32/face-heart-broken.png + Icons/Chicago95-tux/emotes/32/face-heart.png + Icons/Chicago95-tux/emotes/32/face-kiss.png + Icons/Chicago95-tux/emotes/32/face-laugh.png + Icons/Chicago95-tux/emotes/32/face-monkey.png + Icons/Chicago95-tux/emotes/32/face-plain.png + Icons/Chicago95-tux/emotes/32/face-raspberry.png + Icons/Chicago95-tux/emotes/32/face-sad.png + Icons/Chicago95-tux/emotes/32/face-sick.png + Icons/Chicago95-tux/emotes/32/face-smile-big.png + Icons/Chicago95-tux/emotes/32/face-smile.png + Icons/Chicago95-tux/emotes/32/face-smirk.png + Icons/Chicago95-tux/emotes/32/face-surprise.png + Icons/Chicago95-tux/emotes/32/face-tired.png + Icons/Chicago95-tux/emotes/32/face-uncertain.png + Icons/Chicago95-tux/emotes/32/face-wink.png + Icons/Chicago95-tux/emotes/32/face-worried.png + Icons/Chicago95-tux/index.theme + Icons/Chicago95-tux/mimes/16/application-certificate.png + Icons/Chicago95-tux/mimes/16/application-epub+zip.png + Icons/Chicago95-tux/mimes/16/application-illustrator.png + Icons/Chicago95-tux/mimes/16/application-msword.png + Icons/Chicago95-tux/mimes/16/application-octet-stream.png + Icons/Chicago95-tux/mimes/16/application-pdf.png + Icons/Chicago95-tux/mimes/16/application-rss+xml.png + Icons/Chicago95-tux/mimes/16/application-vnd.nokia.qt.qmakeprofile.png + Icons/Chicago95-tux/mimes/16/application-vnd.nokia.xml.qt.resource.png + Icons/Chicago95-tux/mimes/16/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95-tux/mimes/16/application-x-bittorrent.png + Icons/Chicago95-tux/mimes/16/application-x-cd-image.png + Icons/Chicago95-tux/mimes/16/application-x-executable.png + Icons/Chicago95-tux/mimes/16/application-x-flash-video.png + Icons/Chicago95-tux/mimes/16/application-x-ms-dos-executable.png + Icons/Chicago95-tux/mimes/16/application-x-object.png + Icons/Chicago95-tux/mimes/16/application-x-shellscript.png + Icons/Chicago95-tux/mimes/16/application-x-theme.png + Icons/Chicago95-tux/mimes/16/audio-x-generic.png + Icons/Chicago95-tux/mimes/16/audio-x-smart-playlist.png + Icons/Chicago95-tux/mimes/16/authors.png + Icons/Chicago95-tux/mimes/16/exchange.png + Icons/Chicago95-tux/mimes/16/extension.png + Icons/Chicago95-tux/mimes/16/font-x-generic.png + Icons/Chicago95-tux/mimes/16/gnome-mime-application-pdf.png + Icons/Chicago95-tux/mimes/16/gnome-mime-image-x-psd.png + Icons/Chicago95-tux/mimes/16/image-jpeg.png + Icons/Chicago95-tux/mimes/16/image-x-generic.png + Icons/Chicago95-tux/mimes/16/image-x-xcf.png + Icons/Chicago95-tux/mimes/16/internet-feed.png + Icons/Chicago95-tux/mimes/16/libreoffice-calc.png + Icons/Chicago95-tux/mimes/16/libreoffice-database.png + Icons/Chicago95-tux/mimes/16/libreoffice-drawing.png + Icons/Chicago95-tux/mimes/16/libreoffice-formula.png + Icons/Chicago95-tux/mimes/16/libreoffice-presentation-template.png + Icons/Chicago95-tux/mimes/16/libreoffice-presentation.png + Icons/Chicago95-tux/mimes/16/libreoffice-spreadsheet-template.png + Icons/Chicago95-tux/mimes/16/libreoffice-text-template.png + Icons/Chicago95-tux/mimes/16/libreoffice-text.png + Icons/Chicago95-tux/mimes/16/media-audio.png + Icons/Chicago95-tux/mimes/16/multipart-encrypted.png + Icons/Chicago95-tux/mimes/16/office-contact.png + Icons/Chicago95-tux/mimes/16/package-x-generic.png + Icons/Chicago95-tux/mimes/16/plan.png + Icons/Chicago95-tux/mimes/16/text-html.png + Icons/Chicago95-tux/mimes/16/text-x-c++hdr.png + Icons/Chicago95-tux/mimes/16/text-x-c++src.png + Icons/Chicago95-tux/mimes/16/text-x-changelog.png + Icons/Chicago95-tux/mimes/16/text-x-chdr.png + Icons/Chicago95-tux/mimes/16/text-x-csrc.png + Icons/Chicago95-tux/mimes/16/text-x-generic-template.png + Icons/Chicago95-tux/mimes/16/text-x-install.png + Icons/Chicago95-tux/mimes/16/text-x-java-source.png + Icons/Chicago95-tux/mimes/16/text-x-lua.png + Icons/Chicago95-tux/mimes/16/text-x-makefile.png + Icons/Chicago95-tux/mimes/16/text-x-preview.png + Icons/Chicago95-tux/mimes/16/text-x-script.png + Icons/Chicago95-tux/mimes/16/video-x-generic.png + Icons/Chicago95-tux/mimes/16/x-office-address-book.png + Icons/Chicago95-tux/mimes/16/x-office-calendar.png + Icons/Chicago95-tux/mimes/16/x-office-document-template.png + Icons/Chicago95-tux/mimes/16/x-office-drawing-template.png + Icons/Chicago95-tux/mimes/16/x-office-drawing.png + Icons/Chicago95-tux/mimes/16/x-office-spreadsheet-template.png + Icons/Chicago95-tux/mimes/22/application-certificate.png + Icons/Chicago95-tux/mimes/22/application-x-executable.png + Icons/Chicago95-tux/mimes/22/audio-x-generic.png + Icons/Chicago95-tux/mimes/22/font-x-generic.png + Icons/Chicago95-tux/mimes/22/gnome-mime-application-pdf.png + Icons/Chicago95-tux/mimes/22/image-x-generic.png + Icons/Chicago95-tux/mimes/22/package-x-generic.png + Icons/Chicago95-tux/mimes/22/text-html.png + Icons/Chicago95-tux/mimes/22/text-x-generic-template.png + Icons/Chicago95-tux/mimes/22/text-x-generic.png + Icons/Chicago95-tux/mimes/22/text-x-preview.png + Icons/Chicago95-tux/mimes/22/text-x-script.png + Icons/Chicago95-tux/mimes/22/video-x-generic.png + Icons/Chicago95-tux/mimes/22/x-office-address-book.png + Icons/Chicago95-tux/mimes/22/x-office-calendar.png + Icons/Chicago95-tux/mimes/22/x-office-document.png + Icons/Chicago95-tux/mimes/22/x-office-drawing.png + Icons/Chicago95-tux/mimes/22/x-office-presentation.png + Icons/Chicago95-tux/mimes/22/x-office-spreadsheet.png + Icons/Chicago95-tux/mimes/24/application-certificate.png + Icons/Chicago95-tux/mimes/24/application-epub+zip.png + Icons/Chicago95-tux/mimes/24/application-illustrator.png + Icons/Chicago95-tux/mimes/24/application-msword.png + Icons/Chicago95-tux/mimes/24/application-vnd.ms-access.png + Icons/Chicago95-tux/mimes/24/application-vnd.ms-excel.png + Icons/Chicago95-tux/mimes/24/application-vnd.ms-powerpoint.png + Icons/Chicago95-tux/mimes/24/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95-tux/mimes/24/application-x-bittorrent.png + Icons/Chicago95-tux/mimes/24/application-x-cd-image.png + Icons/Chicago95-tux/mimes/24/application-x-desktop.png + Icons/Chicago95-tux/mimes/24/application-x-executable.png + Icons/Chicago95-tux/mimes/24/application-x-flash-video.png + Icons/Chicago95-tux/mimes/24/application-x-ms-dos-executable.png + Icons/Chicago95-tux/mimes/24/application-x-shellscript.png + Icons/Chicago95-tux/mimes/24/application-x-sln.png + Icons/Chicago95-tux/mimes/24/application-x-theme.png + Icons/Chicago95-tux/mimes/24/audio-x-generic.png + Icons/Chicago95-tux/mimes/24/audio-x-playlist.png + Icons/Chicago95-tux/mimes/24/audio-x-smart-playlist.png + Icons/Chicago95-tux/mimes/24/authors.png + Icons/Chicago95-tux/mimes/24/extension.png + Icons/Chicago95-tux/mimes/24/font-x-generic.png + Icons/Chicago95-tux/mimes/24/gnome-mime-application-pdf.png + Icons/Chicago95-tux/mimes/24/image-x-compressed-xcf.png + Icons/Chicago95-tux/mimes/24/image-x-generic.png + Icons/Chicago95-tux/mimes/24/image-x-psd.png + Icons/Chicago95-tux/mimes/24/image-x-xcf.png + Icons/Chicago95-tux/mimes/24/internet-feed.png + Icons/Chicago95-tux/mimes/24/libreoffice-database.png + Icons/Chicago95-tux/mimes/24/libreoffice-drawing-template.png + Icons/Chicago95-tux/mimes/24/libreoffice-drawing.png + Icons/Chicago95-tux/mimes/24/libreoffice-formula.png + Icons/Chicago95-tux/mimes/24/libreoffice-presentation-template.png + Icons/Chicago95-tux/mimes/24/libreoffice-presentation.png + Icons/Chicago95-tux/mimes/24/libreoffice-spreadsheet-template.png + Icons/Chicago95-tux/mimes/24/libreoffice-spreadsheet.png + Icons/Chicago95-tux/mimes/24/libreoffice-text-template.png + Icons/Chicago95-tux/mimes/24/libreoffice-text.png + Icons/Chicago95-tux/mimes/24/media-audio.png + Icons/Chicago95-tux/mimes/24/multipart-encrypted.png + Icons/Chicago95-tux/mimes/24/office-contact.png + Icons/Chicago95-tux/mimes/24/package-x-generic.png + Icons/Chicago95-tux/mimes/24/text-html.png + Icons/Chicago95-tux/mimes/24/text-x-generic-template.png + Icons/Chicago95-tux/mimes/24/text-x-generic.png + Icons/Chicago95-tux/mimes/24/text-x-install.png + Icons/Chicago95-tux/mimes/24/text-x-java-source.png + Icons/Chicago95-tux/mimes/24/text-x-lua.png + Icons/Chicago95-tux/mimes/24/text-x-makefile.png + Icons/Chicago95-tux/mimes/24/text-x-preview.png + Icons/Chicago95-tux/mimes/24/text-x-readme.png + Icons/Chicago95-tux/mimes/24/text-x-script.png + Icons/Chicago95-tux/mimes/24/text-x-sql.png + Icons/Chicago95-tux/mimes/24/video-x-generic.png + Icons/Chicago95-tux/mimes/24/x-office-address-book.png + Icons/Chicago95-tux/mimes/24/x-office-calendar.png + Icons/Chicago95-tux/mimes/24/x-office-document-template.png + Icons/Chicago95-tux/mimes/24/x-office-document.png + Icons/Chicago95-tux/mimes/24/x-office-drawing-template.png + Icons/Chicago95-tux/mimes/24/x-office-drawing.png + Icons/Chicago95-tux/mimes/24/x-office-presentation-template.png + Icons/Chicago95-tux/mimes/24/x-office-presentation.png + Icons/Chicago95-tux/mimes/24/x-office-spreadsheet-template.png + Icons/Chicago95-tux/mimes/24/x-office-spreadsheet.png + Icons/Chicago95-tux/mimes/32/application-certificate.png + Icons/Chicago95-tux/mimes/32/application-epub+zip.png + Icons/Chicago95-tux/mimes/32/application-illustrator.png + Icons/Chicago95-tux/mimes/32/application-msword.png + Icons/Chicago95-tux/mimes/32/application-rss+xml.png + Icons/Chicago95-tux/mimes/32/application-vnd.ms-access.png + Icons/Chicago95-tux/mimes/32/application-vnd.ms-excel.png + Icons/Chicago95-tux/mimes/32/application-vnd.ms-powerpoint.png + Icons/Chicago95-tux/mimes/32/application-vnd.nokia.qt.qmakeprofile.png + Icons/Chicago95-tux/mimes/32/application-vnd.nokia.xml.qt.resource.png + Icons/Chicago95-tux/mimes/32/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95-tux/mimes/32/application-x-bittorrent.png + Icons/Chicago95-tux/mimes/32/application-x-cd-image.png + Icons/Chicago95-tux/mimes/32/application-x-desktop.png + Icons/Chicago95-tux/mimes/32/application-x-executable.png + Icons/Chicago95-tux/mimes/32/application-x-flash-video.png + Icons/Chicago95-tux/mimes/32/application-x-java.png + Icons/Chicago95-tux/mimes/32/application-x-ms-dos-executable.png + Icons/Chicago95-tux/mimes/32/application-x-object.png + Icons/Chicago95-tux/mimes/32/application-x-rar.png + Icons/Chicago95-tux/mimes/32/application-x-shellscript.png + Icons/Chicago95-tux/mimes/32/application-x-sln.png + Icons/Chicago95-tux/mimes/32/application-x-theme.png + Icons/Chicago95-tux/mimes/32/audio-x-generic.png + Icons/Chicago95-tux/mimes/32/audio-x-playlist.png + Icons/Chicago95-tux/mimes/32/audio-x-smart-playlist.png + Icons/Chicago95-tux/mimes/32/authors.png + Icons/Chicago95-tux/mimes/32/extension.png + Icons/Chicago95-tux/mimes/32/font-x-generic.png + Icons/Chicago95-tux/mimes/32/gnome-mime-application-pdf.png + Icons/Chicago95-tux/mimes/32/gnome-mime-application-x-killustrator.png + Icons/Chicago95-tux/mimes/32/gnome-mime-application-x-rar.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-bmp.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-gif.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-jpeg.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-png.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-tiff.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-x-cmu-raster.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-x-portable-bitmap.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-x-psd.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image-x-xpixmap.png + Icons/Chicago95-tux/mimes/32/gnome-mime-image.png + Icons/Chicago95-tux/mimes/32/image-bmp.png + Icons/Chicago95-tux/mimes/32/image-gif.png + Icons/Chicago95-tux/mimes/32/image-jpeg.png + Icons/Chicago95-tux/mimes/32/image-png.png + Icons/Chicago95-tux/mimes/32/image-tiff.png + Icons/Chicago95-tux/mimes/32/image-x-compressed-xcf.png + Icons/Chicago95-tux/mimes/32/image-x-generic.png + Icons/Chicago95-tux/mimes/32/image-x-portable-bitmap.png + Icons/Chicago95-tux/mimes/32/image-x-psd.png + Icons/Chicago95-tux/mimes/32/image-x-svg+xml.png + Icons/Chicago95-tux/mimes/32/image-x-tga.png + Icons/Chicago95-tux/mimes/32/image-x-xcf.png + Icons/Chicago95-tux/mimes/32/image.png + Icons/Chicago95-tux/mimes/32/libreoffice-database.png + Icons/Chicago95-tux/mimes/32/libreoffice-drawing-template.png + Icons/Chicago95-tux/mimes/32/libreoffice-drawing.png + Icons/Chicago95-tux/mimes/32/libreoffice-formula.png + Icons/Chicago95-tux/mimes/32/libreoffice-presentation-template.png + Icons/Chicago95-tux/mimes/32/libreoffice-presentation.png + Icons/Chicago95-tux/mimes/32/libreoffice-spreadsheet-template.png + Icons/Chicago95-tux/mimes/32/libreoffice-spreadsheet.png + Icons/Chicago95-tux/mimes/32/libreoffice-text-template.png + Icons/Chicago95-tux/mimes/32/libreoffice-text.png + Icons/Chicago95-tux/mimes/32/media-audio.png + Icons/Chicago95-tux/mimes/32/multipart-encrypted.png + Icons/Chicago95-tux/mimes/32/office-contact.png + Icons/Chicago95-tux/mimes/32/package-x-generic.png + Icons/Chicago95-tux/mimes/32/plan.png + Icons/Chicago95-tux/mimes/32/rar.png + Icons/Chicago95-tux/mimes/32/text-css.png + Icons/Chicago95-tux/mimes/32/text-html.png + Icons/Chicago95-tux/mimes/32/text-x-c++hdr.png + Icons/Chicago95-tux/mimes/32/text-x-c++src.png + Icons/Chicago95-tux/mimes/32/text-x-chdr.png + Icons/Chicago95-tux/mimes/32/text-x-csrc.png + Icons/Chicago95-tux/mimes/32/text-x-generic-template.png + Icons/Chicago95-tux/mimes/32/text-x-generic.png + Icons/Chicago95-tux/mimes/32/text-x-install.png + Icons/Chicago95-tux/mimes/32/text-x-java-source.png + Icons/Chicago95-tux/mimes/32/text-x-lua.png + Icons/Chicago95-tux/mimes/32/text-x-preview.png + Icons/Chicago95-tux/mimes/32/text-x-readme.png + Icons/Chicago95-tux/mimes/32/text-x-script.png + Icons/Chicago95-tux/mimes/32/video-x-generic.png + Icons/Chicago95-tux/mimes/32/x-office-address-book.png + Icons/Chicago95-tux/mimes/32/x-office-calendar.png + Icons/Chicago95-tux/mimes/32/x-office-document-templat.png + Icons/Chicago95-tux/mimes/32/x-office-document-template.png + Icons/Chicago95-tux/mimes/32/x-office-document.png + Icons/Chicago95-tux/mimes/32/x-office-drawing-template.png + Icons/Chicago95-tux/mimes/32/x-office-drawing.png + Icons/Chicago95-tux/mimes/32/x-office-presentation-template.png + Icons/Chicago95-tux/mimes/32/x-office-presentation.png + Icons/Chicago95-tux/mimes/32/x-office-spreadsheet-template.png + Icons/Chicago95-tux/mimes/32/x-office-spreadsheet.png + Icons/Chicago95-tux/mimes/48/application-7zip.png + Icons/Chicago95-tux/mimes/48/application-epub+zip.png + Icons/Chicago95-tux/mimes/48/application-illustrator.png + Icons/Chicago95-tux/mimes/48/application-msword.png + Icons/Chicago95-tux/mimes/48/application-octet-stream.png + Icons/Chicago95-tux/mimes/48/application-pdf.png + Icons/Chicago95-tux/mimes/48/application-rss+xml.png + Icons/Chicago95-tux/mimes/48/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95-tux/mimes/48/application-vnd.oasis.opendocument.chart.png.png + Icons/Chicago95-tux/mimes/48/application-x-bittorrent.png + Icons/Chicago95-tux/mimes/48/application-x-cd-image.png + Icons/Chicago95-tux/mimes/48/application-x-executable.png + Icons/Chicago95-tux/mimes/48/application-x-flash-video.png + Icons/Chicago95-tux/mimes/48/application-x-java.png + Icons/Chicago95-tux/mimes/48/application-x-ms-dos-executable.png + Icons/Chicago95-tux/mimes/48/application-x-object.png + Icons/Chicago95-tux/mimes/48/application-x-php.png + Icons/Chicago95-tux/mimes/48/application-x-rar.png + Icons/Chicago95-tux/mimes/48/application-x-shellscript.png + Icons/Chicago95-tux/mimes/48/application-x-sln.png + Icons/Chicago95-tux/mimes/48/application-x-theme.png + Icons/Chicago95-tux/mimes/48/application-zip.png + Icons/Chicago95-tux/mimes/48/audio-x-generic.png + Icons/Chicago95-tux/mimes/48/audio-x-playlist.png + Icons/Chicago95-tux/mimes/48/authors.png + Icons/Chicago95-tux/mimes/48/empty.png + Icons/Chicago95-tux/mimes/48/empty_48x48.png + Icons/Chicago95-tux/mimes/48/extension.png + Icons/Chicago95-tux/mimes/48/font-x-generic.png + Icons/Chicago95-tux/mimes/48/gnome-mime-application-pdf.png + Icons/Chicago95-tux/mimes/48/gnome-mime-application-x-glade.png + Icons/Chicago95-tux/mimes/48/image-bmp.png + Icons/Chicago95-tux/mimes/48/image-gif.png + Icons/Chicago95-tux/mimes/48/image-jpeg.png + Icons/Chicago95-tux/mimes/48/image-png.png + Icons/Chicago95-tux/mimes/48/image-tiff.png + Icons/Chicago95-tux/mimes/48/image-x-compressed-xcf.png + Icons/Chicago95-tux/mimes/48/image-x-generic.png + Icons/Chicago95-tux/mimes/48/image-x-ico.png + Icons/Chicago95-tux/mimes/48/image-x-psd.png + Icons/Chicago95-tux/mimes/48/image-x-tga.png + Icons/Chicago95-tux/mimes/48/image-x-xcf.png + Icons/Chicago95-tux/mimes/48/image.png + Icons/Chicago95-tux/mimes/48/libreoffice-calc.png + Icons/Chicago95-tux/mimes/48/libreoffice-database.png + Icons/Chicago95-tux/mimes/48/libreoffice-drawing-template.png + Icons/Chicago95-tux/mimes/48/libreoffice-drawing.png + Icons/Chicago95-tux/mimes/48/libreoffice-formula.png + Icons/Chicago95-tux/mimes/48/libreoffice-presentation-template.png + Icons/Chicago95-tux/mimes/48/libreoffice-presentation.png + Icons/Chicago95-tux/mimes/48/libreoffice-spreadsheet-template.png + Icons/Chicago95-tux/mimes/48/libreoffice-text-template.png + Icons/Chicago95-tux/mimes/48/libreoffice-text.png + Icons/Chicago95-tux/mimes/48/media-audio.png + Icons/Chicago95-tux/mimes/48/msaccess.exe_14_259_4_48x48x4.png + Icons/Chicago95-tux/mimes/48/office-contact.png + Icons/Chicago95-tux/mimes/48/office-database.png + Icons/Chicago95-tux/mimes/48/package-x-generic.png + Icons/Chicago95-tux/mimes/48/text-css.png + Icons/Chicago95-tux/mimes/48/text-html.png + Icons/Chicago95-tux/mimes/48/text-x-c++.png + Icons/Chicago95-tux/mimes/48/text-x-changelog.png + Icons/Chicago95-tux/mimes/48/text-x-chdr.png + Icons/Chicago95-tux/mimes/48/text-x-csharp.png + Icons/Chicago95-tux/mimes/48/text-x-csrc.png + Icons/Chicago95-tux/mimes/48/text-x-generic-template.png + Icons/Chicago95-tux/mimes/48/text-x-install.png + Icons/Chicago95-tux/mimes/48/text-x-java-source.png + Icons/Chicago95-tux/mimes/48/text-x-javascript.png + Icons/Chicago95-tux/mimes/48/text-x-kgw.png + Icons/Chicago95-tux/mimes/48/text-x-lua.png + Icons/Chicago95-tux/mimes/48/text-x-makefile.png + Icons/Chicago95-tux/mimes/48/text-x-perl.png + Icons/Chicago95-tux/mimes/48/text-x-preview.png + Icons/Chicago95-tux/mimes/48/text-x-python.png + Icons/Chicago95-tux/mimes/48/text-x-ruby.png + Icons/Chicago95-tux/mimes/48/text-x-script.png + Icons/Chicago95-tux/mimes/48/text-x-vala.png + Icons/Chicago95-tux/mimes/48/video-x-generic.png + Icons/Chicago95-tux/mimes/48/x-office-adress-book.png + Icons/Chicago95-tux/mimes/48/x-office-calendar.png + Icons/Chicago95-tux/mimes/48/x-office-document-template.png + Icons/Chicago95-tux/mimes/48/x-office-drawing-template.png + Icons/Chicago95-tux/mimes/48/x-office-drawing.png + Icons/Chicago95-tux/mimes/48/x-office-spreadsheet-template.png + Icons/Chicago95-tux/notifications/16/notification-network-wireless-full.png + Icons/Chicago95-tux/notifications/16/notification-network-wireless-high.png + Icons/Chicago95-tux/notifications/16/notification-network-wireless-low.png + Icons/Chicago95-tux/notifications/16/notification-network-wireless-medium.png + Icons/Chicago95-tux/notifications/16/notification-network-wireless-none.png + Icons/Chicago95-tux/notifications/24/notification-message-im.png + Icons/Chicago95-tux/notifications/24/notification-network-ethernet-connected.png + Icons/Chicago95-tux/notifications/24/notification-network-ethernet-disconnected.png + Icons/Chicago95-tux/notifications/32/notification-network-ethernet-connected.png + Icons/Chicago95-tux/notifications/32/notification-network-ethernet-disconnected.png + Icons/Chicago95-tux/notifications/48/audio-volume-high.png + Icons/Chicago95-tux/notifications/48/audio-volume-low.png + Icons/Chicago95-tux/notifications/48/audio-volume-medium.png + Icons/Chicago95-tux/notifications/48/audio-volume-muted.png + Icons/Chicago95-tux/notifications/48/audio-volume-off.png + Icons/Chicago95-tux/notifications/48/notification-audio-next.png + Icons/Chicago95-tux/notifications/48/notification-audio-pause.png + Icons/Chicago95-tux/notifications/48/notification-audio-play.png + Icons/Chicago95-tux/notifications/48/notification-audio-previous.png + Icons/Chicago95-tux/notifications/48/notification-audio-stop.png + Icons/Chicago95-tux/notifications/48/notification-device-eject.png + Icons/Chicago95-tux/notifications/48/notification-device-firewire.png + Icons/Chicago95-tux/notifications/48/notification-display-brightness-full.png + Icons/Chicago95-tux/notifications/48/notification-display-brightness-high.png + Icons/Chicago95-tux/notifications/48/notification-display-brightness-low.png + Icons/Chicago95-tux/notifications/48/notification-display-brightness-medium.png + Icons/Chicago95-tux/notifications/48/notification-display-brightness-off.png + Icons/Chicago95-tux/notifications/48/notification-message-im.png + Icons/Chicago95-tux/notifications/48/notification-network-ethernet-connected.png + Icons/Chicago95-tux/notifications/48/notification-network-ethernet-disconnected.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-disconnected.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-full.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-high.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-low.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-medium.png + Icons/Chicago95-tux/notifications/48/notification-network-wireless-none.png + Icons/Chicago95-tux/notifications/48/notification-power-disconnected.png + Icons/Chicago95-tux/notifications/48/xfpm-brightness-keyboard.png + Icons/Chicago95-tux/notifications/48/xfpm-brightness-lcd.png + Icons/Chicago95-tux/panel/16/account-logged-in.png + Icons/Chicago95-tux/panel/16/audio-input-microphone-high-panel.png + Icons/Chicago95-tux/panel/16/audio-input-microphone-none-panel.png + Icons/Chicago95-tux/panel/16/audio-volume-high.png + Icons/Chicago95-tux/panel/16/audio-volume-low-zero.png + Icons/Chicago95-tux/panel/16/audio-volume-low.png + Icons/Chicago95-tux/panel/16/audio-volume-medium.png + Icons/Chicago95-tux/panel/16/battery-000-charging.png + Icons/Chicago95-tux/panel/16/battery-000.png + Icons/Chicago95-tux/panel/16/battery-020-charging.png + Icons/Chicago95-tux/panel/16/battery-040-charging.png + Icons/Chicago95-tux/panel/16/battery-060-charging.png + Icons/Chicago95-tux/panel/16/battery-080-charging.png + Icons/Chicago95-tux/panel/16/battery-100-charging.png + Icons/Chicago95-tux/panel/16/battery-caution-charging.png + Icons/Chicago95-tux/panel/16/battery-caution-symbolic.png + Icons/Chicago95-tux/panel/16/battery-caution.png + Icons/Chicago95-tux/panel/16/battery-charged.png + Icons/Chicago95-tux/panel/16/battery-empty-charging.png + Icons/Chicago95-tux/panel/16/battery-empty-symbolic.png + Icons/Chicago95-tux/panel/16/battery-empty.png + Icons/Chicago95-tux/panel/16/battery-full-charged.png + Icons/Chicago95-tux/panel/16/battery-full-charging.png + Icons/Chicago95-tux/panel/16/battery-full-symbolic.png + Icons/Chicago95-tux/panel/16/battery-full.png + Icons/Chicago95-tux/panel/16/battery-good-charging.png + Icons/Chicago95-tux/panel/16/battery-good-symbolic.png + Icons/Chicago95-tux/panel/16/battery-good.png + Icons/Chicago95-tux/panel/16/battery-low-charging.png + Icons/Chicago95-tux/panel/16/battery-low-symbolic.png + Icons/Chicago95-tux/panel/16/battery-low.png + Icons/Chicago95-tux/panel/16/empathy-available.png + Icons/Chicago95-tux/panel/16/empathy-away.png + Icons/Chicago95-tux/panel/16/empathy-busy.png + Icons/Chicago95-tux/panel/16/empathy-offline.png + Icons/Chicago95-tux/panel/16/gnome-do-symbolic.png + Icons/Chicago95-tux/panel/16/gpm-ac-adapter.png + Icons/Chicago95-tux/panel/16/gpm-battery-000-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-020-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-040-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-060-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-080-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-100-charging.png + Icons/Chicago95-tux/panel/16/gpm-battery-charged.png + Icons/Chicago95-tux/panel/16/gpm-inhibit.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-000.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-020.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-040.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-060.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-080.png + Icons/Chicago95-tux/panel/16/gpm-keyboard-100.png + Icons/Chicago95-tux/panel/16/gpm-mouse-000.png + Icons/Chicago95-tux/panel/16/gpm-mouse-020.png + Icons/Chicago95-tux/panel/16/gpm-mouse-040.png + Icons/Chicago95-tux/panel/16/gpm-mouse-060.png + Icons/Chicago95-tux/panel/16/gpm-mouse-080.png + Icons/Chicago95-tux/panel/16/gpm-mouse-100.png + Icons/Chicago95-tux/panel/16/gpm-primary-000.png + Icons/Chicago95-tux/panel/16/gpm-primary-020.png + Icons/Chicago95-tux/panel/16/gpm-primary-040.png + Icons/Chicago95-tux/panel/16/gpm-primary-060.png + Icons/Chicago95-tux/panel/16/gpm-primary-080.png + Icons/Chicago95-tux/panel/16/gpm-primary-100.png + Icons/Chicago95-tux/panel/16/gsd-xrandr.png + Icons/Chicago95-tux/panel/16/gtg-panel.png + Icons/Chicago95-tux/panel/16/haguichi-connected.png + Icons/Chicago95-tux/panel/16/haguichi-connecting-1.png + Icons/Chicago95-tux/panel/16/haguichi-connecting-2.png + Icons/Chicago95-tux/panel/16/haguichi-disconnected.png + Icons/Chicago95-tux/panel/16/im-message-new.png + Icons/Chicago95-tux/panel/16/nm-device-wired.png + Icons/Chicago95-tux/panel/16/nm-signal-0-secure.png + Icons/Chicago95-tux/panel/16/nm-signal-0.png + Icons/Chicago95-tux/panel/16/nm-signal-100-secure.png + Icons/Chicago95-tux/panel/16/nm-signal-100.png + Icons/Chicago95-tux/panel/16/nm-signal-25-secure.png + Icons/Chicago95-tux/panel/16/nm-signal-25.png + Icons/Chicago95-tux/panel/16/nm-signal-50-secure.png + Icons/Chicago95-tux/panel/16/nm-signal-50.png + Icons/Chicago95-tux/panel/16/nm-signal-75-secure.png + Icons/Chicago95-tux/panel/16/nm-signal-75.png + Icons/Chicago95-tux/panel/16/pidgin-tray-invisible.png + Icons/Chicago95-tux/panel/16/system-restart-panel.png + Icons/Chicago95-tux/panel/16/system-shutdown-panel-restart.png + Icons/Chicago95-tux/panel/16/system-shutdown-panel.png + Icons/Chicago95-tux/panel/16/user-available-panel.png + Icons/Chicago95-tux/panel/16/xfpm-ac-adapter.png + Icons/Chicago95-tux/panel/22/account-logged-in.png + Icons/Chicago95-tux/panel/22/audio-input-microphone-high-panel.png + Icons/Chicago95-tux/panel/22/audio-input-microphone-none-panel.png + Icons/Chicago95-tux/panel/22/audio-output-none-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-high-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-low-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-low-zero-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-medium-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-muted-blocking-panel.png + Icons/Chicago95-tux/panel/22/audio-volume-muted-panel.png + Icons/Chicago95-tux/panel/22/banshee-panel.png + Icons/Chicago95-tux/panel/22/bluetooth-active.png + Icons/Chicago95-tux/panel/22/bluetooth-disabled.png + Icons/Chicago95-tux/panel/22/bluetooth-paired.png + Icons/Chicago95-tux/panel/22/caffeine-cup-empty.png + Icons/Chicago95-tux/panel/22/caffeine-cup-full.png + Icons/Chicago95-tux/panel/22/clipman.png + Icons/Chicago95-tux/panel/22/dropboxstatus-busy.png + Icons/Chicago95-tux/panel/22/dropboxstatus-busy2.png + Icons/Chicago95-tux/panel/22/dropboxstatus-idle.png + Icons/Chicago95-tux/panel/22/dropboxstatus-logo.png + Icons/Chicago95-tux/panel/22/dropboxstatus-x.png + Icons/Chicago95-tux/panel/22/gnome-do-symbolic.png + Icons/Chicago95-tux/panel/22/gpm-ac-adapter.png + Icons/Chicago95-tux/panel/22/gpm-battery-000-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-000.png + Icons/Chicago95-tux/panel/22/gpm-battery-020-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-020.png + Icons/Chicago95-tux/panel/22/gpm-battery-040-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-040.png + Icons/Chicago95-tux/panel/22/gpm-battery-060-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-060.png + Icons/Chicago95-tux/panel/22/gpm-battery-080-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-080.png + Icons/Chicago95-tux/panel/22/gpm-battery-100-charging.png + Icons/Chicago95-tux/panel/22/gpm-battery-100.png + Icons/Chicago95-tux/panel/22/gpm-battery-charged.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-000.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-020.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-040.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-060.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-080.png + Icons/Chicago95-tux/panel/22/gpm-keyboard-100.png + Icons/Chicago95-tux/panel/22/gpm-mouse-000.png + Icons/Chicago95-tux/panel/22/gpm-mouse-020.png + Icons/Chicago95-tux/panel/22/gpm-mouse-040.png + Icons/Chicago95-tux/panel/22/gpm-mouse-060.png + Icons/Chicago95-tux/panel/22/gpm-mouse-080.png + Icons/Chicago95-tux/panel/22/gpm-mouse-100.png + Icons/Chicago95-tux/panel/22/gpm-phone-000.png + Icons/Chicago95-tux/panel/22/gpm-phone-020.png + Icons/Chicago95-tux/panel/22/gpm-phone-040.png + Icons/Chicago95-tux/panel/22/gpm-phone-060.png + Icons/Chicago95-tux/panel/22/gpm-phone-080.png + Icons/Chicago95-tux/panel/22/gpm-phone-100.png + Icons/Chicago95-tux/panel/22/gsd-xrandr.png + Icons/Chicago95-tux/panel/22/gsm-3g-full.png + Icons/Chicago95-tux/panel/22/gsm-3g-high.png + Icons/Chicago95-tux/panel/22/gsm-3g-low.png + Icons/Chicago95-tux/panel/22/gsm-3g-medium.png + Icons/Chicago95-tux/panel/22/gsm-3g-none.png + Icons/Chicago95-tux/panel/22/gtg-panel.png + Icons/Chicago95-tux/panel/22/gtk-dialog-authentication-panel.png + Icons/Chicago95-tux/panel/22/haguichi-connected.png + Icons/Chicago95-tux/panel/22/haguichi-connecting-1.png + Icons/Chicago95-tux/panel/22/haguichi-connecting-2.png + Icons/Chicago95-tux/panel/22/haguichi-disconnected.png + Icons/Chicago95-tux/panel/22/indicator-messages.png + Icons/Chicago95-tux/panel/22/nm-device-wired.png + Icons/Chicago95-tux/panel/22/nm-no-connection.png + Icons/Chicago95-tux/panel/22/nm-signal-0.png + Icons/Chicago95-tux/panel/22/nm-signal-100.png + Icons/Chicago95-tux/panel/22/nm-signal-25.png + Icons/Chicago95-tux/panel/22/nm-signal-50.png + Icons/Chicago95-tux/panel/22/nm-signal-75.png + Icons/Chicago95-tux/panel/22/nm-vpn-lock.png + Icons/Chicago95-tux/panel/22/nm-vpn-standalone-lock.png + Icons/Chicago95-tux/panel/22/nm-wwan-tower.png + Icons/Chicago95-tux/panel/22/onboard-mono.png + Icons/Chicago95-tux/panel/22/pithos.png + Icons/Chicago95-tux/panel/22/preferences-desktop-accessibility-panel.png + Icons/Chicago95-tux/panel/22/rhythmbox-panel.png + Icons/Chicago95-tux/panel/22/start-here.png + Icons/Chicago95-tux/panel/22/steadyflow-alert-panel.png + Icons/Chicago95-tux/panel/22/steadyflow-panel.png + Icons/Chicago95-tux/panel/22/system-devices-panel-alert.png + Icons/Chicago95-tux/panel/22/system-devices-panel-information.png + Icons/Chicago95-tux/panel/22/system-devices-panel.png + Icons/Chicago95-tux/panel/22/system-file-manager-panel.png + Icons/Chicago95-tux/panel/22/system-restart-panel.png + Icons/Chicago95-tux/panel/22/system-shutdown-panel-restart.png + Icons/Chicago95-tux/panel/22/system-shutdown-panel.png + Icons/Chicago95-tux/panel/22/tomboy-panel.png + Icons/Chicago95-tux/panel/22/transmission-tray-icon.png + Icons/Chicago95-tux/panel/22/ubuntuone-client-error.png + Icons/Chicago95-tux/panel/22/ubuntuone-client-idle.png + Icons/Chicago95-tux/panel/22/ubuntuone-client-offline.png + Icons/Chicago95-tux/panel/22/ubuntuone-client-updating.png + Icons/Chicago95-tux/panel/22/user-available-panel.png + Icons/Chicago95-tux/panel/22/user-away-panel.png + Icons/Chicago95-tux/panel/22/user-busy-panel.png + Icons/Chicago95-tux/panel/22/user-idle-panel.png + Icons/Chicago95-tux/panel/22/user-invisible-panel.png + Icons/Chicago95-tux/panel/22/user-offline-panel.png + Icons/Chicago95-tux/panel/22/xchat-panel.png + Icons/Chicago95-tux/panel/22/xfpm-brightness-lcd.png + Icons/Chicago95-tux/panel/22/xfpm-keyboard-030.png + Icons/Chicago95-tux/panel/22/xfpm-mouse-030.png + Icons/Chicago95-tux/panel/22/xfpm-phone-030.png + Icons/Chicago95-tux/panel/24/account-logged-in.png + Icons/Chicago95-tux/panel/24/audio-output-none-panel.png + Icons/Chicago95-tux/panel/24/audio-volume-high-panel.png + Icons/Chicago95-tux/panel/24/audio-volume-high.png + Icons/Chicago95-tux/panel/24/audio-volume-low.png + Icons/Chicago95-tux/panel/24/audio-volume-medium.png + Icons/Chicago95-tux/panel/24/audio-volume-muted.png + Icons/Chicago95-tux/panel/24/bluetooth-active.png + Icons/Chicago95-tux/panel/24/bluetooth-disabled.png + Icons/Chicago95-tux/panel/24/bluetooth-paired.png + Icons/Chicago95-tux/panel/24/gpm-ac-adapter.png + Icons/Chicago95-tux/panel/24/gpm-battery-000-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-000.png + Icons/Chicago95-tux/panel/24/gpm-battery-020-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-020.png + Icons/Chicago95-tux/panel/24/gpm-battery-040-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-040.png + Icons/Chicago95-tux/panel/24/gpm-battery-060-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-060.png + Icons/Chicago95-tux/panel/24/gpm-battery-080-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-080.png + Icons/Chicago95-tux/panel/24/gpm-battery-100-charging.png + Icons/Chicago95-tux/panel/24/gpm-battery-100.png + Icons/Chicago95-tux/panel/24/gpm-battery-charged.png + Icons/Chicago95-tux/panel/24/gsd-xrandr.png + Icons/Chicago95-tux/panel/24/haguichi-connected.png + Icons/Chicago95-tux/panel/24/haguichi-connecting-1.png + Icons/Chicago95-tux/panel/24/haguichi-connecting-2.png + Icons/Chicago95-tux/panel/24/haguichi-disconnected.png + Icons/Chicago95-tux/panel/24/nm-device-wired.png + Icons/Chicago95-tux/panel/24/nm-no-connection.png + Icons/Chicago95-tux/panel/24/nm-signal-0.png + Icons/Chicago95-tux/panel/24/nm-signal-100.png + Icons/Chicago95-tux/panel/24/nm-signal-25.png + Icons/Chicago95-tux/panel/24/nm-signal-50.png + Icons/Chicago95-tux/panel/24/nm-signal-75.png + Icons/Chicago95-tux/panel/24/nm-vpn-lock.png + Icons/Chicago95-tux/panel/24/nm-wwan-tower.png + Icons/Chicago95-tux/panel/24/start-here.png + Icons/Chicago95-tux/panel/24/user-available-panel.png + Icons/Chicago95-tux/panel/48/gpm-ac-adapter.png + Icons/Chicago95-tux/panel/48/gpm-mouse-000.png + Icons/Chicago95-tux/panel/48/gpm-mouse-020.png + Icons/Chicago95-tux/panel/48/gpm-mouse-040.png + Icons/Chicago95-tux/panel/48/gpm-mouse-060.png + Icons/Chicago95-tux/panel/48/gpm-mouse-080.png + Icons/Chicago95-tux/panel/48/gpm-mouse-100.png + Icons/Chicago95-tux/panel/48/gpm-phone-000.png + Icons/Chicago95-tux/panel/48/gpm-phone-020.png + Icons/Chicago95-tux/panel/48/gpm-phone-040.png + Icons/Chicago95-tux/panel/48/gpm-phone-060.png + Icons/Chicago95-tux/panel/48/gpm-phone-080.png + Icons/Chicago95-tux/panel/48/gpm-phone-100.png + Icons/Chicago95-tux/panel/48/nm-device-wired.png + Icons/Chicago95-tux/panel/48/nm-signal-0.png + Icons/Chicago95-tux/panel/48/nm-signal-100.png + Icons/Chicago95-tux/panel/48/nm-signal-25.png + Icons/Chicago95-tux/panel/48/nm-signal-50.png + Icons/Chicago95-tux/panel/48/nm-signal-75.png + Icons/Chicago95-tux/places/16/bookmark-missing.png + Icons/Chicago95-tux/places/16/folder-recent.png + Icons/Chicago95-tux/places/16/folder-remote.png + Icons/Chicago95-tux/places/16/folder-saved-search.png + Icons/Chicago95-tux/places/16/folder-tag.png + Icons/Chicago95-tux/places/16/folder-visiting.png + Icons/Chicago95-tux/places/16/folder.icon + Icons/Chicago95-tux/places/16/folder.png + Icons/Chicago95-tux/places/16/internet-radio.png + Icons/Chicago95-tux/places/16/library-audiobook.png + Icons/Chicago95-tux/places/16/library-places.png + Icons/Chicago95-tux/places/16/library-podcast.png + Icons/Chicago95-tux/places/16/mail-inbox.png + Icons/Chicago95-tux/places/16/mail-mailbox.png + Icons/Chicago95-tux/places/16/mail-outbox.png + Icons/Chicago95-tux/places/16/mail-sent.png + Icons/Chicago95-tux/places/16/network-server.png + Icons/Chicago95-tux/places/16/playlist-automatic.png + Icons/Chicago95-tux/places/16/playlist-queue.png + Icons/Chicago95-tux/places/16/playlist-similar.png + Icons/Chicago95-tux/places/16/playlist.png + Icons/Chicago95-tux/places/16/start-here.png + Icons/Chicago95-tux/places/16/start-here.png.old + Icons/Chicago95-tux/places/16/user-desktop.png + Icons/Chicago95-tux/places/16/user-home.png + Icons/Chicago95-tux/places/16/user-trash-full.png + Icons/Chicago95-tux/places/16/user-trash.png + Icons/Chicago95-tux/places/22/bookmark-missing.png + Icons/Chicago95-tux/places/22/folder-drag-accept.png + Icons/Chicago95-tux/places/22/folder-recent.png + Icons/Chicago95-tux/places/22/folder-remote.png + Icons/Chicago95-tux/places/22/folder-saved-search.png + Icons/Chicago95-tux/places/22/folder-visiting.png + Icons/Chicago95-tux/places/22/folder.icon + Icons/Chicago95-tux/places/22/folder.png + Icons/Chicago95-tux/places/22/mail-inbox.png + Icons/Chicago95-tux/places/22/mail-mailbox.png + Icons/Chicago95-tux/places/22/mail-outbox.png + Icons/Chicago95-tux/places/22/mail-sent.png + Icons/Chicago95-tux/places/22/network-server.png + Icons/Chicago95-tux/places/22/network-workgroup.png + Icons/Chicago95-tux/places/22/start-here.png + Icons/Chicago95-tux/places/22/start-here.png.old + Icons/Chicago95-tux/places/22/stock_music-library.png + Icons/Chicago95-tux/places/22/user-bookmarks.png + Icons/Chicago95-tux/places/22/user-desktop.png + Icons/Chicago95-tux/places/22/user-home.png + Icons/Chicago95-tux/places/22/user-trash-full.png + Icons/Chicago95-tux/places/22/user-trash.png + Icons/Chicago95-tux/places/24/bookmark-missing.png + Icons/Chicago95-tux/places/24/folder-drag-accept.png + Icons/Chicago95-tux/places/24/folder-recent.png + Icons/Chicago95-tux/places/24/folder-remote.png + Icons/Chicago95-tux/places/24/folder-saved-search.png + Icons/Chicago95-tux/places/24/folder-visiting.png + Icons/Chicago95-tux/places/24/folder.icon + Icons/Chicago95-tux/places/24/folder.png + Icons/Chicago95-tux/places/24/mail-inbox.png + Icons/Chicago95-tux/places/24/mail-mailbox.png + Icons/Chicago95-tux/places/24/mail-outbox.png + Icons/Chicago95-tux/places/24/mail-sent.png + Icons/Chicago95-tux/places/24/network-server.png + Icons/Chicago95-tux/places/24/network-workgroup.png + Icons/Chicago95-tux/places/24/start-here.png + Icons/Chicago95-tux/places/24/start-here.png.old + Icons/Chicago95-tux/places/24/stock_music-library.png + Icons/Chicago95-tux/places/24/user-bookmarks.png + Icons/Chicago95-tux/places/24/user-desktop.png + Icons/Chicago95-tux/places/24/user-home.png + Icons/Chicago95-tux/places/24/user-trash-full.png + Icons/Chicago95-tux/places/24/user-trash.png + Icons/Chicago95-tux/places/32/bookmark-missing.png + Icons/Chicago95-tux/places/32/folder-recent.png + Icons/Chicago95-tux/places/32/folder-remote.png + Icons/Chicago95-tux/places/32/folder-saved-search.png + Icons/Chicago95-tux/places/32/folder-visiting.png + Icons/Chicago95-tux/places/32/folder.png + Icons/Chicago95-tux/places/32/mail-inbox.png + Icons/Chicago95-tux/places/32/mail-mailbox.png + Icons/Chicago95-tux/places/32/mail-outbox.png + Icons/Chicago95-tux/places/32/network-server.png + Icons/Chicago95-tux/places/32/network-workgroup.png + Icons/Chicago95-tux/places/32/start-here.png + Icons/Chicago95-tux/places/32/start-here.png.old + Icons/Chicago95-tux/places/32/user-bookmarks.png + Icons/Chicago95-tux/places/32/user-desktop.png + Icons/Chicago95-tux/places/32/user-home.png + Icons/Chicago95-tux/places/32/user-trash-full.png + Icons/Chicago95-tux/places/32/user-trash.png + Icons/Chicago95-tux/places/48/bookmark-missing.png + Icons/Chicago95-tux/places/48/distributor-logo.png + Icons/Chicago95-tux/places/48/distributor-logo.png.old + Icons/Chicago95-tux/places/48/folder-documents.png + Icons/Chicago95-tux/places/48/folder-download.png + Icons/Chicago95-tux/places/48/folder-drag-accept.png + Icons/Chicago95-tux/places/48/folder-music.png + Icons/Chicago95-tux/places/48/folder-pictures.png + Icons/Chicago95-tux/places/48/folder-publicshare.png + Icons/Chicago95-tux/places/48/folder-recent.png + Icons/Chicago95-tux/places/48/folder-remote.png + Icons/Chicago95-tux/places/48/folder-saved-search.png + Icons/Chicago95-tux/places/48/folder-templates.png + Icons/Chicago95-tux/places/48/folder-ubuntuone.png + Icons/Chicago95-tux/places/48/folder-videos.png + Icons/Chicago95-tux/places/48/folder-visiting.png + Icons/Chicago95-tux/places/48/folder.png + Icons/Chicago95-tux/places/48/mail-inbox.png + Icons/Chicago95-tux/places/48/mail-mailbox.png + Icons/Chicago95-tux/places/48/mail-outbox.png + Icons/Chicago95-tux/places/48/network-server.png + Icons/Chicago95-tux/places/48/stock_music-library.png + Icons/Chicago95-tux/places/48/user-bookmarks.png + Icons/Chicago95-tux/places/48/user-desktop.png + Icons/Chicago95-tux/places/48/user-home.png + Icons/Chicago95-tux/places/48/user-trash-full.png + Icons/Chicago95-tux/places/48/user-trash.png + Icons/Chicago95-tux/places/folder.icon + Icons/Chicago95-tux/places/scalable/folder-remote.icon + Icons/Chicago95-tux/places/scalable/folder.icon + Icons/Chicago95-tux/status/12/not-starred.png + Icons/Chicago95-tux/status/12/starred.png + Icons/Chicago95-tux/status/16/appointment-missed.png + Icons/Chicago95-tux/status/16/appointment-soon.png + Icons/Chicago95-tux/status/16/aptdaemon-download.png + Icons/Chicago95-tux/status/16/audio-volume-high.png + Icons/Chicago95-tux/status/16/audio-volume-low.png + Icons/Chicago95-tux/status/16/audio-volume-medium.png + Icons/Chicago95-tux/status/16/audio-volume-muted.png + Icons/Chicago95-tux/status/16/avatar-default.png + Icons/Chicago95-tux/status/16/battery-060-charging.png + Icons/Chicago95-tux/status/16/blueman-down-active.png + Icons/Chicago95-tux/status/16/blueman-down-inactive.png + Icons/Chicago95-tux/status/16/blueman-up-active.png + Icons/Chicago95-tux/status/16/blueman-up-inactive.png + Icons/Chicago95-tux/status/16/bluetooth-active.png + Icons/Chicago95-tux/status/16/bluetooth-disabled.png + Icons/Chicago95-tux/status/16/bluetooth-paired.png + Icons/Chicago95-tux/status/16/dialog-error.png + Icons/Chicago95-tux/status/16/dialog-information.png + Icons/Chicago95-tux/status/16/dialog-password.png + Icons/Chicago95-tux/status/16/dialog-question.png + Icons/Chicago95-tux/status/16/dialog-warning.png + Icons/Chicago95-tux/status/16/folder-drag-accept.png + Icons/Chicago95-tux/status/16/folder-open.png + Icons/Chicago95-tux/status/16/folder-visiting.png + Icons/Chicago95-tux/status/16/gpm-inhibit.png + Icons/Chicago95-tux/status/16/gpm-primary-000.png + Icons/Chicago95-tux/status/16/gpm-primary-020.png + Icons/Chicago95-tux/status/16/gpm-primary-040.png + Icons/Chicago95-tux/status/16/gpm-primary-060.png + Icons/Chicago95-tux/status/16/gpm-primary-080.png + Icons/Chicago95-tux/status/16/gpm-primary-100.png + Icons/Chicago95-tux/status/16/image-loading.png + Icons/Chicago95-tux/status/16/image-missing.png + Icons/Chicago95-tux/status/16/locked.png + Icons/Chicago95-tux/status/16/mail-attachment.png + Icons/Chicago95-tux/status/16/mail-forwarded.png + Icons/Chicago95-tux/status/16/mail-read.png + Icons/Chicago95-tux/status/16/mail-replied.png + Icons/Chicago95-tux/status/16/mail-signed-verified.png + Icons/Chicago95-tux/status/16/mail-signed.png + Icons/Chicago95-tux/status/16/mail-unread.png + Icons/Chicago95-tux/status/16/media-playlist-repeat-active.png + Icons/Chicago95-tux/status/16/media-playlist-repeat.png + Icons/Chicago95-tux/status/16/media-playlist-shuffle-active.png + Icons/Chicago95-tux/status/16/media-playlist-shuffle.png + Icons/Chicago95-tux/status/16/network-cellular-acquiring-symbolic.png + Icons/Chicago95-tux/status/16/network-cellular-signal-excellent-symbolic.png + Icons/Chicago95-tux/status/16/network-cellular-signal-good-symbolic.png + Icons/Chicago95-tux/status/16/network-cellular-signal-none-symbolic.png + Icons/Chicago95-tux/status/16/network-cellular-signal-ok-symbolic.png + Icons/Chicago95-tux/status/16/network-cellular-signal-weak-symbolic.png + Icons/Chicago95-tux/status/16/network-error.png + Icons/Chicago95-tux/status/16/network-idle.png + Icons/Chicago95-tux/status/16/network-offline.png + Icons/Chicago95-tux/status/16/network-receive.png + Icons/Chicago95-tux/status/16/network-transmit-receive.png + Icons/Chicago95-tux/status/16/network-transmit.png + Icons/Chicago95-tux/status/16/network-wireless-encrypted.png + Icons/Chicago95-tux/status/16/not-starred.png + Icons/Chicago95-tux/status/16/printer-error.png + Icons/Chicago95-tux/status/16/printer-printing.png + Icons/Chicago95-tux/status/16/security-high.png + Icons/Chicago95-tux/status/16/security-low.png + Icons/Chicago95-tux/status/16/security-medium.png + Icons/Chicago95-tux/status/16/software-update-available.png + Icons/Chicago95-tux/status/16/software-update-urgent.png + Icons/Chicago95-tux/status/16/starred.png + Icons/Chicago95-tux/status/16/task-due.png + Icons/Chicago95-tux/status/16/task-past-due.png + Icons/Chicago95-tux/status/16/user-available.png + Icons/Chicago95-tux/status/16/user-away.png + Icons/Chicago95-tux/status/16/user-busy.png + Icons/Chicago95-tux/status/16/user-invisible.png + Icons/Chicago95-tux/status/16/user-offline.png + Icons/Chicago95-tux/status/16/user-trash-full.png + Icons/Chicago95-tux/status/16/user-typing.png + Icons/Chicago95-tux/status/16/weather-clear-night.png + Icons/Chicago95-tux/status/16/weather-clear.png + Icons/Chicago95-tux/status/16/weather-few-clouds-night.png + Icons/Chicago95-tux/status/16/weather-few-clouds.png + Icons/Chicago95-tux/status/16/weather-fog.png + Icons/Chicago95-tux/status/16/weather-overcast.png + Icons/Chicago95-tux/status/16/weather-severe-alert.png + Icons/Chicago95-tux/status/16/weather-showers-scattered.png + Icons/Chicago95-tux/status/16/weather-showers.png + Icons/Chicago95-tux/status/16/weather-snow.png + Icons/Chicago95-tux/status/16/weather-storm.png + Icons/Chicago95-tux/status/16/xfpm-brightness-lcd.png + Icons/Chicago95-tux/status/22/appointment-missed.png + Icons/Chicago95-tux/status/22/appointment-soon.png + Icons/Chicago95-tux/status/22/audio-volume-high.png + Icons/Chicago95-tux/status/22/audio-volume-low.png + Icons/Chicago95-tux/status/22/audio-volume-medium.png + Icons/Chicago95-tux/status/22/audio-volume-muted.png + Icons/Chicago95-tux/status/22/battery-caution.png + Icons/Chicago95-tux/status/22/battery-low.png + Icons/Chicago95-tux/status/22/dialog-error.png + Icons/Chicago95-tux/status/22/dialog-information.png + Icons/Chicago95-tux/status/22/dialog-password.png + Icons/Chicago95-tux/status/22/dialog-question.png + Icons/Chicago95-tux/status/22/dialog-warning.png + Icons/Chicago95-tux/status/22/folder-drag-accept.png + Icons/Chicago95-tux/status/22/folder-open.png + Icons/Chicago95-tux/status/22/folder-visiting.png + Icons/Chicago95-tux/status/22/gpm-inhibit.png + Icons/Chicago95-tux/status/22/image-loading.png + Icons/Chicago95-tux/status/22/image-missing.png + Icons/Chicago95-tux/status/22/locked.png + Icons/Chicago95-tux/status/22/mail-attachment.png + Icons/Chicago95-tux/status/22/mail-read.png + Icons/Chicago95-tux/status/22/mail-replied.png + Icons/Chicago95-tux/status/22/mail-signed-verified.png + Icons/Chicago95-tux/status/22/mail-unread.png + Icons/Chicago95-tux/status/22/media-playlist-repeat.png + Icons/Chicago95-tux/status/22/media-playlist-shuffle.png + Icons/Chicago95-tux/status/22/network-error.png + Icons/Chicago95-tux/status/22/network-idle.png + Icons/Chicago95-tux/status/22/network-offline.png + Icons/Chicago95-tux/status/22/network-receive.png + Icons/Chicago95-tux/status/22/network-transmit-receive.png + Icons/Chicago95-tux/status/22/network-transmit.png + Icons/Chicago95-tux/status/22/network-wireless-encrypted.png + Icons/Chicago95-tux/status/22/printer-error.png + Icons/Chicago95-tux/status/22/printer-printing.png + Icons/Chicago95-tux/status/22/security-high.png + Icons/Chicago95-tux/status/22/security-low.png + Icons/Chicago95-tux/status/22/security-medium.png + Icons/Chicago95-tux/status/22/software-update-available.png + Icons/Chicago95-tux/status/22/software-update-urgent.png + Icons/Chicago95-tux/status/22/task-due.png + Icons/Chicago95-tux/status/22/task-past-due.png + Icons/Chicago95-tux/status/22/user-trash-full.png + Icons/Chicago95-tux/status/22/weather-clear-night.png + Icons/Chicago95-tux/status/22/weather-clear.png + Icons/Chicago95-tux/status/22/weather-few-clouds-night.png + Icons/Chicago95-tux/status/22/weather-few-clouds.png + Icons/Chicago95-tux/status/22/weather-fog.png + Icons/Chicago95-tux/status/22/weather-overcast.png + Icons/Chicago95-tux/status/22/weather-severe-alert.png + Icons/Chicago95-tux/status/22/weather-showers-scattered.png + Icons/Chicago95-tux/status/22/weather-showers.png + Icons/Chicago95-tux/status/22/weather-snow.png + Icons/Chicago95-tux/status/22/weather-storm.png + Icons/Chicago95-tux/status/24/appointment-missed.png + Icons/Chicago95-tux/status/24/appointment-soon.png + Icons/Chicago95-tux/status/24/aptdaemon-download.png + Icons/Chicago95-tux/status/24/audio-volume-high.png + Icons/Chicago95-tux/status/24/audio-volume-low.png + Icons/Chicago95-tux/status/24/audio-volume-medium.png + Icons/Chicago95-tux/status/24/audio-volume-muted.png + Icons/Chicago95-tux/status/24/avatar-default.png + Icons/Chicago95-tux/status/24/battery-caution.png + Icons/Chicago95-tux/status/24/battery-low.png + Icons/Chicago95-tux/status/24/dialog-error.png + Icons/Chicago95-tux/status/24/dialog-information.png + Icons/Chicago95-tux/status/24/dialog-password.png + Icons/Chicago95-tux/status/24/dialog-question.png + Icons/Chicago95-tux/status/24/dialog-warning.png + Icons/Chicago95-tux/status/24/folder-drag-accept.icon + Icons/Chicago95-tux/status/24/folder-drag-accept.png + Icons/Chicago95-tux/status/24/folder-open.png + Icons/Chicago95-tux/status/24/folder-visiting.icon + Icons/Chicago95-tux/status/24/folder-visiting.png + Icons/Chicago95-tux/status/24/gpm-inhibit.png + Icons/Chicago95-tux/status/24/image-loading.png + Icons/Chicago95-tux/status/24/image-missing.png + Icons/Chicago95-tux/status/24/locked.png + Icons/Chicago95-tux/status/24/mail-attachment.png + Icons/Chicago95-tux/status/24/mail-read.png + Icons/Chicago95-tux/status/24/mail-replied.png + Icons/Chicago95-tux/status/24/mail-signed-verified.png + Icons/Chicago95-tux/status/24/mail-signed.png + Icons/Chicago95-tux/status/24/mail-unread.png + Icons/Chicago95-tux/status/24/media-playlist-repeat.png + Icons/Chicago95-tux/status/24/media-playlist-shuffle.png + Icons/Chicago95-tux/status/24/network-error.png + Icons/Chicago95-tux/status/24/network-idle.png + Icons/Chicago95-tux/status/24/network-offline.png + Icons/Chicago95-tux/status/24/network-receive.png + Icons/Chicago95-tux/status/24/network-transmit-receive.png + Icons/Chicago95-tux/status/24/network-transmit.png + Icons/Chicago95-tux/status/24/network-wireless-encrypted.png + Icons/Chicago95-tux/status/24/printer-error.png + Icons/Chicago95-tux/status/24/printer-printing.png + Icons/Chicago95-tux/status/24/security-high.png + Icons/Chicago95-tux/status/24/security-low.png + Icons/Chicago95-tux/status/24/security-medium.png + Icons/Chicago95-tux/status/24/software-update-available.png + Icons/Chicago95-tux/status/24/software-update-urgent.png + Icons/Chicago95-tux/status/24/task-due.png + Icons/Chicago95-tux/status/24/task-past-due.png + Icons/Chicago95-tux/status/24/user-trash-full.png + Icons/Chicago95-tux/status/24/weather-clear-night.png + Icons/Chicago95-tux/status/24/weather-clear.png + Icons/Chicago95-tux/status/24/weather-few-clouds-night.png + Icons/Chicago95-tux/status/24/weather-few-clouds.png + Icons/Chicago95-tux/status/24/weather-fog.png + Icons/Chicago95-tux/status/24/weather-overcast.png + Icons/Chicago95-tux/status/24/weather-severe-alert.png + Icons/Chicago95-tux/status/24/weather-showers-scattered.png + Icons/Chicago95-tux/status/24/weather-showers.png + Icons/Chicago95-tux/status/24/weather-snow.png + Icons/Chicago95-tux/status/24/weather-storm.png + Icons/Chicago95-tux/status/32/appointment-missed.png + Icons/Chicago95-tux/status/32/appointment-soon.png + Icons/Chicago95-tux/status/32/apport.png + Icons/Chicago95-tux/status/32/aptdaemon-down.png + Icons/Chicago95-tux/status/32/audio-volume-high.png + Icons/Chicago95-tux/status/32/audio-volume-low.png + Icons/Chicago95-tux/status/32/audio-volume-medium.png + Icons/Chicago95-tux/status/32/audio-volume-muted.png + Icons/Chicago95-tux/status/32/avatar-default.png + Icons/Chicago95-tux/status/32/battery-000-charging.png + Icons/Chicago95-tux/status/32/battery-020-charging.png + Icons/Chicago95-tux/status/32/battery-040-charging.png + Icons/Chicago95-tux/status/32/battery-060-charging.png + Icons/Chicago95-tux/status/32/battery-080-charging.png + Icons/Chicago95-tux/status/32/battery-100-charging.png + Icons/Chicago95-tux/status/32/bluetooth-active-disabled-symbolic.png + Icons/Chicago95-tux/status/32/bluetooth-active-symbolic.png + Icons/Chicago95-tux/status/32/bluetooth-active.png + Icons/Chicago95-tux/status/32/bluetooth-disabled.png + Icons/Chicago95-tux/status/32/bluetooth-paired.png + Icons/Chicago95-tux/status/32/dialog-error.png + Icons/Chicago95-tux/status/32/dialog-information.png + Icons/Chicago95-tux/status/32/dialog-password.png + Icons/Chicago95-tux/status/32/dialog-question.png + Icons/Chicago95-tux/status/32/dialog-warning.png + Icons/Chicago95-tux/status/32/folder-drag-accept.png + Icons/Chicago95-tux/status/32/folder-open.png + Icons/Chicago95-tux/status/32/folder-visiting.png + Icons/Chicago95-tux/status/32/gpm-primary-000.png + Icons/Chicago95-tux/status/32/gpm-primary-020.png + Icons/Chicago95-tux/status/32/gpm-primary-040.png + Icons/Chicago95-tux/status/32/gpm-primary-060.png + Icons/Chicago95-tux/status/32/gpm-primary-080.png + Icons/Chicago95-tux/status/32/gpm-primary-100.png + Icons/Chicago95-tux/status/32/image-loading.png + Icons/Chicago95-tux/status/32/image-missing.png + Icons/Chicago95-tux/status/32/locked.png + Icons/Chicago95-tux/status/32/mail-attachment.png + Icons/Chicago95-tux/status/32/mail-read.png + Icons/Chicago95-tux/status/32/mail-replied.png + Icons/Chicago95-tux/status/32/mail-unread.png + Icons/Chicago95-tux/status/32/media-playlist-repeat.png + Icons/Chicago95-tux/status/32/media-playlist-shuffle.png + Icons/Chicago95-tux/status/32/network-cellular-acquiring-symbolic.png + Icons/Chicago95-tux/status/32/network-cellular-signal-excellent-symbolic.png + Icons/Chicago95-tux/status/32/network-cellular-signal-good-symbolic.png + Icons/Chicago95-tux/status/32/network-cellular-signal-none-symbolic.png + Icons/Chicago95-tux/status/32/network-cellular-signal-ok-symbolic.png + Icons/Chicago95-tux/status/32/network-cellular-signal-weak-symbolic.png + Icons/Chicago95-tux/status/32/network-error.png + Icons/Chicago95-tux/status/32/network-idle.png + Icons/Chicago95-tux/status/32/network-offline.png + Icons/Chicago95-tux/status/32/network-receive.png + Icons/Chicago95-tux/status/32/network-transmit-receive.png + Icons/Chicago95-tux/status/32/network-transmit.png + Icons/Chicago95-tux/status/32/printer-error.png + Icons/Chicago95-tux/status/32/printer-printing.png + Icons/Chicago95-tux/status/32/security-high.png + Icons/Chicago95-tux/status/32/security-low.png + Icons/Chicago95-tux/status/32/security-medium.png + Icons/Chicago95-tux/status/32/software-update-available.png + Icons/Chicago95-tux/status/32/software-update-urgent.png + Icons/Chicago95-tux/status/32/task-due.png + Icons/Chicago95-tux/status/32/task-past-due.png + Icons/Chicago95-tux/status/32/user-trash-full.png + Icons/Chicago95-tux/status/32/weather-clear-night.png + Icons/Chicago95-tux/status/32/weather-clear.png + Icons/Chicago95-tux/status/32/weather-few-clouds-night.png + Icons/Chicago95-tux/status/32/weather-few-clouds.png + Icons/Chicago95-tux/status/32/weather-fog.png + Icons/Chicago95-tux/status/32/weather-overcast.png + Icons/Chicago95-tux/status/32/weather-severe-alert.png + Icons/Chicago95-tux/status/32/weather-showers-scattered.png + Icons/Chicago95-tux/status/32/weather-showers.png + Icons/Chicago95-tux/status/32/weather-snow.png + Icons/Chicago95-tux/status/32/weather-storm.png + Icons/Chicago95-tux/status/32/xfpm-brightness-lcd.png + Icons/Chicago95-tux/status/48/aptdaemon-delete.png + Icons/Chicago95-tux/status/48/aptdaemon-download.png + Icons/Chicago95-tux/status/48/aptdaemon-setup.png + Icons/Chicago95-tux/status/48/aptdaemon-upgrade.png + Icons/Chicago95-tux/status/48/avatar-default.png + Icons/Chicago95-tux/status/48/battery-000-charging.png + Icons/Chicago95-tux/status/48/battery-000.png + Icons/Chicago95-tux/status/48/battery-020-charging.png + Icons/Chicago95-tux/status/48/battery-020.png + Icons/Chicago95-tux/status/48/battery-040-charging.png + Icons/Chicago95-tux/status/48/battery-040.png + Icons/Chicago95-tux/status/48/battery-060-charging.png + Icons/Chicago95-tux/status/48/battery-060.png + Icons/Chicago95-tux/status/48/battery-080-charging.png + Icons/Chicago95-tux/status/48/battery-080.png + Icons/Chicago95-tux/status/48/battery-100-charging.png + Icons/Chicago95-tux/status/48/battery-100.png + Icons/Chicago95-tux/status/48/battery-ac-adapter.png + Icons/Chicago95-tux/status/48/battery-missing.png + Icons/Chicago95-tux/status/48/dialog-error.png + Icons/Chicago95-tux/status/48/dialog-warning.png + Icons/Chicago95-tux/status/48/image-loading.png + Icons/Chicago95-tux/status/48/image-missing.png + Icons/Chicago95-tux/status/48/locked.png + Icons/Chicago95-tux/status/48/mail-unread.png + Icons/Chicago95-tux/status/48/network-error.png + Icons/Chicago95-tux/status/48/network-idle.png + Icons/Chicago95-tux/status/48/network-offline.png + Icons/Chicago95-tux/status/48/network-receive.png + Icons/Chicago95-tux/status/48/network-transmit-receive.png + Icons/Chicago95-tux/status/48/network-transmit.png + Icons/Chicago95-tux/status/48/network-wireless-00.png + Icons/Chicago95-tux/status/48/network-wireless-100.png + Icons/Chicago95-tux/status/48/network-wireless-25.png + Icons/Chicago95-tux/status/48/network-wireless-50.png + Icons/Chicago95-tux/status/48/network-wireless-75.png + Icons/Chicago95-tux/status/48/printer-error.png + Icons/Chicago95-tux/status/48/security-high.png + Icons/Chicago95-tux/status/48/security-low.png + Icons/Chicago95-tux/status/48/security-medium.png + Icons/Chicago95-tux/status/48/software-update-available.png + Icons/Chicago95-tux/status/48/software-update-urgent.png + Icons/Chicago95-tux/status/scalable/folder-drag-accept.icon + Icons/Chicago95-tux/status/scalable/folder-visiting.icon + Icons/Chicago95-tux/status/symbolic/audio-volume-high-symbolic.png + Icons/Chicago95-tux/status/symbolic/audio-volume-low-symbolic.png + Icons/Chicago95-tux/status/symbolic/audio-volume-medium-symbolic.png + Icons/Chicago95-tux/status/symbolic/audio-volume-muted-symbolic.png + Icons/Chicago95-tux/status/symbolic/audio-volume-off-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-caution-charging-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-caution-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-empty-charging-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-empty-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-full-charged-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-full-charging-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-full-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-good-charging-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-good-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-low-charging-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-low-symbolic.png + Icons/Chicago95-tux/status/symbolic/battery-missing-symbolic.png + Icons/Chicago95-tux/status/symbolic/notification-disabled-symbolic.png + Icons/Chicago95-tux/status/symbolic/notification-new-symbolic.png + Icons/Chicago95-tux/status/symbolic/notification-symbolic.png + Icons/Chicago95-tux/stock/16/SC-categories-fonts.png + Icons/Chicago95-tux/stock/16/stock_network-printer.png + Icons/Chicago95-tux/stock/16/stock_people.png + Icons/Chicago95-tux/stock/16/stock_person.png + Icons/Chicago95-tux/stock/22/stock_person.png + Icons/Chicago95-tux/stock/32/SC-categories-fonts.png + Icons/Chicago95-tux/stock/32/stock_network-printer.png + Icons/Chicago95-tux/stock/32/stock_people.png + Icons/Chicago95-tux/stock/32/stock_person.png + Icons/Chicago95-tux/stock/48/stock_network-printer.png + Icons/Chicago95-tux/stock/48/stock_people.png + Icons/Chicago95-tux/stock/48/stock_person.png + Icons/Chicago95/actions/16/address-book-new.png + Icons/Chicago95/actions/16/align-horizontal-center.png + Icons/Chicago95/actions/16/align-horizontal-left.png + Icons/Chicago95/actions/16/align-horizontal-right.png + Icons/Chicago95/actions/16/align-vertical-bottom.png + Icons/Chicago95/actions/16/align-vertical-center.png + Icons/Chicago95/actions/16/align-vertical-top.png + Icons/Chicago95/actions/16/application-exit.png + Icons/Chicago95/actions/16/appointment-new.png + Icons/Chicago95/actions/16/bookmark-new.png + Icons/Chicago95/actions/16/call-start.png + Icons/Chicago95/actions/16/call-stop.png + Icons/Chicago95/actions/16/contact-new.png + Icons/Chicago95/actions/16/distribute-horizontal-left.png + Icons/Chicago95/actions/16/distribute-horizontal-right.png + Icons/Chicago95/actions/16/distribute-vertical-bottom.png + Icons/Chicago95/actions/16/distribute-vertical-center.png + Icons/Chicago95/actions/16/distribute-vertical-top.png + Icons/Chicago95/actions/16/document-export.png + Icons/Chicago95/actions/16/document-import.png + Icons/Chicago95/actions/16/document-new.png + Icons/Chicago95/actions/16/document-open-recent.png + Icons/Chicago95/actions/16/document-open.png + Icons/Chicago95/actions/16/document-page-setup.png + Icons/Chicago95/actions/16/document-print-preview.png + Icons/Chicago95/actions/16/document-print.png + Icons/Chicago95/actions/16/document-properties.png + Icons/Chicago95/actions/16/document-revert.png + Icons/Chicago95/actions/16/document-save-as.png + Icons/Chicago95/actions/16/document-save.png + Icons/Chicago95/actions/16/document-send.png + Icons/Chicago95/actions/16/edit-clear.png + Icons/Chicago95/actions/16/edit-copy.png + Icons/Chicago95/actions/16/edit-cut.png + Icons/Chicago95/actions/16/edit-delete.png + Icons/Chicago95/actions/16/edit-find-replace.png + Icons/Chicago95/actions/16/edit-find.png + Icons/Chicago95/actions/16/edit-paste.png + Icons/Chicago95/actions/16/edit-redo.png + Icons/Chicago95/actions/16/edit-select-all.png + Icons/Chicago95/actions/16/edit-undo.png + Icons/Chicago95/actions/16/folder-copy.png + Icons/Chicago95/actions/16/folder-new.png + Icons/Chicago95/actions/16/format-indent-less.png + Icons/Chicago95/actions/16/format-indent-more.png + Icons/Chicago95/actions/16/format-justify-center.png + Icons/Chicago95/actions/16/format-justify-fill.png + Icons/Chicago95/actions/16/format-justify-left.png + Icons/Chicago95/actions/16/format-justify-right.png + Icons/Chicago95/actions/16/format-text-bold.png + Icons/Chicago95/actions/16/format-text-direction-ltr.png + Icons/Chicago95/actions/16/format-text-direction-rtl.png + Icons/Chicago95/actions/16/format-text-italic.png + Icons/Chicago95/actions/16/format-text-strikethrough.png + Icons/Chicago95/actions/16/format-text-underline.png + Icons/Chicago95/actions/16/go-bottom.png + Icons/Chicago95/actions/16/go-down.png + Icons/Chicago95/actions/16/go-first.png + Icons/Chicago95/actions/16/go-home.png + Icons/Chicago95/actions/16/go-jump.png + Icons/Chicago95/actions/16/go-last.png + Icons/Chicago95/actions/16/go-next.png + Icons/Chicago95/actions/16/go-previous.png + Icons/Chicago95/actions/16/go-top.png + Icons/Chicago95/actions/16/go-up.png + Icons/Chicago95/actions/16/gtk-apply.png + Icons/Chicago95/actions/16/gtk-edit.png + Icons/Chicago95/actions/16/gtk-no.png + Icons/Chicago95/actions/16/gtk-ok.png + Icons/Chicago95/actions/16/gtk-print-error.png + Icons/Chicago95/actions/16/gtk-print-paused.png + Icons/Chicago95/actions/16/gtk-print-report.png + Icons/Chicago95/actions/16/gtk-print-warning.png + Icons/Chicago95/actions/16/gtk-yes.png + Icons/Chicago95/actions/16/help-about.png + Icons/Chicago95/actions/16/help-contents.png + Icons/Chicago95/actions/16/help-faq.png + Icons/Chicago95/actions/16/im-message-new.png + Icons/Chicago95/actions/16/insert-image.png + Icons/Chicago95/actions/16/insert-link.png + Icons/Chicago95/actions/16/insert-object.png + Icons/Chicago95/actions/16/insert-text.png + Icons/Chicago95/actions/16/iso-image-burn.png + Icons/Chicago95/actions/16/list-add.png + Icons/Chicago95/actions/16/list-remove.png + Icons/Chicago95/actions/16/mail-forward.png + Icons/Chicago95/actions/16/mail-mark-important.png + Icons/Chicago95/actions/16/mail-mark-junk.png + Icons/Chicago95/actions/16/mail-mark-not-junk.png + Icons/Chicago95/actions/16/mail-mark-read.png + Icons/Chicago95/actions/16/mail-mark-unread.png + Icons/Chicago95/actions/16/mail-message-new.png + Icons/Chicago95/actions/16/mail-reply-all.png + Icons/Chicago95/actions/16/mail-reply-sender.png + Icons/Chicago95/actions/16/mail-send-receive.png + Icons/Chicago95/actions/16/mail-send.png + Icons/Chicago95/actions/16/media-eject.png + Icons/Chicago95/actions/16/media-import-audio-cd.png + Icons/Chicago95/actions/16/media-playback-pause.png + Icons/Chicago95/actions/16/media-playback-start.png + Icons/Chicago95/actions/16/media-playback-stop.png + Icons/Chicago95/actions/16/media-record.png + Icons/Chicago95/actions/16/media-seek-backward.png + Icons/Chicago95/actions/16/media-seek-forward.png + Icons/Chicago95/actions/16/media-skip-backward.png + Icons/Chicago95/actions/16/media-skip-forward.png + Icons/Chicago95/actions/16/node-add.png + Icons/Chicago95/actions/16/node-align-horizontal.png + Icons/Chicago95/actions/16/node-align-vertical.png + Icons/Chicago95/actions/16/node-break.png + Icons/Chicago95/actions/16/node-cusp.png + Icons/Chicago95/actions/16/node-delete-segment.png + Icons/Chicago95/actions/16/node-delete.png + Icons/Chicago95/actions/16/node-distribute-horizontal.png + Icons/Chicago95/actions/16/node-distribute-vertical.png + Icons/Chicago95/actions/16/node-join-segment.png + Icons/Chicago95/actions/16/node-join.png + Icons/Chicago95/actions/16/node-smooth.png + Icons/Chicago95/actions/16/node-symmectric + Icons/Chicago95/actions/16/node-symmetric.png + Icons/Chicago95/actions/16/object-flip-horizontal.png + Icons/Chicago95/actions/16/object-flip-vertical.png + Icons/Chicago95/actions/16/object-group.png + Icons/Chicago95/actions/16/object-inverse.png + Icons/Chicago95/actions/16/object-merge.png + Icons/Chicago95/actions/16/object-rotate-left.png + Icons/Chicago95/actions/16/object-rotate-right.png + Icons/Chicago95/actions/16/object-to-path.png + Icons/Chicago95/actions/16/object-ungroup.png + Icons/Chicago95/actions/16/package-available-locked.png + Icons/Chicago95/actions/16/package-available-new.png + Icons/Chicago95/actions/16/package-available.png + Icons/Chicago95/actions/16/package-broken.png + Icons/Chicago95/actions/16/package-downgrade.png + Icons/Chicago95/actions/16/package-install.png + Icons/Chicago95/actions/16/package-installed-locked.png + Icons/Chicago95/actions/16/package-installed-outdated.png + Icons/Chicago95/actions/16/package-installed-updated.png + Icons/Chicago95/actions/16/package-new.png + Icons/Chicago95/actions/16/package-purge.png + Icons/Chicago95/actions/16/package-reinstall.png + Icons/Chicago95/actions/16/package-remove.png + Icons/Chicago95/actions/16/package-supported.png + Icons/Chicago95/actions/16/package-upgrade.png + Icons/Chicago95/actions/16/process-stop.png + Icons/Chicago95/actions/16/segment-curve.png + Icons/Chicago95/actions/16/segment-line.png + Icons/Chicago95/actions/16/selection-break.png + Icons/Chicago95/actions/16/selection-combine.png + Icons/Chicago95/actions/16/selection-exclude.png + Icons/Chicago95/actions/16/stroke-to-path.png + Icons/Chicago95/actions/16/system-lock-screen.png + Icons/Chicago95/actions/16/system-log-out.png + Icons/Chicago95/actions/16/system-run.png + Icons/Chicago95/actions/16/system-search.png + Icons/Chicago95/actions/16/system-shutdown.png + Icons/Chicago95/actions/16/system-upgrade.png + Icons/Chicago95/actions/16/tab-new.png + Icons/Chicago95/actions/16/tag-new.png + Icons/Chicago95/actions/16/tools-check-spelling.png + Icons/Chicago95/actions/16/view-fullscreen.png + Icons/Chicago95/actions/16/view-refresh.png + Icons/Chicago95/actions/16/view-restore.png + Icons/Chicago95/actions/16/view-sort-ascending.png + Icons/Chicago95/actions/16/view-sort-descending.png + Icons/Chicago95/actions/16/window-close.png + Icons/Chicago95/actions/16/window-new.png + Icons/Chicago95/actions/16/zoom-fit-best.png + Icons/Chicago95/actions/16/zoom-in.png + Icons/Chicago95/actions/16/zoom-original.png + Icons/Chicago95/actions/16/zoom-out.png + Icons/Chicago95/actions/22/address-book-new.png + Icons/Chicago95/actions/22/align-horizontal-center.png + Icons/Chicago95/actions/22/align-horizontal-left.png + Icons/Chicago95/actions/22/align-horizontal-right.png + Icons/Chicago95/actions/22/align-vertical-bottom.png + Icons/Chicago95/actions/22/align-vertical-center.png + Icons/Chicago95/actions/22/align-vertical-top.png + Icons/Chicago95/actions/22/application-exit.png + Icons/Chicago95/actions/22/appointment-new.png + Icons/Chicago95/actions/22/archive-insert.png + Icons/Chicago95/actions/22/bookmark-new.png + Icons/Chicago95/actions/22/call-start.png + Icons/Chicago95/actions/22/call-stop.png + Icons/Chicago95/actions/22/contact-new.png + Icons/Chicago95/actions/22/dialog-apply.png + Icons/Chicago95/actions/22/dialog-ok-apply.png + Icons/Chicago95/actions/22/distribute-horizontal-left.png + Icons/Chicago95/actions/22/distribute-horizontal-right.png + Icons/Chicago95/actions/22/distribute-vertical-bottom.png + Icons/Chicago95/actions/22/distribute-vertical-center.png + Icons/Chicago95/actions/22/distribute-vertical-top.png + Icons/Chicago95/actions/22/document-export.png + Icons/Chicago95/actions/22/document-import.png + Icons/Chicago95/actions/22/document-new.png + Icons/Chicago95/actions/22/document-open-recent.png + Icons/Chicago95/actions/22/document-open.png + Icons/Chicago95/actions/22/document-page-setup.png + Icons/Chicago95/actions/22/document-print-preview.png + Icons/Chicago95/actions/22/document-print.png + Icons/Chicago95/actions/22/document-properties.png + Icons/Chicago95/actions/22/document-revert.png + Icons/Chicago95/actions/22/document-save-as.png + Icons/Chicago95/actions/22/document-save.png + Icons/Chicago95/actions/22/document-send.png + Icons/Chicago95/actions/22/edit-clear.png + Icons/Chicago95/actions/22/edit-copy.png + Icons/Chicago95/actions/22/edit-cut.png + Icons/Chicago95/actions/22/edit-delete.png + Icons/Chicago95/actions/22/edit-find-replace.png + Icons/Chicago95/actions/22/edit-find.png + Icons/Chicago95/actions/22/edit-paste.png + Icons/Chicago95/actions/22/edit-redo.png + Icons/Chicago95/actions/22/edit-select-all.png + Icons/Chicago95/actions/22/edit-undo.png + Icons/Chicago95/actions/22/folder-copy.png + Icons/Chicago95/actions/22/folder-move.png + Icons/Chicago95/actions/22/folder-new.png + Icons/Chicago95/actions/22/format-indent-less.png + Icons/Chicago95/actions/22/format-indent-more.png + Icons/Chicago95/actions/22/format-justify-center.png + Icons/Chicago95/actions/22/format-justify-fill.png + Icons/Chicago95/actions/22/format-justify-left.png + Icons/Chicago95/actions/22/format-justify-right.png + Icons/Chicago95/actions/22/format-text-bold.png + Icons/Chicago95/actions/22/format-text-direction-ltr.png + Icons/Chicago95/actions/22/format-text-direction-rtl.png + Icons/Chicago95/actions/22/format-text-italic.png + Icons/Chicago95/actions/22/format-text-strikethrough.png + Icons/Chicago95/actions/22/format-text-underline.png + Icons/Chicago95/actions/22/go-bottom.png + Icons/Chicago95/actions/22/go-down.png + Icons/Chicago95/actions/22/go-first.png + Icons/Chicago95/actions/22/go-home.png + Icons/Chicago95/actions/22/go-jump.png + Icons/Chicago95/actions/22/go-last.png + Icons/Chicago95/actions/22/go-next.png + Icons/Chicago95/actions/22/go-previous.png + Icons/Chicago95/actions/22/go-top.png + Icons/Chicago95/actions/22/go-up.png + Icons/Chicago95/actions/22/gtk-apply.png + Icons/Chicago95/actions/22/gtk-edit.png + Icons/Chicago95/actions/22/gtk-no.png + Icons/Chicago95/actions/22/gtk-ok.png + Icons/Chicago95/actions/22/gtk-print-error.png + Icons/Chicago95/actions/22/gtk-print-paused.png + Icons/Chicago95/actions/22/gtk-print-report.png + Icons/Chicago95/actions/22/gtk-print-warning.png + Icons/Chicago95/actions/22/gtk-yes.png + Icons/Chicago95/actions/22/help-about.png + Icons/Chicago95/actions/22/help-contents.png + Icons/Chicago95/actions/22/help-faq.png + Icons/Chicago95/actions/22/im-message-new.png + Icons/Chicago95/actions/22/insert-image.png + Icons/Chicago95/actions/22/insert-link.png + Icons/Chicago95/actions/22/insert-object.png + Icons/Chicago95/actions/22/insert-text.png + Icons/Chicago95/actions/22/iso-image-burn-22.png + Icons/Chicago95/actions/22/list-add.png + Icons/Chicago95/actions/22/list-remove.png + Icons/Chicago95/actions/22/mail-forward-all.png + Icons/Chicago95/actions/22/mail-forward.png + Icons/Chicago95/actions/22/mail-mark-important.png + Icons/Chicago95/actions/22/mail-mark-junk.png + Icons/Chicago95/actions/22/mail-mark-not-junk.png + Icons/Chicago95/actions/22/mail-mark-read.png + Icons/Chicago95/actions/22/mail-mark-unread.png + Icons/Chicago95/actions/22/mail-message-new.png + Icons/Chicago95/actions/22/mail-reply-all.png + Icons/Chicago95/actions/22/mail-reply-sender.png + Icons/Chicago95/actions/22/mail-send-receive.png + Icons/Chicago95/actions/22/mail-send.png + Icons/Chicago95/actions/22/media-eject.png + Icons/Chicago95/actions/22/media-import-audio-cd.png + Icons/Chicago95/actions/22/media-playback-pause.png + Icons/Chicago95/actions/22/media-playback-start.png + Icons/Chicago95/actions/22/media-playback-stop.png + Icons/Chicago95/actions/22/media-record.png + Icons/Chicago95/actions/22/media-seek-backward.png + Icons/Chicago95/actions/22/media-seek-forward.png + Icons/Chicago95/actions/22/media-skip-backward.png + Icons/Chicago95/actions/22/media-skip-forward.png + Icons/Chicago95/actions/22/node-add.png + Icons/Chicago95/actions/22/node-align-horizontal.png + Icons/Chicago95/actions/22/node-align-vertical.png + Icons/Chicago95/actions/22/node-break.png + Icons/Chicago95/actions/22/node-curve.png + Icons/Chicago95/actions/22/node-cusp.png + Icons/Chicago95/actions/22/node-delete-segment.png + Icons/Chicago95/actions/22/node-delete.png + Icons/Chicago95/actions/22/node-distribute-horizontal.png + Icons/Chicago95/actions/22/node-distribute-vertical.png + Icons/Chicago95/actions/22/node-insert.png + Icons/Chicago95/actions/22/node-join-segment.png + Icons/Chicago95/actions/22/node-join.png + Icons/Chicago95/actions/22/node-line.png + Icons/Chicago95/actions/22/node-smooth.png + Icons/Chicago95/actions/22/node-symmectric.png + Icons/Chicago95/actions/22/node-symmetric.png + Icons/Chicago95/actions/22/object-flip-horizontal.png + Icons/Chicago95/actions/22/object-flip-vertical.png + Icons/Chicago95/actions/22/object-inverse.png + Icons/Chicago95/actions/22/object-rotate-left.png + Icons/Chicago95/actions/22/object-rotate-right.png + Icons/Chicago95/actions/22/object-to-path.png + Icons/Chicago95/actions/22/process-stop.png + Icons/Chicago95/actions/22/segment-curve.png + Icons/Chicago95/actions/22/segment-line.png + Icons/Chicago95/actions/22/selection-break.png + Icons/Chicago95/actions/22/selection-exclude.png + Icons/Chicago95/actions/22/selection-union.png + Icons/Chicago95/actions/22/sleep.png + Icons/Chicago95/actions/22/stroke-to-path.png + Icons/Chicago95/actions/22/system-lock-screen.png + Icons/Chicago95/actions/22/system-log-out.png + Icons/Chicago95/actions/22/system-run.png + Icons/Chicago95/actions/22/system-search.png + Icons/Chicago95/actions/22/system-shutdown.png + Icons/Chicago95/actions/22/tab-new.png + Icons/Chicago95/actions/22/tag-new.png + Icons/Chicago95/actions/22/tools-check-spelling.png + Icons/Chicago95/actions/22/view-fullscreen.png + Icons/Chicago95/actions/22/view-refresh.png + Icons/Chicago95/actions/22/view-restore.png + Icons/Chicago95/actions/22/view-sort-ascending.png + Icons/Chicago95/actions/22/view-sort-descending.png + Icons/Chicago95/actions/22/window-close.png + Icons/Chicago95/actions/22/window-new.png + Icons/Chicago95/actions/22/zoom-best-fit.png + Icons/Chicago95/actions/22/zoom-fit-best.png + Icons/Chicago95/actions/22/zoom-in.png + Icons/Chicago95/actions/22/zoom-original.png + Icons/Chicago95/actions/22/zoom-out.png + Icons/Chicago95/actions/24/address-book-new.png + Icons/Chicago95/actions/24/align-horizontal-center.png + Icons/Chicago95/actions/24/align-horizontal-left.png + Icons/Chicago95/actions/24/align-horizontal-right.png + Icons/Chicago95/actions/24/application-exit.png + Icons/Chicago95/actions/24/appointment-new.png + Icons/Chicago95/actions/24/archive-insert.png + Icons/Chicago95/actions/24/bookmark-new.png + Icons/Chicago95/actions/24/call-start.png + Icons/Chicago95/actions/24/call-stop.png + Icons/Chicago95/actions/24/contact-new.png + Icons/Chicago95/actions/24/dialog-apply.png + Icons/Chicago95/actions/24/dialog-ok-apply.png + Icons/Chicago95/actions/24/document-export.png + Icons/Chicago95/actions/24/document-import.png + Icons/Chicago95/actions/24/document-new.png + Icons/Chicago95/actions/24/document-open-recent.png + Icons/Chicago95/actions/24/document-open.png + Icons/Chicago95/actions/24/document-page-setup.png + Icons/Chicago95/actions/24/document-print-preview.png + Icons/Chicago95/actions/24/document-print.png + Icons/Chicago95/actions/24/document-properties.png + Icons/Chicago95/actions/24/document-revert.png + Icons/Chicago95/actions/24/document-save-as.png + Icons/Chicago95/actions/24/document-save.png + Icons/Chicago95/actions/24/document-send.png + Icons/Chicago95/actions/24/edit-clear.png + Icons/Chicago95/actions/24/edit-copy.png + Icons/Chicago95/actions/24/edit-cut.png + Icons/Chicago95/actions/24/edit-delete-mail.png + Icons/Chicago95/actions/24/edit-delete.png + Icons/Chicago95/actions/24/edit-find-replace.png + Icons/Chicago95/actions/24/edit-find.png + Icons/Chicago95/actions/24/edit-paste.png + Icons/Chicago95/actions/24/edit-redo.png + Icons/Chicago95/actions/24/edit-select-all.png + Icons/Chicago95/actions/24/edit-undo.png + Icons/Chicago95/actions/24/event-new.png + Icons/Chicago95/actions/24/folder-copy.png + Icons/Chicago95/actions/24/folder-move.png + Icons/Chicago95/actions/24/folder-new.png + Icons/Chicago95/actions/24/format-indent-less.png + Icons/Chicago95/actions/24/format-indent-more.png + Icons/Chicago95/actions/24/format-justify-center.png + Icons/Chicago95/actions/24/format-justify-fill.png + Icons/Chicago95/actions/24/format-justify-left.png + Icons/Chicago95/actions/24/format-justify-right.png + Icons/Chicago95/actions/24/format-text-bold.png + Icons/Chicago95/actions/24/format-text-direction-ltr.png + Icons/Chicago95/actions/24/format-text-direction-rtl.png + Icons/Chicago95/actions/24/format-text-italic.png + Icons/Chicago95/actions/24/format-text-strikethrough.png + Icons/Chicago95/actions/24/format-text-underline.png + Icons/Chicago95/actions/24/go-bottom.png + Icons/Chicago95/actions/24/go-down.png + Icons/Chicago95/actions/24/go-first.png + Icons/Chicago95/actions/24/go-home.png + Icons/Chicago95/actions/24/go-jump.png + Icons/Chicago95/actions/24/go-last.png + Icons/Chicago95/actions/24/go-next.png + Icons/Chicago95/actions/24/go-previous.png + Icons/Chicago95/actions/24/go-top.png + Icons/Chicago95/actions/24/go-up.png + Icons/Chicago95/actions/24/gtk-apply.png + Icons/Chicago95/actions/24/gtk-edit.png + Icons/Chicago95/actions/24/gtk-no.png + Icons/Chicago95/actions/24/gtk-print-error.png + Icons/Chicago95/actions/24/gtk-print-paused.png + Icons/Chicago95/actions/24/gtk-print-report.png + Icons/Chicago95/actions/24/gtk-print-warning.png + Icons/Chicago95/actions/24/help-about.png + Icons/Chicago95/actions/24/help-contents.png + Icons/Chicago95/actions/24/help-faq.png + Icons/Chicago95/actions/24/help-info.png + Icons/Chicago95/actions/24/im-message-new.png + Icons/Chicago95/actions/24/insert-image.png + Icons/Chicago95/actions/24/insert-link.png + Icons/Chicago95/actions/24/insert-object.png + Icons/Chicago95/actions/24/insert-text.png + Icons/Chicago95/actions/24/iso-image-burn.png + Icons/Chicago95/actions/24/jockey-proprietary.png + Icons/Chicago95/actions/24/list-add.png + Icons/Chicago95/actions/24/list-remove.png + Icons/Chicago95/actions/24/mail-copy.png + Icons/Chicago95/actions/24/mail-forward.png + Icons/Chicago95/actions/24/mail-mark-important.png + Icons/Chicago95/actions/24/mail-mark-junk.png + Icons/Chicago95/actions/24/mail-mark-not-junk.png + Icons/Chicago95/actions/24/mail-mark-read.png + Icons/Chicago95/actions/24/mail-mark-unread.png + Icons/Chicago95/actions/24/mail-message-new.png + Icons/Chicago95/actions/24/mail-move.png + Icons/Chicago95/actions/24/mail-reply-all.png + Icons/Chicago95/actions/24/mail-reply-sender.png + Icons/Chicago95/actions/24/mail-send-receive.png + Icons/Chicago95/actions/24/mail-send.png + Icons/Chicago95/actions/24/media-eject.png + Icons/Chicago95/actions/24/media-import-audio-cd.png + Icons/Chicago95/actions/24/media-playback-pause.png + Icons/Chicago95/actions/24/media-playback-start.png + Icons/Chicago95/actions/24/media-playback-stop.png + Icons/Chicago95/actions/24/media-record.png + Icons/Chicago95/actions/24/media-seek-backward.png + Icons/Chicago95/actions/24/media-seek-forward.png + Icons/Chicago95/actions/24/media-skip-backward.png + Icons/Chicago95/actions/24/media-skip-forward.png + Icons/Chicago95/actions/24/object-flip-horizontal.png + Icons/Chicago95/actions/24/object-flip-vertical.png + Icons/Chicago95/actions/24/object-inverse.png + Icons/Chicago95/actions/24/object-rotate-left.png + Icons/Chicago95/actions/24/object-rotate-right.png + Icons/Chicago95/actions/24/process-stop.png + Icons/Chicago95/actions/24/sleep.png + Icons/Chicago95/actions/24/stock_xfburn-data-copy.png + Icons/Chicago95/actions/24/stock_xfburn-import-session.png + Icons/Chicago95/actions/24/stock_xfburn-new-data-composition.png + Icons/Chicago95/actions/24/system-lock-screen.png + Icons/Chicago95/actions/24/system-log-out.png + Icons/Chicago95/actions/24/system-restart.png + Icons/Chicago95/actions/24/system-run.png + Icons/Chicago95/actions/24/system-search.png + Icons/Chicago95/actions/24/system-shutdown.png + Icons/Chicago95/actions/24/tab-new.png + Icons/Chicago95/actions/24/tag-new.png + Icons/Chicago95/actions/24/tools-check-spelling.png + Icons/Chicago95/actions/24/view-fullscreen.png + Icons/Chicago95/actions/24/view-refresh.png + Icons/Chicago95/actions/24/view-restore.png + Icons/Chicago95/actions/24/view-sort-ascending.png + Icons/Chicago95/actions/24/view-sort-descending.png + Icons/Chicago95/actions/24/window-close.png + Icons/Chicago95/actions/24/window-new.png + Icons/Chicago95/actions/24/zoom-fit-best.png + Icons/Chicago95/actions/24/zoom-in.png + Icons/Chicago95/actions/24/zoom-original.png + Icons/Chicago95/actions/24/zoom-out.png + Icons/Chicago95/actions/32/address-book-new.png + Icons/Chicago95/actions/32/appointment-new.png + Icons/Chicago95/actions/32/bookmark-new.png + Icons/Chicago95/actions/32/call-start.png + Icons/Chicago95/actions/32/call-stop.png + Icons/Chicago95/actions/32/contact-new.png + Icons/Chicago95/actions/32/dialog-apply.png + Icons/Chicago95/actions/32/document-export.png + Icons/Chicago95/actions/32/document-import.png + Icons/Chicago95/actions/32/document-new.png + Icons/Chicago95/actions/32/document-open-recent.png + Icons/Chicago95/actions/32/document-open.png + Icons/Chicago95/actions/32/document-page-setup.png + Icons/Chicago95/actions/32/document-print-preview.png + Icons/Chicago95/actions/32/document-print.png + Icons/Chicago95/actions/32/document-properties.png + Icons/Chicago95/actions/32/document-revert.png + Icons/Chicago95/actions/32/document-save-as.png + Icons/Chicago95/actions/32/document-save.png + Icons/Chicago95/actions/32/document-send.png + Icons/Chicago95/actions/32/edit-clear.png + Icons/Chicago95/actions/32/edit-copy.png + Icons/Chicago95/actions/32/edit-cut.png + Icons/Chicago95/actions/32/edit-delete.png + Icons/Chicago95/actions/32/edit-find-replace.png + Icons/Chicago95/actions/32/edit-find.png + Icons/Chicago95/actions/32/edit-paste.png + Icons/Chicago95/actions/32/edit-redo.png + Icons/Chicago95/actions/32/edit-select-all.png + Icons/Chicago95/actions/32/edit-undo.png + Icons/Chicago95/actions/32/folder-new.png + Icons/Chicago95/actions/32/format-indent-less.png + Icons/Chicago95/actions/32/format-indent-more.png + Icons/Chicago95/actions/32/format-justify-center.png + Icons/Chicago95/actions/32/format-justify-fill.png + Icons/Chicago95/actions/32/format-justify-left.png + Icons/Chicago95/actions/32/format-justify-right.png + Icons/Chicago95/actions/32/format-text-bold.png + Icons/Chicago95/actions/32/format-text-direction-ltr.png + Icons/Chicago95/actions/32/format-text-direction-rtl.png + Icons/Chicago95/actions/32/format-text-italic.png + Icons/Chicago95/actions/32/format-text-strikethrough.png + Icons/Chicago95/actions/32/format-text-underline.png + Icons/Chicago95/actions/32/go-bottom.png + Icons/Chicago95/actions/32/go-down.png + Icons/Chicago95/actions/32/go-first.png + Icons/Chicago95/actions/32/go-home.png + Icons/Chicago95/actions/32/go-jump.png + Icons/Chicago95/actions/32/go-last.png + Icons/Chicago95/actions/32/go-next.png + Icons/Chicago95/actions/32/go-previous.png + Icons/Chicago95/actions/32/go-top.png + Icons/Chicago95/actions/32/go-up.png + Icons/Chicago95/actions/32/gtk-apply.png + Icons/Chicago95/actions/32/gtk-edit.png + Icons/Chicago95/actions/32/gtk-no.png + Icons/Chicago95/actions/32/gtk-print-error.png + Icons/Chicago95/actions/32/gtk-print-paused.png + Icons/Chicago95/actions/32/gtk-print-report.png + Icons/Chicago95/actions/32/gtk-print-warning.png + Icons/Chicago95/actions/32/help-about.png + Icons/Chicago95/actions/32/help-contents.png + Icons/Chicago95/actions/32/help-faq.png + Icons/Chicago95/actions/32/help-info.png + Icons/Chicago95/actions/32/insert-image.png + Icons/Chicago95/actions/32/insert-link.png + Icons/Chicago95/actions/32/insert-object.png + Icons/Chicago95/actions/32/insert-text.png + Icons/Chicago95/actions/32/jockey-proprietary.png + Icons/Chicago95/actions/32/list-add.png + Icons/Chicago95/actions/32/list-remove.png + Icons/Chicago95/actions/32/mail-forward.png + Icons/Chicago95/actions/32/mail-mark-important.png + Icons/Chicago95/actions/32/mail-mark-read.png + Icons/Chicago95/actions/32/mail-mark-unread.png + Icons/Chicago95/actions/32/mail-message-new.png + Icons/Chicago95/actions/32/mail-reply-all.png + Icons/Chicago95/actions/32/mail-reply-sender.png + Icons/Chicago95/actions/32/mail-send-receive.png + Icons/Chicago95/actions/32/mail-send.png + Icons/Chicago95/actions/32/media-eject.png + Icons/Chicago95/actions/32/media-import-audio-cd.png + Icons/Chicago95/actions/32/media-playback-pause.png + Icons/Chicago95/actions/32/media-playback-start.png + Icons/Chicago95/actions/32/media-playback-stop.png + Icons/Chicago95/actions/32/media-record.png + Icons/Chicago95/actions/32/media-seek-backward.png + Icons/Chicago95/actions/32/media-seek-forward.png + Icons/Chicago95/actions/32/media-skip-backward.png + Icons/Chicago95/actions/32/media-skip-forward.png + Icons/Chicago95/actions/32/object-flip-horizontal.png + Icons/Chicago95/actions/32/object-flip-vertical.png + Icons/Chicago95/actions/32/object-inverse.png + Icons/Chicago95/actions/32/object-rotate-left.png + Icons/Chicago95/actions/32/object-rotate-right.png + Icons/Chicago95/actions/32/process-stop.png + Icons/Chicago95/actions/32/system-lock-screen.png + Icons/Chicago95/actions/32/system-log-out.png + Icons/Chicago95/actions/32/system-restart.png + Icons/Chicago95/actions/32/system-run.png + Icons/Chicago95/actions/32/system-search.png + Icons/Chicago95/actions/32/system-shutdown.png + Icons/Chicago95/actions/32/tab-new.png + Icons/Chicago95/actions/32/tag-new.png + Icons/Chicago95/actions/32/tools-check-spelling.png + Icons/Chicago95/actions/32/view-fullscreen.png + Icons/Chicago95/actions/32/view-refresh.png + Icons/Chicago95/actions/32/view-restore.png + Icons/Chicago95/actions/32/view-sort-ascending.png + Icons/Chicago95/actions/32/view-sort-descending.png + Icons/Chicago95/actions/32/window-close.png + Icons/Chicago95/actions/32/window-new.png + Icons/Chicago95/actions/32/zoom-fit-best.png + Icons/Chicago95/actions/32/zoom-in.png + Icons/Chicago95/actions/32/zoom-original.png + Icons/Chicago95/actions/32/zoom-out.png + Icons/Chicago95/actions/48/address-book-new.png + Icons/Chicago95/actions/48/appointment-new.png + Icons/Chicago95/actions/48/archive-extract.png + Icons/Chicago95/actions/48/bookmark-new.png + Icons/Chicago95/actions/48/call-start.png + Icons/Chicago95/actions/48/call-stop.png + Icons/Chicago95/actions/48/contact-new.png + Icons/Chicago95/actions/48/dialog-ok-apply.png + Icons/Chicago95/actions/48/document-export.png + Icons/Chicago95/actions/48/document-import.png + Icons/Chicago95/actions/48/document-new.png + Icons/Chicago95/actions/48/document-page-setup.png + Icons/Chicago95/actions/48/document-print-preview.png + Icons/Chicago95/actions/48/document-print.png + Icons/Chicago95/actions/48/document-properties.png + Icons/Chicago95/actions/48/document-revert.png + Icons/Chicago95/actions/48/document-save-as.png + Icons/Chicago95/actions/48/document-save.png + Icons/Chicago95/actions/48/document-send.png + Icons/Chicago95/actions/48/edit-clear.png + Icons/Chicago95/actions/48/edit-copy.png + Icons/Chicago95/actions/48/edit-cut.png + Icons/Chicago95/actions/48/edit-delete-mail.png + Icons/Chicago95/actions/48/edit-delete.png + Icons/Chicago95/actions/48/edit-find-replace.png + Icons/Chicago95/actions/48/edit-find.png + Icons/Chicago95/actions/48/edit-paste.png + Icons/Chicago95/actions/48/edit-redo.png + Icons/Chicago95/actions/48/edit-select-all.png + Icons/Chicago95/actions/48/edit-undo.png + Icons/Chicago95/actions/48/folder-copy.png + Icons/Chicago95/actions/48/folder-new.png + Icons/Chicago95/actions/48/format-indent-less.png + Icons/Chicago95/actions/48/format-indent-more.png + Icons/Chicago95/actions/48/format-justify-center.png + Icons/Chicago95/actions/48/format-justify-fill.png + Icons/Chicago95/actions/48/format-justify-left.png + Icons/Chicago95/actions/48/format-justify-right.png + Icons/Chicago95/actions/48/format-text-bold.png + Icons/Chicago95/actions/48/format-text-direction-ltr.png + Icons/Chicago95/actions/48/format-text-direction-rtl.png + Icons/Chicago95/actions/48/format-text-italic.png + Icons/Chicago95/actions/48/format-text-strikethrough.png + Icons/Chicago95/actions/48/format-text-underline.png + Icons/Chicago95/actions/48/go-bottom.png + Icons/Chicago95/actions/48/go-down.png + Icons/Chicago95/actions/48/go-first.png + Icons/Chicago95/actions/48/go-home.png + Icons/Chicago95/actions/48/go-jump.png + Icons/Chicago95/actions/48/go-last.png + Icons/Chicago95/actions/48/go-next.png + Icons/Chicago95/actions/48/go-previous.png + Icons/Chicago95/actions/48/go-top.png + Icons/Chicago95/actions/48/go-up.png + Icons/Chicago95/actions/48/gtk-edit.png + Icons/Chicago95/actions/48/gtk-print-error.png + Icons/Chicago95/actions/48/gtk-print-paused.png + Icons/Chicago95/actions/48/gtk-print-report.png + Icons/Chicago95/actions/48/gtk-print-warning.png + Icons/Chicago95/actions/48/help-about.png + Icons/Chicago95/actions/48/help-contents.png + Icons/Chicago95/actions/48/help-faq.png + Icons/Chicago95/actions/48/help-info.png + Icons/Chicago95/actions/48/insert-image.png + Icons/Chicago95/actions/48/insert-link.png + Icons/Chicago95/actions/48/insert-object.png + Icons/Chicago95/actions/48/insert-text.png + Icons/Chicago95/actions/48/iso-image-burn.png + Icons/Chicago95/actions/48/jockey-proprietary.png + Icons/Chicago95/actions/48/list-add.png + Icons/Chicago95/actions/48/list-remove.png + Icons/Chicago95/actions/48/mail-forward.png + Icons/Chicago95/actions/48/mail-mark-important.png + Icons/Chicago95/actions/48/mail-mark-read.png + Icons/Chicago95/actions/48/mail-mark-unread.png + Icons/Chicago95/actions/48/mail-message-new.png + Icons/Chicago95/actions/48/mail-reply-all.png + Icons/Chicago95/actions/48/mail-reply-sender.png + Icons/Chicago95/actions/48/mail-send-receive.png + Icons/Chicago95/actions/48/mail-send.png + Icons/Chicago95/actions/48/media-eject.png + Icons/Chicago95/actions/48/media-import-audio-cd.png + Icons/Chicago95/actions/48/media-optical-data-new.png + Icons/Chicago95/actions/48/media-optical-video-new.png + Icons/Chicago95/actions/48/media-playback-pause.png + Icons/Chicago95/actions/48/media-playback-start.png + Icons/Chicago95/actions/48/media-playback-stop.png + Icons/Chicago95/actions/48/media-record.png + Icons/Chicago95/actions/48/media-seek-backward.png + Icons/Chicago95/actions/48/media-seek-forward.png + Icons/Chicago95/actions/48/media-skip-backward.png + Icons/Chicago95/actions/48/media-skip-forward.png + Icons/Chicago95/actions/48/object-flip-horizontal.png + Icons/Chicago95/actions/48/object-flip-vertical.png + Icons/Chicago95/actions/48/object-inverse.png + Icons/Chicago95/actions/48/object-rotate-left.png + Icons/Chicago95/actions/48/process-stop.png + Icons/Chicago95/actions/48/sleep.png + Icons/Chicago95/actions/48/stock_xfburn-data-copy.png + Icons/Chicago95/actions/48/stock_xfburn-import-session.png + Icons/Chicago95/actions/48/system-lock-screen.png + Icons/Chicago95/actions/48/system-log-out.png + Icons/Chicago95/actions/48/system-run.png + Icons/Chicago95/actions/48/system-shutdown.png + Icons/Chicago95/actions/48/tab-new.png + Icons/Chicago95/actions/48/tag-new.png + Icons/Chicago95/actions/48/tools-check-spelling.png + Icons/Chicago95/actions/48/transform-rotate.png + Icons/Chicago95/actions/48/view-fullscreen.png + Icons/Chicago95/actions/48/view-refresh.png + Icons/Chicago95/actions/48/view-restore.png + Icons/Chicago95/actions/48/view-sort-ascending.png + Icons/Chicago95/actions/48/view-sort-descending.png + Icons/Chicago95/actions/48/window-close.png + Icons/Chicago95/actions/48/window-new.png + Icons/Chicago95/actions/48/zoom-fit-best.png + Icons/Chicago95/actions/48/zoom-in.png + Icons/Chicago95/actions/48/zoom-original.png + Icons/Chicago95/actions/48/zoom-out.png + Icons/Chicago95/actions/scalable/.png + Icons/Chicago95/actions/scalable/.svg + Icons/Chicago95/actions/symbolic/go-down-symbolic.png + Icons/Chicago95/actions/symbolic/go-home-symbolic.png + Icons/Chicago95/actions/symbolic/go-next-rtl-symbolic.png + Icons/Chicago95/actions/symbolic/go-next-symbolic-rtl.png + Icons/Chicago95/actions/symbolic/go-next-symbolic.png + Icons/Chicago95/actions/symbolic/go-previous-rtl-symbolic.png + Icons/Chicago95/actions/symbolic/go-previous-symbolic-rtl.png + Icons/Chicago95/actions/symbolic/go-previous-symbolic.png + Icons/Chicago95/actions/symbolic/go-up-symbolic.png + Icons/Chicago95/actions/symbolic/help-about-symbolic.png + Icons/Chicago95/actions/symbolic/view-refresh-symbolic.png + Icons/Chicago95/animations/10/spinner.png + Icons/Chicago95/animations/128/brasero-disk-00.png + Icons/Chicago95/animations/16/brasero-disc-00.png + Icons/Chicago95/animations/16/brasero-disc-05.png + Icons/Chicago95/animations/16/brasero-disc-10.png + Icons/Chicago95/animations/16/brasero-disc-15.png + Icons/Chicago95/animations/16/brasero-disc-20.png + Icons/Chicago95/animations/16/brasero-disc-25.png + Icons/Chicago95/animations/16/brasero-disc-30.png + Icons/Chicago95/animations/16/brasero-disc-35.png + Icons/Chicago95/animations/16/brasero-disc-40.png + Icons/Chicago95/animations/16/brasero-disc-45.png + Icons/Chicago95/animations/16/brasero-disc-50.png + Icons/Chicago95/animations/16/process-working.png + Icons/Chicago95/animations/16/spinner.png + Icons/Chicago95/animations/22/brasero-disc-00.png + Icons/Chicago95/animations/22/brasero-disc-05.png + Icons/Chicago95/animations/22/brasero-disc-10.png + Icons/Chicago95/animations/22/brasero-disc-100.png + Icons/Chicago95/animations/22/brasero-disc-15.png + Icons/Chicago95/animations/22/brasero-disc-20.png + Icons/Chicago95/animations/22/brasero-disc-25.png + Icons/Chicago95/animations/22/brasero-disc-30.png + Icons/Chicago95/animations/22/brasero-disc-35.png + Icons/Chicago95/animations/22/brasero-disc-40.png + Icons/Chicago95/animations/22/brasero-disc-45.png + Icons/Chicago95/animations/22/brasero-disc-50.png + Icons/Chicago95/animations/22/brasero-disc-55.png + Icons/Chicago95/animations/22/brasero-disc-60.png + Icons/Chicago95/animations/22/brasero-disc-65.png + Icons/Chicago95/animations/22/brasero-disc-70.png + Icons/Chicago95/animations/22/brasero-disc-75.png + Icons/Chicago95/animations/22/brasero-disc-80.png + Icons/Chicago95/animations/22/brasero-disc-85.png + Icons/Chicago95/animations/22/brasero-disc-90.png + Icons/Chicago95/animations/22/brasero-disc-95.png + Icons/Chicago95/animations/22/nm-stage01-connecting01.png + Icons/Chicago95/animations/22/nm-stage01-connecting02.png + Icons/Chicago95/animations/22/nm-stage01-connecting03.png + Icons/Chicago95/animations/22/nm-stage01-connecting04.png + Icons/Chicago95/animations/22/process-working.png + Icons/Chicago95/animations/24/nm-stage01-connecting01.png + Icons/Chicago95/animations/24/nm-stage01-connecting02.png + Icons/Chicago95/animations/24/nm-stage01-connecting03.png + Icons/Chicago95/animations/24/nm-stage01-connecting04.png + Icons/Chicago95/animations/24/process-working.png + Icons/Chicago95/animations/32/brasero-disc-05.png + Icons/Chicago95/animations/32/brasero-disc-10.png + Icons/Chicago95/animations/32/brasero-disc-100.png + Icons/Chicago95/animations/32/brasero-disc-15.png + Icons/Chicago95/animations/32/brasero-disc-20.png + Icons/Chicago95/animations/32/brasero-disc-25.png + Icons/Chicago95/animations/32/brasero-disc-30.png + Icons/Chicago95/animations/32/brasero-disc-35.png + Icons/Chicago95/animations/32/brasero-disc-40.png + Icons/Chicago95/animations/32/brasero-disc-45.png + Icons/Chicago95/animations/32/brasero-disc-50.png + Icons/Chicago95/animations/32/brasero-disc-55.png + Icons/Chicago95/animations/32/brasero-disc-60.png + Icons/Chicago95/animations/32/brasero-disc-65.png + Icons/Chicago95/animations/32/brasero-disc-70.png + Icons/Chicago95/animations/32/brasero-disc-75.png + Icons/Chicago95/animations/32/brasero-disc-80.png + Icons/Chicago95/animations/32/brasero-disc-85.png + Icons/Chicago95/animations/32/brasero-disc-90.png + Icons/Chicago95/animations/32/brasero-disc-95.png + Icons/Chicago95/animations/32/nm-stage01-connecting01.png + Icons/Chicago95/animations/32/nm-stage01-connecting02.png + Icons/Chicago95/animations/32/nm-stage01-connecting03.png + Icons/Chicago95/animations/32/nm-stage01-connecting04.png + Icons/Chicago95/animations/32/process-working.png + Icons/Chicago95/animations/48/brasero-disc-00.png + Icons/Chicago95/animations/48/brasero-disc-05.png + Icons/Chicago95/animations/48/brasero-disc-10.png + Icons/Chicago95/animations/48/brasero-disc-100.png + Icons/Chicago95/animations/48/brasero-disc-15.png + Icons/Chicago95/animations/48/brasero-disc-20.png + Icons/Chicago95/animations/48/brasero-disc-25.png + Icons/Chicago95/animations/48/brasero-disc-30.png + Icons/Chicago95/animations/48/brasero-disc-35.png + Icons/Chicago95/animations/48/brasero-disc-40.png + Icons/Chicago95/animations/48/brasero-disc-45.png + Icons/Chicago95/animations/48/brasero-disc-50.png + Icons/Chicago95/animations/48/brasero-disc-55.png + Icons/Chicago95/animations/48/brasero-disc-60.png + Icons/Chicago95/animations/48/brasero-disc-65.png + Icons/Chicago95/animations/48/brasero-disc-70.png + Icons/Chicago95/animations/48/brasero-disc-75.png + Icons/Chicago95/animations/48/brasero-disc-80.png + Icons/Chicago95/animations/48/brasero-disc-85.png + Icons/Chicago95/animations/48/brasero-disc-90.png + Icons/Chicago95/animations/48/brasero-disc-95.png + Icons/Chicago95/animations/64/brasero-disk-00.png + Icons/Chicago95/apps/16/abiword.png + Icons/Chicago95/apps/16/accessories-calculator.png + Icons/Chicago95/apps/16/accessories-character-map.png + Icons/Chicago95/apps/16/accessories-dictionary.png + Icons/Chicago95/apps/16/applets-screenshooter.png + Icons/Chicago95/apps/16/application-community.png + Icons/Chicago95/apps/16/application-default-icon.png + Icons/Chicago95/apps/16/archive-manager.png + Icons/Chicago95/apps/16/baobab.png + Icons/Chicago95/apps/16/bluetooth.png + Icons/Chicago95/apps/16/brasero.png + Icons/Chicago95/apps/16/ccsm.png + Icons/Chicago95/apps/16/checkbox.png + Icons/Chicago95/apps/16/chromium-browser.png + Icons/Chicago95/apps/16/clock.png + Icons/Chicago95/apps/16/com.visualstudio.code.png + Icons/Chicago95/apps/16/dconf-editor.png + Icons/Chicago95/apps/16/display-im6.q16.png + Icons/Chicago95/apps/16/easytag.png + Icons/Chicago95/apps/16/empathy.png + Icons/Chicago95/apps/16/evolution.png + Icons/Chicago95/apps/16/facebook.png + Icons/Chicago95/apps/16/firefox.png + Icons/Chicago95/apps/16/firefox_2.png + Icons/Chicago95/apps/16/flickr.png + Icons/Chicago95/apps/16/gimp.png + Icons/Chicago95/apps/16/gksu-root-terminal.png + Icons/Chicago95/apps/16/gmail.png + Icons/Chicago95/apps/16/gmusicbrowser.png + Icons/Chicago95/apps/16/gnome-desktop-config.png + Icons/Chicago95/apps/16/gnome-display-properties.png + Icons/Chicago95/apps/16/gnome-do.png + Icons/Chicago95/apps/16/gnome-inhibit-applet.png + Icons/Chicago95/apps/16/gnome-logout.png + Icons/Chicago95/apps/16/gnome-mines.png + Icons/Chicago95/apps/16/gnome-panel-force-quit.png + Icons/Chicago95/apps/16/gnome-panel-notification-area.png + Icons/Chicago95/apps/16/gnome-panel-window-list.png + Icons/Chicago95/apps/16/gnome-panel-workspace-switcher.png + Icons/Chicago95/apps/16/gnome-session-hibernate.png + Icons/Chicago95/apps/16/gnome-session-reboot.png + Icons/Chicago95/apps/16/gnome-session-suspend.png + Icons/Chicago95/apps/16/gnome-shutdown.png + Icons/Chicago95/apps/16/gnome-sudoku.png + Icons/Chicago95/apps/16/help-browser.png + Icons/Chicago95/apps/16/ibus.png + Icons/Chicago95/apps/16/im-aim.png + Icons/Chicago95/apps/16/im-icq.png + Icons/Chicago95/apps/16/im-jabber.png + Icons/Chicago95/apps/16/im-msn.png + Icons/Chicago95/apps/16/im-yahoo.png + Icons/Chicago95/apps/16/inkscape.png + Icons/Chicago95/apps/16/internet-news-reader.png + Icons/Chicago95/apps/16/invest-applet.png + Icons/Chicago95/apps/16/jockey.png + Icons/Chicago95/apps/16/leafpad.png + Icons/Chicago95/apps/16/libreoffice-base.png + Icons/Chicago95/apps/16/libreoffice-calc.png + Icons/Chicago95/apps/16/libreoffice-impress.png + Icons/Chicago95/apps/16/libreoffice-main.png + Icons/Chicago95/apps/16/libreoffice-math.png + Icons/Chicago95/apps/16/lightdm-gtk-greeter-settings.png + Icons/Chicago95/apps/16/logviewer.png + Icons/Chicago95/apps/16/lpi-bug.png + Icons/Chicago95/apps/16/lpi-help.png + Icons/Chicago95/apps/16/lxfind.png + Icons/Chicago95/apps/16/mate-power-manager.png + Icons/Chicago95/apps/16/mateconf-editor.png + Icons/Chicago95/apps/16/mdmsetup.png + Icons/Chicago95/apps/16/menu-editor.png + Icons/Chicago95/apps/16/midori.png + Icons/Chicago95/apps/16/miro.png + Icons/Chicago95/apps/16/mplayer.png + Icons/Chicago95/apps/16/mugshot.png + Icons/Chicago95/apps/16/multimedia-audio-player.png + Icons/Chicago95/apps/16/multimedia-photo-manager.png + Icons/Chicago95/apps/16/multimedia-video-player.png + Icons/Chicago95/apps/16/multimedia-volume-control.png + Icons/Chicago95/apps/16/office-address-book.png + Icons/Chicago95/apps/16/office-calendar.png + Icons/Chicago95/apps/16/onboard.png + Icons/Chicago95/apps/16/ooo-draw.png + Icons/Chicago95/apps/16/ooo-writer.png + Icons/Chicago95/apps/16/palemoon.png + Icons/Chicago95/apps/16/parole.png + Icons/Chicago95/apps/16/pdfshuffler.png + Icons/Chicago95/apps/16/pidgin.png + Icons/Chicago95/apps/16/pithos.png + Icons/Chicago95/apps/16/preferences-desktop-accessibility.png + Icons/Chicago95/apps/16/preferences-desktop-default-applications.png + Icons/Chicago95/apps/16/preferences-desktop-font.png + Icons/Chicago95/apps/16/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95/apps/16/preferences-desktop-keyboard.png + Icons/Chicago95/apps/16/preferences-desktop-locale.png + Icons/Chicago95/apps/16/preferences-desktop-remote-desktop.png + Icons/Chicago95/apps/16/preferences-desktop-screensaver.png + Icons/Chicago95/apps/16/preferences-desktop-sound.png + Icons/Chicago95/apps/16/preferences-desktop-theme.png + Icons/Chicago95/apps/16/preferences-desktop-wallpaper.png + Icons/Chicago95/apps/16/preferences-desktop.png + Icons/Chicago95/apps/16/preferences-system-network.png + Icons/Chicago95/apps/16/preferences-system-power.png + Icons/Chicago95/apps/16/preferences-system-windows.png + Icons/Chicago95/apps/16/promoe.png + Icons/Chicago95/apps/16/ristretto.png + Icons/Chicago95/apps/16/session-properties.png + Icons/Chicago95/apps/16/software-properties.png + Icons/Chicago95/apps/16/softwarecenter.png + Icons/Chicago95/apps/16/stock_keyring.png + Icons/Chicago95/apps/16/system-config-date.png + Icons/Chicago95/apps/16/system-config-display.png + Icons/Chicago95/apps/16/system-file-manager.png + Icons/Chicago95/apps/16/system-software-install.png + Icons/Chicago95/apps/16/system-software-update.png + Icons/Chicago95/apps/16/system-upgrade.png + Icons/Chicago95/apps/16/system-users.png + Icons/Chicago95/apps/16/thunderbird.png + Icons/Chicago95/apps/16/tomboy.png + Icons/Chicago95/apps/16/transmission.png + Icons/Chicago95/apps/16/ubiquity.png + Icons/Chicago95/apps/16/user-info.png + Icons/Chicago95/apps/16/utilities-system-monitor.png + Icons/Chicago95/apps/16/utilities-terminal.png + Icons/Chicago95/apps/16/virtualbox.png + Icons/Chicago95/apps/16/web-browser.png + Icons/Chicago95/apps/16/window.png + Icons/Chicago95/apps/16/xchat-gnome.png + Icons/Chicago95/apps/16/xfce4-appfinder.png + Icons/Chicago95/apps/16/xfce4-notes-plugin.png + Icons/Chicago95/apps/16/xfce4-notifyd.png + Icons/Chicago95/apps/16/xfce4-panel.png + Icons/Chicago95/apps/16/xfce4-whiskermenu.png + Icons/Chicago95/apps/16/xfce4-workspaces.png + Icons/Chicago95/apps/16/youtube.png + Icons/Chicago95/apps/22/abiword.png + Icons/Chicago95/apps/22/accessories-calculator.png + Icons/Chicago95/apps/22/accessories-character-map.png + Icons/Chicago95/apps/22/accessories-dictionary.png + Icons/Chicago95/apps/22/applets-screenshooter.png + Icons/Chicago95/apps/22/apport.png + Icons/Chicago95/apps/22/archive-manager.png + Icons/Chicago95/apps/22/bluetooth.png + Icons/Chicago95/apps/22/ccsm.png + Icons/Chicago95/apps/22/checkbox.png + Icons/Chicago95/apps/22/chromium-browser.png + Icons/Chicago95/apps/22/clock.png + Icons/Chicago95/apps/22/desktop-effects.png + Icons/Chicago95/apps/22/easytag.png + Icons/Chicago95/apps/22/empathy.png + Icons/Chicago95/apps/22/facebook.png + Icons/Chicago95/apps/22/firefox.png + Icons/Chicago95/apps/22/gimp.png + Icons/Chicago95/apps/22/gmail.png + Icons/Chicago95/apps/22/gnome-do.png + Icons/Chicago95/apps/22/gnome-inhibit-applet.png + Icons/Chicago95/apps/22/gnome-logout.png + Icons/Chicago95/apps/22/gnome-network-properties.png + Icons/Chicago95/apps/22/gnome-panel-force-quit.png + Icons/Chicago95/apps/22/gnome-session-hibernate.png + Icons/Chicago95/apps/22/google-chrome.png + Icons/Chicago95/apps/22/gstreamer-properties.png + Icons/Chicago95/apps/22/help-browser.png + Icons/Chicago95/apps/22/im-aim.png + Icons/Chicago95/apps/22/im-icq.png + Icons/Chicago95/apps/22/im-jabber.png + Icons/Chicago95/apps/22/im-msn.png + Icons/Chicago95/apps/22/im-yahoo.png + Icons/Chicago95/apps/22/internet-mail.png + Icons/Chicago95/apps/22/internet-news-reader.png + Icons/Chicago95/apps/22/invest-applet.png + Icons/Chicago95/apps/22/jockey.png + Icons/Chicago95/apps/22/leafpad.png + Icons/Chicago95/apps/22/libreoffice-base.png + Icons/Chicago95/apps/22/libreoffice-calc.png + Icons/Chicago95/apps/22/libreoffice-draw.png + Icons/Chicago95/apps/22/libreoffice-impress.png + Icons/Chicago95/apps/22/libreoffice-main.png + Icons/Chicago95/apps/22/libreoffice-math.png + Icons/Chicago95/apps/22/libreoffice-writer.png + Icons/Chicago95/apps/22/logviewer.png + Icons/Chicago95/apps/22/lxfind.png + Icons/Chicago95/apps/22/menulibre.png + Icons/Chicago95/apps/22/miro-browse.png + Icons/Chicago95/apps/22/miro.png + Icons/Chicago95/apps/22/multimedia-audio-player.png + Icons/Chicago95/apps/22/multimedia-video-player.png + Icons/Chicago95/apps/22/multimedia-volume-control.png + Icons/Chicago95/apps/22/office-address-book.png + Icons/Chicago95/apps/22/office-calendar.png + Icons/Chicago95/apps/22/office-database.png + Icons/Chicago95/apps/22/palemoon.png + Icons/Chicago95/apps/22/pidgin.png + Icons/Chicago95/apps/22/postscript-viewer.png + Icons/Chicago95/apps/22/preferences-desktop-accessibility.png + Icons/Chicago95/apps/22/preferences-desktop-font.png + Icons/Chicago95/apps/22/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95/apps/22/preferences-desktop-keyboard.png + Icons/Chicago95/apps/22/preferences-desktop-locale.png + Icons/Chicago95/apps/22/preferences-desktop-remote-desktop.png + Icons/Chicago95/apps/22/preferences-desktop-screensaver.png + Icons/Chicago95/apps/22/preferences-desktop-sound.png + Icons/Chicago95/apps/22/preferences-desktop-theme.png + Icons/Chicago95/apps/22/preferences-desktop-wallpaper.png + Icons/Chicago95/apps/22/preferences-system-network.png + Icons/Chicago95/apps/22/preferences-system-power.png + Icons/Chicago95/apps/22/preferences-system-windows.png + Icons/Chicago95/apps/22/session-properties.png + Icons/Chicago95/apps/22/system-config-display.png + Icons/Chicago95/apps/22/system-file-manager.png + Icons/Chicago95/apps/22/system-software-install.png + Icons/Chicago95/apps/22/system-software-update.png + Icons/Chicago95/apps/22/system-users.png + Icons/Chicago95/apps/22/thunderbird.png + Icons/Chicago95/apps/22/totem.png + Icons/Chicago95/apps/22/ubiquity.png + Icons/Chicago95/apps/22/user-info.png + Icons/Chicago95/apps/22/utilities-system-monitor.png + Icons/Chicago95/apps/22/utilities-terminal.png + Icons/Chicago95/apps/22/virtualbox.png + Icons/Chicago95/apps/22/web-browser.png + Icons/Chicago95/apps/22/window.png + Icons/Chicago95/apps/22/xfce4-panel-menu.png + Icons/Chicago95/apps/22/youtube.png + Icons/Chicago95/apps/24/accessories-calculator.png + Icons/Chicago95/apps/24/accessories-character-map.png + Icons/Chicago95/apps/24/accessories-dictionary.png + Icons/Chicago95/apps/24/accessories-text-editor.png + Icons/Chicago95/apps/24/application-community.png + Icons/Chicago95/apps/24/application-default-icon.png + Icons/Chicago95/apps/24/apport.png + Icons/Chicago95/apps/24/archive-manager.png + Icons/Chicago95/apps/24/audio-player.png + Icons/Chicago95/apps/24/baobab.png + Icons/Chicago95/apps/24/bluetooth.png + Icons/Chicago95/apps/24/ccsm.png + Icons/Chicago95/apps/24/checkbox.png + Icons/Chicago95/apps/24/chromium-browser.png + Icons/Chicago95/apps/24/clock.png + Icons/Chicago95/apps/24/desktop-effects.png + Icons/Chicago95/apps/24/easytag.png + Icons/Chicago95/apps/24/empathy.png + Icons/Chicago95/apps/24/facebook.png + Icons/Chicago95/apps/24/firefox.png + Icons/Chicago95/apps/24/gdm-setup.png + Icons/Chicago95/apps/24/gimp.png + Icons/Chicago95/apps/24/gmail.png + Icons/Chicago95/apps/24/gmusicbrowser.png + Icons/Chicago95/apps/24/gnome-do.png + Icons/Chicago95/apps/24/gnome-fs-bookmark-missing.png + Icons/Chicago95/apps/24/gnome-nettool.png + Icons/Chicago95/apps/24/gnome-network-properties.png + Icons/Chicago95/apps/24/gnome-panel-force-quit.png + Icons/Chicago95/apps/24/gnome-session-hibernate.png + Icons/Chicago95/apps/24/gnome-sound-recorder.png + Icons/Chicago95/apps/24/google-chrome.png + Icons/Chicago95/apps/24/google-hangout.png + Icons/Chicago95/apps/24/gstreamer-properties.png + Icons/Chicago95/apps/24/hwbrowser.png + Icons/Chicago95/apps/24/ibus.png + Icons/Chicago95/apps/24/im-aim.png + Icons/Chicago95/apps/24/im-icq.png + Icons/Chicago95/apps/24/im-jabber.png + Icons/Chicago95/apps/24/im-msn.png + Icons/Chicago95/apps/24/im-yahoo.png + Icons/Chicago95/apps/24/inkscape.png + Icons/Chicago95/apps/24/internet-mail.png + Icons/Chicago95/apps/24/internet-news-reader.png + Icons/Chicago95/apps/24/invest-applet.png + Icons/Chicago95/apps/24/jockey.png + Icons/Chicago95/apps/24/libreoffice-base.png + Icons/Chicago95/apps/24/libreoffice-calc.png + Icons/Chicago95/apps/24/libreoffice-draw.png + Icons/Chicago95/apps/24/libreoffice-impress.png + Icons/Chicago95/apps/24/libreoffice-main.png + Icons/Chicago95/apps/24/libreoffice-math.png + Icons/Chicago95/apps/24/libreoffice-writer.png + Icons/Chicago95/apps/24/logviewer.png + Icons/Chicago95/apps/24/lxfind.png + Icons/Chicago95/apps/24/menu-editor.png + Icons/Chicago95/apps/24/midori.png + Icons/Chicago95/apps/24/miro-browse.png + Icons/Chicago95/apps/24/miro.png + Icons/Chicago95/apps/24/mplayer.png + Icons/Chicago95/apps/24/office-address-book.png + Icons/Chicago95/apps/24/office-calendar.png + Icons/Chicago95/apps/24/onboard.png + Icons/Chicago95/apps/24/palemoon.png + Icons/Chicago95/apps/24/postscript-viewer.png + Icons/Chicago95/apps/24/preferences-desktop-accessibility.png + Icons/Chicago95/apps/24/preferences-desktop-default-applications.png + Icons/Chicago95/apps/24/preferences-desktop-font.png + Icons/Chicago95/apps/24/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95/apps/24/preferences-desktop-locale.png + Icons/Chicago95/apps/24/preferences-desktop-remote-desktop.png + Icons/Chicago95/apps/24/preferences-desktop-screensaver.png + Icons/Chicago95/apps/24/preferences-desktop-sound.png + Icons/Chicago95/apps/24/preferences-desktop-theme.png + Icons/Chicago95/apps/24/preferences-desktop-wallpaper.png + Icons/Chicago95/apps/24/preferences-desktop.png + Icons/Chicago95/apps/24/preferences-system-network.png + Icons/Chicago95/apps/24/preferences-system-power.png + Icons/Chicago95/apps/24/preferences-system-windows.png + Icons/Chicago95/apps/24/session-properties.png + Icons/Chicago95/apps/24/shotwell.png + Icons/Chicago95/apps/24/softwarecenter.png + Icons/Chicago95/apps/24/stock_keyring.png + Icons/Chicago95/apps/24/system-config-display.png + Icons/Chicago95/apps/24/system-file-manager.png + Icons/Chicago95/apps/24/system-software-install.png + Icons/Chicago95/apps/24/system-software-update.png + Icons/Chicago95/apps/24/system-upgrade.png + Icons/Chicago95/apps/24/system-users.png + Icons/Chicago95/apps/24/thunderbird.png + Icons/Chicago95/apps/24/time-admin.png + Icons/Chicago95/apps/24/totem.png + Icons/Chicago95/apps/24/transmission.png + Icons/Chicago95/apps/24/ubiquity.png + Icons/Chicago95/apps/24/user-info.png + Icons/Chicago95/apps/24/utilities-system-monitor.png + Icons/Chicago95/apps/24/utilities-terminal.png + Icons/Chicago95/apps/24/virtualbox.png + Icons/Chicago95/apps/24/web-browser.png + Icons/Chicago95/apps/24/wine.png + Icons/Chicago95/apps/24/xchat-gnome.png + Icons/Chicago95/apps/24/xfce4-splash.png + Icons/Chicago95/apps/24/xfce4-weather.png + Icons/Chicago95/apps/24/xfce4-workspaces.png + Icons/Chicago95/apps/24/youtube.png + Icons/Chicago95/apps/256/gimp.png + Icons/Chicago95/apps/32/abiword.png + Icons/Chicago95/apps/32/accessories-calculator.png + Icons/Chicago95/apps/32/accessories-character-map.png + Icons/Chicago95/apps/32/accessories-dictionary.png + Icons/Chicago95/apps/32/applets-screenshooter.png + Icons/Chicago95/apps/32/application-community.png + Icons/Chicago95/apps/32/application-default-icon.png + Icons/Chicago95/apps/32/aptoncd.png + Icons/Chicago95/apps/32/archive-manager.png + Icons/Chicago95/apps/32/baobab.png + Icons/Chicago95/apps/32/bluetooth.png + Icons/Chicago95/apps/32/brasero.png + Icons/Chicago95/apps/32/ccsm.png + Icons/Chicago95/apps/32/checkbox.png + Icons/Chicago95/apps/32/chromium-browser.png + Icons/Chicago95/apps/32/com.visualstudio.code.png + Icons/Chicago95/apps/32/dconf-editor.png + Icons/Chicago95/apps/32/desktop-effects.png + Icons/Chicago95/apps/32/display-capplet.png + Icons/Chicago95/apps/32/display-im6.q16.png + Icons/Chicago95/apps/32/easytag.png + Icons/Chicago95/apps/32/eom.png + Icons/Chicago95/apps/32/evolution.png + Icons/Chicago95/apps/32/facebook.png + Icons/Chicago95/apps/32/firefox.png + Icons/Chicago95/apps/32/firefox_2.png + Icons/Chicago95/apps/32/gcolor2.png + Icons/Chicago95/apps/32/gimp.png + Icons/Chicago95/apps/32/gksu-root-terminal.png + Icons/Chicago95/apps/32/gmail.png + Icons/Chicago95/apps/32/gmusicbrowser.png + Icons/Chicago95/apps/32/gnome-desktop-config.png + Icons/Chicago95/apps/32/gnome-do.png + Icons/Chicago95/apps/32/gnome-fs-bookmark-missing.png + Icons/Chicago95/apps/32/gnome-inhibit-applet.png + Icons/Chicago95/apps/32/gnome-logout.png + Icons/Chicago95/apps/32/gnome-mines.png + Icons/Chicago95/apps/32/gnome-nettool.png + Icons/Chicago95/apps/32/gnome-network-properties.png + Icons/Chicago95/apps/32/gnome-panel-clock.png + Icons/Chicago95/apps/32/gnome-panel-force-quit.png + Icons/Chicago95/apps/32/gnome-panel-notification-area.png + Icons/Chicago95/apps/32/gnome-panel-window-list.png + Icons/Chicago95/apps/32/gnome-panel-workspace-switcher.png + Icons/Chicago95/apps/32/gnome-session-hibernate.png + Icons/Chicago95/apps/32/gnome-session-reboot.png + Icons/Chicago95/apps/32/gnome-session-suspend.png + Icons/Chicago95/apps/32/gnome-shutdown.png + Icons/Chicago95/apps/32/gnome-sudoku.png + Icons/Chicago95/apps/32/google-hangout.png + Icons/Chicago95/apps/32/help-browser.png + Icons/Chicago95/apps/32/im-jabber.png + Icons/Chicago95/apps/32/im-msn.png + Icons/Chicago95/apps/32/im-yahoo.png + Icons/Chicago95/apps/32/im.png + Icons/Chicago95/apps/32/inkscape.png + Icons/Chicago95/apps/32/internet-news-reader.png + Icons/Chicago95/apps/32/invest-applet.png + Icons/Chicago95/apps/32/leafpad.png + Icons/Chicago95/apps/32/libreoffice-base.png + Icons/Chicago95/apps/32/libreoffice-calc.png + Icons/Chicago95/apps/32/libreoffice-impress.png + Icons/Chicago95/apps/32/libreoffice-main.png + Icons/Chicago95/apps/32/libreoffice-math.png + Icons/Chicago95/apps/32/lightdm-gtk-greeter-settings.png + Icons/Chicago95/apps/32/logviewer.png + Icons/Chicago95/apps/32/lxfind.png + Icons/Chicago95/apps/32/mate-notification-properties.png + Icons/Chicago95/apps/32/mate-panel-launcher.png + Icons/Chicago95/apps/32/mate-power-manager.png + Icons/Chicago95/apps/32/mate-preferences-desktop-display.png + Icons/Chicago95/apps/32/mateconf-editor.png + Icons/Chicago95/apps/32/mdmsetup.png + Icons/Chicago95/apps/32/menu-editor.png + Icons/Chicago95/apps/32/midori.png + Icons/Chicago95/apps/32/miro-browse.png + Icons/Chicago95/apps/32/mozo.png + Icons/Chicago95/apps/32/mplayer.png + Icons/Chicago95/apps/32/mugshot.png + Icons/Chicago95/apps/32/multimedia-audio-player.png + Icons/Chicago95/apps/32/multimedia-video-player.png + Icons/Chicago95/apps/32/multimedia-volume-control.png + Icons/Chicago95/apps/32/news-feed.png + Icons/Chicago95/apps/32/office-address-book.png + Icons/Chicago95/apps/32/office-calendar.png + Icons/Chicago95/apps/32/onboard.png + Icons/Chicago95/apps/32/ooo-draw.png + Icons/Chicago95/apps/32/ooo-writer.png + Icons/Chicago95/apps/32/palemoon.png + Icons/Chicago95/apps/32/palm-pilot-sync + Icons/Chicago95/apps/32/pidgin.png + Icons/Chicago95/apps/32/plugin-scale.png + Icons/Chicago95/apps/32/postscript-viewer.png + Icons/Chicago95/apps/32/preferences-desktop-accessibility.png + Icons/Chicago95/apps/32/preferences-desktop-default-applications.png + Icons/Chicago95/apps/32/preferences-desktop-font.png + Icons/Chicago95/apps/32/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95/apps/32/preferences-desktop-keyboard.png + Icons/Chicago95/apps/32/preferences-desktop-locale.png + Icons/Chicago95/apps/32/preferences-desktop-remote-desktop.png + Icons/Chicago95/apps/32/preferences-desktop-screensaver.png + Icons/Chicago95/apps/32/preferences-desktop-sound.png + Icons/Chicago95/apps/32/preferences-desktop-theme.png + Icons/Chicago95/apps/32/preferences-desktop-wallpaper.png + Icons/Chicago95/apps/32/preferences-desktop.png + Icons/Chicago95/apps/32/preferences-system-network.png + Icons/Chicago95/apps/32/preferences-system-power.png + Icons/Chicago95/apps/32/preferences-system-windows.png + Icons/Chicago95/apps/32/session-properties.png + Icons/Chicago95/apps/32/shotwell.png + Icons/Chicago95/apps/32/softwarecenter.png + Icons/Chicago95/apps/32/stock_keyring.png + Icons/Chicago95/apps/32/system-file-manager.png + Icons/Chicago95/apps/32/system-software-install.png + Icons/Chicago95/apps/32/system-software-update.png + Icons/Chicago95/apps/32/system-users.png + Icons/Chicago95/apps/32/thunderbird.png + Icons/Chicago95/apps/32/time-admin.png + Icons/Chicago95/apps/32/tomboy.png + Icons/Chicago95/apps/32/transmission.png + Icons/Chicago95/apps/32/ubiquity.png + Icons/Chicago95/apps/32/user-info.png + Icons/Chicago95/apps/32/utilities-system-monitor.png + Icons/Chicago95/apps/32/utilities-terminal.png + Icons/Chicago95/apps/32/virtualbox.png + Icons/Chicago95/apps/32/web-browser.png + Icons/Chicago95/apps/32/xchat-gnome.png + Icons/Chicago95/apps/32/xfce4-notifyd.png + Icons/Chicago95/apps/32/xfce4-splash.png + Icons/Chicago95/apps/32/xfce4-weather.png + Icons/Chicago95/apps/32/xfce4-whiskermenu.png + Icons/Chicago95/apps/32/xfce4-workspaces.png + Icons/Chicago95/apps/32/youtube.png + Icons/Chicago95/apps/48/abiword.png + Icons/Chicago95/apps/48/accessories-character-map.png + Icons/Chicago95/apps/48/accessories-dictionary.png + Icons/Chicago95/apps/48/accessories-text-editor.png + Icons/Chicago95/apps/48/applets-screenshooter.png + Icons/Chicago95/apps/48/application-community.png + Icons/Chicago95/apps/48/application-default-icon.png + Icons/Chicago95/apps/48/apport.png + Icons/Chicago95/apps/48/aptoncd.png + Icons/Chicago95/apps/48/archive-manager.png + Icons/Chicago95/apps/48/baobab.png + Icons/Chicago95/apps/48/bluetooth.png + Icons/Chicago95/apps/48/brasero.png + Icons/Chicago95/apps/48/calc.png + Icons/Chicago95/apps/48/catfish.png + Icons/Chicago95/apps/48/ccsm.png + Icons/Chicago95/apps/48/checkbox.png + Icons/Chicago95/apps/48/chromium-browser.png + Icons/Chicago95/apps/48/clock.png + Icons/Chicago95/apps/48/com.visualstudio.code.png + Icons/Chicago95/apps/48/dconf-editor.png + Icons/Chicago95/apps/48/dconf.png + Icons/Chicago95/apps/48/desktop-effects.png + Icons/Chicago95/apps/48/display-im6.q16.png + Icons/Chicago95/apps/48/easytag.png + Icons/Chicago95/apps/48/eject_pc_cool_6_48x48x4.png + Icons/Chicago95/apps/48/empathy.png + Icons/Chicago95/apps/48/evolution.png + Icons/Chicago95/apps/48/facebook.png + Icons/Chicago95/apps/48/firefox.png + Icons/Chicago95/apps/48/firefox_2.png + Icons/Chicago95/apps/48/gimp.png + Icons/Chicago95/apps/48/gmail.png + Icons/Chicago95/apps/48/gmusicbrowser.png + Icons/Chicago95/apps/48/gnome-desktop-config.png + Icons/Chicago95/apps/48/gnome-do.png + Icons/Chicago95/apps/48/gnome-mines.png + Icons/Chicago95/apps/48/gnome-nettool.png + Icons/Chicago95/apps/48/gnome-network-properties.png + Icons/Chicago95/apps/48/gnome-panel-force-quit.png + Icons/Chicago95/apps/48/gnome-panel-notification-area.png + Icons/Chicago95/apps/48/gnome-panel-window-list.png + Icons/Chicago95/apps/48/gnome-power-manager.png + Icons/Chicago95/apps/48/gnome-session-hibernate.png + Icons/Chicago95/apps/48/gnome-session-switch.png + Icons/Chicago95/apps/48/gnome-shutdown.png + Icons/Chicago95/apps/48/gnome-sound-recorder.png + Icons/Chicago95/apps/48/gnome-sudoku.png + Icons/Chicago95/apps/48/gstreamer-properties.png + Icons/Chicago95/apps/48/gthumb.png + Icons/Chicago95/apps/48/help-browser.png + Icons/Chicago95/apps/48/hwbrowser.png + Icons/Chicago95/apps/48/im-msn_48.png + Icons/Chicago95/apps/48/inkscape.png + Icons/Chicago95/apps/48/internet-mail.png + Icons/Chicago95/apps/48/internet-news-reader.png + Icons/Chicago95/apps/48/invest-applet.png + Icons/Chicago95/apps/48/libreoffice-base.png + Icons/Chicago95/apps/48/libreoffice-calc.png + Icons/Chicago95/apps/48/libreoffice-impress.png + Icons/Chicago95/apps/48/libreoffice-main.png + Icons/Chicago95/apps/48/libreoffice-math.png + Icons/Chicago95/apps/48/lightdm-gtk-greeter-settings.png + Icons/Chicago95/apps/48/locale_48x48.png + Icons/Chicago95/apps/48/logviewer.png + Icons/Chicago95/apps/48/lxfind_48.png + Icons/Chicago95/apps/48/mahjong.png + Icons/Chicago95/apps/48/mail.png + Icons/Chicago95/apps/48/media-player-banshee.png + Icons/Chicago95/apps/48/midori.png + Icons/Chicago95/apps/48/minesweper.png + Icons/Chicago95/apps/48/miro-browse.png + Icons/Chicago95/apps/48/miro.png + Icons/Chicago95/apps/48/mozo.png + Icons/Chicago95/apps/48/mugshot.png + Icons/Chicago95/apps/48/multimedia-audio-player.png + Icons/Chicago95/apps/48/multimedia-photo-manager.png + Icons/Chicago95/apps/48/office-address-book.png + Icons/Chicago95/apps/48/office-calendar.png + Icons/Chicago95/apps/48/ooo-draw.png + Icons/Chicago95/apps/48/ooo-writer.png + Icons/Chicago95/apps/48/palemoon.png + Icons/Chicago95/apps/48/palm-pilot-sync.png + Icons/Chicago95/apps/48/palm-pilot.png + Icons/Chicago95/apps/48/pidgin.png + Icons/Chicago95/apps/48/plugin-scale.png + Icons/Chicago95/apps/48/postscript-viewer.png + Icons/Chicago95/apps/48/preferences-desktop-accesibility.png + Icons/Chicago95/apps/48/preferences-desktop-default-applications.png + Icons/Chicago95/apps/48/preferences-desktop-font.png + Icons/Chicago95/apps/48/preferences-desktop-keyboard-shortcuts.png + Icons/Chicago95/apps/48/preferences-desktop-locale.png + Icons/Chicago95/apps/48/preferences-desktop-remote-desktop.png + Icons/Chicago95/apps/48/preferences-desktop-screensaver.png + Icons/Chicago95/apps/48/preferences-desktop-theme.png + Icons/Chicago95/apps/48/preferences-desktop-wallpaper.png + Icons/Chicago95/apps/48/preferences-desktop.png + Icons/Chicago95/apps/48/preferences-system-network.png + Icons/Chicago95/apps/48/preferences-system-power.png + Icons/Chicago95/apps/48/preferences-system-services.png + Icons/Chicago95/apps/48/preferences-system-windows.png + Icons/Chicago95/apps/48/serpentine.png + Icons/Chicago95/apps/48/session-properties.png + Icons/Chicago95/apps/48/shotwell.png + Icons/Chicago95/apps/48/simple-scan.png + Icons/Chicago95/apps/48/software.png + Icons/Chicago95/apps/48/softwarecenter.png + Icons/Chicago95/apps/48/stock_keyring.png + Icons/Chicago95/apps/48/system-config-display.png + Icons/Chicago95/apps/48/system-file-manager.png + Icons/Chicago95/apps/48/system-software-update.png + Icons/Chicago95/apps/48/system-users.png + Icons/Chicago95/apps/48/thunderbird.png + Icons/Chicago95/apps/48/time-admin.png + Icons/Chicago95/apps/48/tomboy.png + Icons/Chicago95/apps/48/totem.png + Icons/Chicago95/apps/48/transmission.png + Icons/Chicago95/apps/48/ubiquity.png + Icons/Chicago95/apps/48/utilities-system-monitor.png + Icons/Chicago95/apps/48/utilities-terminal.png + Icons/Chicago95/apps/48/virtualbox.png + Icons/Chicago95/apps/48/xchat-gnome.png + Icons/Chicago95/apps/48/xfce4-fsguard-plugin-warning.png + Icons/Chicago95/apps/48/xfce4-notifyd.png + Icons/Chicago95/apps/48/xfce4-panel-menu.png + Icons/Chicago95/apps/48/xfce4-panel.png + Icons/Chicago95/apps/48/xfce4-splash.png + Icons/Chicago95/apps/48/xfce4-workspaces.png + Icons/Chicago95/apps/48/youtube.png + Icons/Chicago95/apps/scalable/brasero.png + Icons/Chicago95/apps/scalable/totem.png + Icons/Chicago95/categories/16/application-community.png + Icons/Chicago95/categories/16/applications-accessories.png + Icons/Chicago95/categories/16/applications-development.png + Icons/Chicago95/categories/16/applications-engineering.png + Icons/Chicago95/categories/16/applications-fonts.png + Icons/Chicago95/categories/16/applications-games.png + Icons/Chicago95/categories/16/applications-graphics.png + Icons/Chicago95/categories/16/applications-multimedia.png + Icons/Chicago95/categories/16/applications-other.png + Icons/Chicago95/categories/16/applications-science.png + Icons/Chicago95/categories/16/applications-utilities.png + Icons/Chicago95/categories/16/preferences-desktop-peripherals.png + Icons/Chicago95/categories/16/preferences-desktop-personal.png + Icons/Chicago95/categories/16/preferences-desktop.png + Icons/Chicago95/categories/16/preferences-other.png + Icons/Chicago95/categories/16/preferences-system-network.png + Icons/Chicago95/categories/16/preferences-system-parental-controls.png + Icons/Chicago95/categories/16/preferences-system.png + Icons/Chicago95/categories/16/system-help.png + Icons/Chicago95/categories/22/application-community.png + Icons/Chicago95/categories/22/applications-accessories.png + Icons/Chicago95/categories/22/applications-development.png + Icons/Chicago95/categories/22/applications-engineering.png + Icons/Chicago95/categories/22/applications-games.png + Icons/Chicago95/categories/22/applications-internet.png + Icons/Chicago95/categories/22/applications-other.png + Icons/Chicago95/categories/22/applications-science.png + Icons/Chicago95/categories/22/applications-utilities.png + Icons/Chicago95/categories/22/preferences-desktop-peripherals.png + Icons/Chicago95/categories/22/preferences-desktop-personal.png + Icons/Chicago95/categories/22/preferences-desktop.png + Icons/Chicago95/categories/22/preferences-other.png + Icons/Chicago95/categories/22/preferences-system-network.png + Icons/Chicago95/categories/22/preferences-system.png + Icons/Chicago95/categories/22/system-help.png + Icons/Chicago95/categories/24/application-community.png + Icons/Chicago95/categories/24/applications-accessories.png + Icons/Chicago95/categories/24/applications-development.png + Icons/Chicago95/categories/24/applications-engineering.png + Icons/Chicago95/categories/24/applications-games.png + Icons/Chicago95/categories/24/applications-internet.png + Icons/Chicago95/categories/24/applications-other.png + Icons/Chicago95/categories/24/applications-science.png + Icons/Chicago95/categories/24/applications-utilities.png + Icons/Chicago95/categories/24/preferences-desktop-personal.png + Icons/Chicago95/categories/24/preferences-desktop.png + Icons/Chicago95/categories/24/preferences-other.png + Icons/Chicago95/categories/24/preferences-system-network.png + Icons/Chicago95/categories/24/preferences-system.png + Icons/Chicago95/categories/24/system-help.png + Icons/Chicago95/categories/32/application-community.png + Icons/Chicago95/categories/32/applications-accessories.png + Icons/Chicago95/categories/32/applications-development.png + Icons/Chicago95/categories/32/applications-engineering.png + Icons/Chicago95/categories/32/applications-fonts.png + Icons/Chicago95/categories/32/applications-games.png + Icons/Chicago95/categories/32/applications-internet.png + Icons/Chicago95/categories/32/applications-other.png + Icons/Chicago95/categories/32/applications-science.png + Icons/Chicago95/categories/32/applications-utilities.png + Icons/Chicago95/categories/32/preferences-desktop-peripherals.png + Icons/Chicago95/categories/32/preferences-desktop-personal.png + Icons/Chicago95/categories/32/preferences-desktop.png + Icons/Chicago95/categories/32/preferences-other.png + Icons/Chicago95/categories/32/preferences-system-network.png + Icons/Chicago95/categories/32/preferences-system-parental-controls.png + Icons/Chicago95/categories/32/preferences-system.png + Icons/Chicago95/categories/32/system-help.png + Icons/Chicago95/categories/48/applications-accessories.png + Icons/Chicago95/categories/48/applications-internet.png + Icons/Chicago95/categories/48/preferences-desktop-peripherals.png + Icons/Chicago95/categories/48/preferences-desktop-personal.png + Icons/Chicago95/categories/48/preferences-desktop.png + Icons/Chicago95/categories/48/preferences-other.png + Icons/Chicago95/categories/48/preferences-system.png + Icons/Chicago95/categories/48/xfdesktop-menu.png + Icons/Chicago95/devices/16/audio-card.png + Icons/Chicago95/devices/16/audio-input-microphone.png + Icons/Chicago95/devices/16/battery.png + Icons/Chicago95/devices/16/camera-photo.png + Icons/Chicago95/devices/16/camera-video.png + Icons/Chicago95/devices/16/camera-web.png + Icons/Chicago95/devices/16/computer-apple-ipad.png + Icons/Chicago95/devices/16/computer.png + Icons/Chicago95/devices/16/drive-encrypted.png + Icons/Chicago95/devices/16/drive-harddisk-ieee1394.png + Icons/Chicago95/devices/16/drive-harddisk-usb.png + Icons/Chicago95/devices/16/drive-harddisk.png + Icons/Chicago95/devices/16/drive-optical-recorder.png + Icons/Chicago95/devices/16/drive-optical.png + Icons/Chicago95/devices/16/drive-removable-media-flash-cf.png + Icons/Chicago95/devices/16/drive-removable-media-flash-ms.png + Icons/Chicago95/devices/16/drive-removable-media-flash-sd.png + Icons/Chicago95/devices/16/drive-removable-media-flash-sm.png + Icons/Chicago95/devices/16/drive-removable-media-flash.png + Icons/Chicago95/devices/16/drive-removable-media-floppy.png + Icons/Chicago95/devices/16/drive-removable-media-ieee1394.png + Icons/Chicago95/devices/16/drive-removable-media-usb.png + Icons/Chicago95/devices/16/drive-removable-media.png + Icons/Chicago95/devices/16/gnome-dev-ethernet.png + Icons/Chicago95/devices/16/gnome-dev-printer-network.png + Icons/Chicago95/devices/16/gnome-dev-printer-new.png + Icons/Chicago95/devices/16/gnome-dev-removable-1394.png + Icons/Chicago95/devices/16/gnome-dev-removable-usb.png + Icons/Chicago95/devices/16/gnome-dev-removable.png + Icons/Chicago95/devices/16/input-gaming.png + Icons/Chicago95/devices/16/input-keyboard.png + Icons/Chicago95/devices/16/input-mouse.png + Icons/Chicago95/devices/16/input-tablet.png + Icons/Chicago95/devices/16/media-encrypted.png + Icons/Chicago95/devices/16/media-flash.png + Icons/Chicago95/devices/16/media-floppy.png + Icons/Chicago95/devices/16/media-optical-audio.png + Icons/Chicago95/devices/16/media-optical-bd.png + Icons/Chicago95/devices/16/media-optical-cd.png + Icons/Chicago95/devices/16/media-optical-dvd.png + Icons/Chicago95/devices/16/media-optical-hddvd.png + Icons/Chicago95/devices/16/media-optical.png + Icons/Chicago95/devices/16/media-tape.png + Icons/Chicago95/devices/16/media-zip.png + Icons/Chicago95/devices/16/modem.png + Icons/Chicago95/devices/16/multimedia-player.png + Icons/Chicago95/devices/16/network-wired.png + Icons/Chicago95/devices/16/network-wireless.png + Icons/Chicago95/devices/16/pda.png + Icons/Chicago95/devices/16/phone-motorola-droid.png + Icons/Chicago95/devices/16/phone.png + Icons/Chicago95/devices/16/printer.png + Icons/Chicago95/devices/16/scanner.png + Icons/Chicago95/devices/16/video-display.png + Icons/Chicago95/devices/22/audio-card.png + Icons/Chicago95/devices/22/audio-input-microphone.png + Icons/Chicago95/devices/22/battery.png + Icons/Chicago95/devices/22/camera-photo.png + Icons/Chicago95/devices/22/camera-video.png + Icons/Chicago95/devices/22/camera-web.png + Icons/Chicago95/devices/22/computer.png + Icons/Chicago95/devices/22/drive-encrypted.png + Icons/Chicago95/devices/22/drive-harddisk-ieee1394.png + Icons/Chicago95/devices/22/drive-harddisk-usb.png + Icons/Chicago95/devices/22/drive-harddisk.png + Icons/Chicago95/devices/22/drive-optical-recorder.png + Icons/Chicago95/devices/22/drive-optical.png + Icons/Chicago95/devices/22/drive-removable-media-flash-cf.png + Icons/Chicago95/devices/22/drive-removable-media-flash-ms.png + Icons/Chicago95/devices/22/drive-removable-media-flash-sd.png + Icons/Chicago95/devices/22/drive-removable-media-flash-sm.png + Icons/Chicago95/devices/22/drive-removable-media-flash.png + Icons/Chicago95/devices/22/drive-removable-media-floppy.png + Icons/Chicago95/devices/22/drive-removable-media-ieee1394.png + Icons/Chicago95/devices/22/drive-removable-media-usb.png + Icons/Chicago95/devices/22/drive-removable-media.png + Icons/Chicago95/devices/22/gnome-dev-removable-1394.png + Icons/Chicago95/devices/22/gnome-dev-removable-usb.png + Icons/Chicago95/devices/22/gnome-dev-removable.png + Icons/Chicago95/devices/22/input-gaming.png + Icons/Chicago95/devices/22/input-keyboard.png + Icons/Chicago95/devices/22/input-mouse.png + Icons/Chicago95/devices/22/input-tablet.png + Icons/Chicago95/devices/22/media-encrypted.png + Icons/Chicago95/devices/22/media-flash-cf.png + Icons/Chicago95/devices/22/media-flash-ms.png + Icons/Chicago95/devices/22/media-flash-sd.png + Icons/Chicago95/devices/22/media-flash-sm.png + Icons/Chicago95/devices/22/media-flash.png + Icons/Chicago95/devices/22/media-floppy.png + Icons/Chicago95/devices/22/media-optical-audio.png + Icons/Chicago95/devices/22/media-optical-bd.png + Icons/Chicago95/devices/22/media-optical-cd.png + Icons/Chicago95/devices/22/media-optical-dvd.png + Icons/Chicago95/devices/22/media-optical-hddvd.png + Icons/Chicago95/devices/22/media-optical.png + Icons/Chicago95/devices/22/media-tape.png + Icons/Chicago95/devices/22/media-zip.png + Icons/Chicago95/devices/22/modem.png + Icons/Chicago95/devices/22/multimedia-player.png + Icons/Chicago95/devices/22/network-wired.png + Icons/Chicago95/devices/22/network-wireless.png + Icons/Chicago95/devices/22/pda.png + Icons/Chicago95/devices/22/phone.png + Icons/Chicago95/devices/22/printer.png + Icons/Chicago95/devices/22/scanner.png + Icons/Chicago95/devices/22/usbpendrive_unmount.png + Icons/Chicago95/devices/22/video-display.png + Icons/Chicago95/devices/24/audio-card.png + Icons/Chicago95/devices/24/audio-input-microphone.png + Icons/Chicago95/devices/24/battery.png + Icons/Chicago95/devices/24/camera-photo.png + Icons/Chicago95/devices/24/camera-video.png + Icons/Chicago95/devices/24/camera-web.png + Icons/Chicago95/devices/24/cdrom_unmount.png + Icons/Chicago95/devices/24/cdwriter_unmount.png + Icons/Chicago95/devices/24/computer.png + Icons/Chicago95/devices/24/drive-harddisk.png + Icons/Chicago95/devices/24/drive-optical.png + Icons/Chicago95/devices/24/drive-removable-media.png + Icons/Chicago95/devices/24/dvd_unmount.png + Icons/Chicago95/devices/24/gnome-dev-cdrom-audio.png + Icons/Chicago95/devices/24/gnome-dev-disc-cdr.png + Icons/Chicago95/devices/24/gnome-dev-disc-cdrw.png + Icons/Chicago95/devices/24/gnome-dev-disc-dvdr-plus.png + Icons/Chicago95/devices/24/gnome-dev-disc-dvdr.png + Icons/Chicago95/devices/24/gnome-dev-disc-dvdram.png + Icons/Chicago95/devices/24/gnome-dev-disc-dvdrom.png + Icons/Chicago95/devices/24/gnome-dev-disc-dvdrw.png + Icons/Chicago95/devices/24/gnome-dev-removable-1394.png + Icons/Chicago95/devices/24/gnome-dev-removable-usb.png + Icons/Chicago95/devices/24/gnome-dev-removable.png + Icons/Chicago95/devices/24/gtk-cdrom.png + Icons/Chicago95/devices/24/input-gaming.png + Icons/Chicago95/devices/24/input-keyboard.png + Icons/Chicago95/devices/24/input-mouse.png + Icons/Chicago95/devices/24/input-tablet.png + Icons/Chicago95/devices/24/media-cdrom.png + Icons/Chicago95/devices/24/media-flash.png + Icons/Chicago95/devices/24/media-floppy.png + Icons/Chicago95/devices/24/media-optical.png + Icons/Chicago95/devices/24/media-tape.png + Icons/Chicago95/devices/24/media-zip.png + Icons/Chicago95/devices/24/modem.png + Icons/Chicago95/devices/24/multimedia-player.png + Icons/Chicago95/devices/24/network-wired.png + Icons/Chicago95/devices/24/network-wireless.png + Icons/Chicago95/devices/24/pda.png + Icons/Chicago95/devices/24/phone.png + Icons/Chicago95/devices/24/printer.png + Icons/Chicago95/devices/24/scanner.png + Icons/Chicago95/devices/24/usbpendrive_unmount.png + Icons/Chicago95/devices/24/video-display.png + Icons/Chicago95/devices/32/audio-card.png + Icons/Chicago95/devices/32/audio-input-microphone.png + Icons/Chicago95/devices/32/battery.png + Icons/Chicago95/devices/32/camera-photo.png + Icons/Chicago95/devices/32/camera-video.png + Icons/Chicago95/devices/32/camera-web.png + Icons/Chicago95/devices/32/computer-apple-ipad.png + Icons/Chicago95/devices/32/computer.png + Icons/Chicago95/devices/32/drive-harddisk.png + Icons/Chicago95/devices/32/drive-optical.png + Icons/Chicago95/devices/32/drive-removable-media.png + Icons/Chicago95/devices/32/gnome-dev-ethernet.png + Icons/Chicago95/devices/32/gnome-dev-ipod.png + Icons/Chicago95/devices/32/gnome-dev-printer-network.png + Icons/Chicago95/devices/32/gvc-tone.png + Icons/Chicago95/devices/32/input-gaming.png + Icons/Chicago95/devices/32/input-keyboard.png + Icons/Chicago95/devices/32/input-mouse.png + Icons/Chicago95/devices/32/input-tablet.png + Icons/Chicago95/devices/32/media-flash.png + Icons/Chicago95/devices/32/media-floppy.png + Icons/Chicago95/devices/32/media-optical-audio.png + Icons/Chicago95/devices/32/media-optical.png + Icons/Chicago95/devices/32/media-tape.png + Icons/Chicago95/devices/32/media-zip.png + Icons/Chicago95/devices/32/modem.png + Icons/Chicago95/devices/32/multimedia-player.png + Icons/Chicago95/devices/32/network-wired.png + Icons/Chicago95/devices/32/network-wireless.png + Icons/Chicago95/devices/32/pda.png + Icons/Chicago95/devices/32/phone-motorola-droid.png + Icons/Chicago95/devices/32/phone.png + Icons/Chicago95/devices/32/printer.png + Icons/Chicago95/devices/32/scanner.png + Icons/Chicago95/devices/32/video-display.png + Icons/Chicago95/devices/48/audio-card.png + Icons/Chicago95/devices/48/audio-input-microphone.png + Icons/Chicago95/devices/48/battery.png + Icons/Chicago95/devices/48/camera-photo.png + Icons/Chicago95/devices/48/camera-web.png + Icons/Chicago95/devices/48/drive-encrypted.png + Icons/Chicago95/devices/48/drive-harddisk-ieee1394.png + Icons/Chicago95/devices/48/drive-harddisk-usb.png + Icons/Chicago95/devices/48/drive-harddisk.png + Icons/Chicago95/devices/48/drive-optical-recorder.png + Icons/Chicago95/devices/48/drive-removable-media-flash-cf.png + Icons/Chicago95/devices/48/drive-removable-media-flash-ms.png + Icons/Chicago95/devices/48/drive-removable-media-flash-sd.png + Icons/Chicago95/devices/48/drive-removable-media-flash-sm.png + Icons/Chicago95/devices/48/drive-removable-media-flash.png + Icons/Chicago95/devices/48/drive-removable-media-floppy.png + Icons/Chicago95/devices/48/drive-removable-media-ieee1394.png + Icons/Chicago95/devices/48/drive-removable-media-usb.png + Icons/Chicago95/devices/48/drive-removable-media.png + Icons/Chicago95/devices/48/gnome-dev-harddisk-1394.png + Icons/Chicago95/devices/48/gnome-dev-harddisk-usb.png + Icons/Chicago95/devices/48/gnome-dev-media-cf.png + Icons/Chicago95/devices/48/gnome-dev-media-ms.png + Icons/Chicago95/devices/48/gnome-dev-media-sdmmc.png + Icons/Chicago95/devices/48/gnome-dev-media-sm.png + Icons/Chicago95/devices/48/gnome-dev-memory.png + Icons/Chicago95/devices/48/gnome-dev-pcmcia.png + Icons/Chicago95/devices/48/gnome-dev-printer-network.png + Icons/Chicago95/devices/48/gnome-dev-printer-new.png + Icons/Chicago95/devices/48/gnome-dev-zipdisk.png + Icons/Chicago95/devices/48/input-gaming.png + Icons/Chicago95/devices/48/input-keyboard.png + Icons/Chicago95/devices/48/input-mouse.png + Icons/Chicago95/devices/48/input-tablet.png + Icons/Chicago95/devices/48/media-encrypted.png + Icons/Chicago95/devices/48/media-floppy.png + Icons/Chicago95/devices/48/media-jaz.png + Icons/Chicago95/devices/48/media-optical-audio.png + Icons/Chicago95/devices/48/media-optical-bd.png + Icons/Chicago95/devices/48/media-optical-cd.png + Icons/Chicago95/devices/48/media-optical-dvd.png + Icons/Chicago95/devices/48/media-optical-hddvd.png + Icons/Chicago95/devices/48/media-optical.png + Icons/Chicago95/devices/48/multimedia-player.png + Icons/Chicago95/devices/48/pda.png + Icons/Chicago95/devices/48/phone-motorola-droid.png + Icons/Chicago95/devices/48/phone.png + Icons/Chicago95/devices/48/printer.png + Icons/Chicago95/devices/48/processor.png + Icons/Chicago95/devices/48/scanner.png + Icons/Chicago95/devices/48/video-display.png + Icons/Chicago95/devices/scalable/scanner.png + Icons/Chicago95/emblems/16/emblem-default.png + Icons/Chicago95/emblems/16/emblem-documents.png + Icons/Chicago95/emblems/16/emblem-downloads.png + Icons/Chicago95/emblems/16/emblem-favorite.png + Icons/Chicago95/emblems/16/emblem-generic.png + Icons/Chicago95/emblems/16/emblem-important.png + Icons/Chicago95/emblems/16/emblem-mail.png + Icons/Chicago95/emblems/16/emblem-new.png + Icons/Chicago95/emblems/16/emblem-package.png + Icons/Chicago95/emblems/16/emblem-photos.png + Icons/Chicago95/emblems/16/emblem-readonly.png + Icons/Chicago95/emblems/16/emblem-shared.png + Icons/Chicago95/emblems/16/emblem-symbolic-link.png + Icons/Chicago95/emblems/16/emblem-system.png + Icons/Chicago95/emblems/16/emblem-unreadable.png + Icons/Chicago95/emblems/16/emblem-web.png + Icons/Chicago95/emblems/22/emblem-default.png + Icons/Chicago95/emblems/22/emblem-documents.png + Icons/Chicago95/emblems/22/emblem-downloads.png + Icons/Chicago95/emblems/22/emblem-favorite.png + Icons/Chicago95/emblems/22/emblem-generic.png + Icons/Chicago95/emblems/22/emblem-important.png + Icons/Chicago95/emblems/22/emblem-mail.png + Icons/Chicago95/emblems/22/emblem-new.png + Icons/Chicago95/emblems/22/emblem-noread.png + Icons/Chicago95/emblems/22/emblem-nowrite.png + Icons/Chicago95/emblems/22/emblem-package.png + Icons/Chicago95/emblems/22/emblem-photos.png + Icons/Chicago95/emblems/22/emblem-readonly.png + Icons/Chicago95/emblems/22/emblem-shared.png + Icons/Chicago95/emblems/22/emblem-symbolic-link.png + Icons/Chicago95/emblems/22/emblem-system.png + Icons/Chicago95/emblems/22/emblem-unreadable.png + Icons/Chicago95/emblems/22/emblem-urgent.png + Icons/Chicago95/emblems/22/emblem-web.png + Icons/Chicago95/emblems/24/emblem-default.png + Icons/Chicago95/emblems/24/emblem-documents.png + Icons/Chicago95/emblems/24/emblem-downloads.png + Icons/Chicago95/emblems/24/emblem-favorite.png + Icons/Chicago95/emblems/24/emblem-generic.png + Icons/Chicago95/emblems/24/emblem-important.png + Icons/Chicago95/emblems/24/emblem-mail.png + Icons/Chicago95/emblems/24/emblem-new.png + Icons/Chicago95/emblems/24/emblem-noread.png + Icons/Chicago95/emblems/24/emblem-nowrite.png + Icons/Chicago95/emblems/24/emblem-package.png + Icons/Chicago95/emblems/24/emblem-photos.png + Icons/Chicago95/emblems/24/emblem-readonly.png + Icons/Chicago95/emblems/24/emblem-shared.png + Icons/Chicago95/emblems/24/emblem-symbolic-link.png + Icons/Chicago95/emblems/24/emblem-system.png + Icons/Chicago95/emblems/24/emblem-unreadable.png + Icons/Chicago95/emblems/24/emblem-urgent.png + Icons/Chicago95/emblems/24/emblem-web.png + Icons/Chicago95/emblems/32/emblem-colors-blue.png + Icons/Chicago95/emblems/32/emblem-colors-brown.png + Icons/Chicago95/emblems/32/emblem-colors-green.png + Icons/Chicago95/emblems/32/emblem-colors-grey.png + Icons/Chicago95/emblems/32/emblem-colors-orange.png + Icons/Chicago95/emblems/32/emblem-colors-red.png + Icons/Chicago95/emblems/32/emblem-colors-violet.png + Icons/Chicago95/emblems/32/emblem-colors-white.png + Icons/Chicago95/emblems/32/emblem-colors-yellow.png + Icons/Chicago95/emblems/32/emblem-default.png + Icons/Chicago95/emblems/32/emblem-documents.png + Icons/Chicago95/emblems/32/emblem-downloads.png + Icons/Chicago95/emblems/32/emblem-favorite.png + Icons/Chicago95/emblems/32/emblem-generic.png + Icons/Chicago95/emblems/32/emblem-important.png + Icons/Chicago95/emblems/32/emblem-mail.png + Icons/Chicago95/emblems/32/emblem-new.png + Icons/Chicago95/emblems/32/emblem-package.png + Icons/Chicago95/emblems/32/emblem-photos.png + Icons/Chicago95/emblems/32/emblem-readonly.png + Icons/Chicago95/emblems/32/emblem-shared.png + Icons/Chicago95/emblems/32/emblem-symbolic-link.png + Icons/Chicago95/emblems/32/emblem-system.png + Icons/Chicago95/emblems/32/emblem-unreadable.png + Icons/Chicago95/emblems/32/emblem-web.png + Icons/Chicago95/emblems/48/emblem-colors-blue.png + Icons/Chicago95/emblems/48/emblem-colors-brown.png + Icons/Chicago95/emblems/48/emblem-colors-green.png + Icons/Chicago95/emblems/48/emblem-colors-grey.png + Icons/Chicago95/emblems/48/emblem-colors-orange.png + Icons/Chicago95/emblems/48/emblem-colors-red.png + Icons/Chicago95/emblems/48/emblem-colors-violet.png + Icons/Chicago95/emblems/48/emblem-colors-white.png + Icons/Chicago95/emblems/48/emblem-colors-yellow.png + Icons/Chicago95/emblems/48/emblem-default.png + Icons/Chicago95/emblems/48/emblem-documents.png + Icons/Chicago95/emblems/48/emblem-downloads.png + Icons/Chicago95/emblems/48/emblem-favorite.png + Icons/Chicago95/emblems/48/emblem-generic.png + Icons/Chicago95/emblems/48/emblem-important.png + Icons/Chicago95/emblems/48/emblem-mail.png + Icons/Chicago95/emblems/48/emblem-new.png + Icons/Chicago95/emblems/48/emblem-noread.png + Icons/Chicago95/emblems/48/emblem-nowrite.png + Icons/Chicago95/emblems/48/emblem-package.png + Icons/Chicago95/emblems/48/emblem-photos.png + Icons/Chicago95/emblems/48/emblem-readonly.png + Icons/Chicago95/emblems/48/emblem-shared.png + Icons/Chicago95/emblems/48/emblem-symbolic-link.png + Icons/Chicago95/emblems/48/emblem-system.png + Icons/Chicago95/emblems/48/emblem-unreadable.png + Icons/Chicago95/emblems/48/emblem-urgent.png + Icons/Chicago95/emblems/48/emblem-web.png + Icons/Chicago95/emotes/16/face-angel.png + Icons/Chicago95/emotes/16/face-angry.png + Icons/Chicago95/emotes/16/face-cool.png + Icons/Chicago95/emotes/16/face-crying.png + Icons/Chicago95/emotes/16/face-devilish.png + Icons/Chicago95/emotes/16/face-embarrassed.png + Icons/Chicago95/emotes/16/face-heart-broken.png + Icons/Chicago95/emotes/16/face-heart.png + Icons/Chicago95/emotes/16/face-kiss.png + Icons/Chicago95/emotes/16/face-laugh.png + Icons/Chicago95/emotes/16/face-monkey.png + Icons/Chicago95/emotes/16/face-plain.png + Icons/Chicago95/emotes/16/face-raspberry.png + Icons/Chicago95/emotes/16/face-sad.png + Icons/Chicago95/emotes/16/face-sick.png + Icons/Chicago95/emotes/16/face-smile-big.png + Icons/Chicago95/emotes/16/face-smile.png + Icons/Chicago95/emotes/16/face-smirk.png + Icons/Chicago95/emotes/16/face-surprise.png + Icons/Chicago95/emotes/16/face-tired.png + Icons/Chicago95/emotes/16/face-uncertain.png + Icons/Chicago95/emotes/16/face-wink.png + Icons/Chicago95/emotes/16/face-worried.png + Icons/Chicago95/emotes/32/face-angel.png + Icons/Chicago95/emotes/32/face-angry.png + Icons/Chicago95/emotes/32/face-cool.png + Icons/Chicago95/emotes/32/face-crying.png + Icons/Chicago95/emotes/32/face-devilish.png + Icons/Chicago95/emotes/32/face-embarrassed.png + Icons/Chicago95/emotes/32/face-heart-broken.png + Icons/Chicago95/emotes/32/face-heart.png + Icons/Chicago95/emotes/32/face-kiss.png + Icons/Chicago95/emotes/32/face-laugh.png + Icons/Chicago95/emotes/32/face-monkey.png + Icons/Chicago95/emotes/32/face-plain.png + Icons/Chicago95/emotes/32/face-raspberry.png + Icons/Chicago95/emotes/32/face-sad.png + Icons/Chicago95/emotes/32/face-sick.png + Icons/Chicago95/emotes/32/face-smile-big.png + Icons/Chicago95/emotes/32/face-smile.png + Icons/Chicago95/emotes/32/face-smirk.png + Icons/Chicago95/emotes/32/face-surprise.png + Icons/Chicago95/emotes/32/face-tired.png + Icons/Chicago95/emotes/32/face-uncertain.png + Icons/Chicago95/emotes/32/face-wink.png + Icons/Chicago95/emotes/32/face-worried.png + Icons/Chicago95/index.theme + Icons/Chicago95/mimes/16/application-certificate.png + Icons/Chicago95/mimes/16/application-epub+zip.png + Icons/Chicago95/mimes/16/application-illustrator.png + Icons/Chicago95/mimes/16/application-msword.png + Icons/Chicago95/mimes/16/application-octet-stream.png + Icons/Chicago95/mimes/16/application-pdf.png + Icons/Chicago95/mimes/16/application-rss+xml.png + Icons/Chicago95/mimes/16/application-vnd.nokia.qt.qmakeprofile.png + Icons/Chicago95/mimes/16/application-vnd.nokia.xml.qt.resource.png + Icons/Chicago95/mimes/16/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95/mimes/16/application-x-bittorrent.png + Icons/Chicago95/mimes/16/application-x-cd-image.png + Icons/Chicago95/mimes/16/application-x-executable.png + Icons/Chicago95/mimes/16/application-x-flash-video.png + Icons/Chicago95/mimes/16/application-x-ms-dos-executable.png + Icons/Chicago95/mimes/16/application-x-object.png + Icons/Chicago95/mimes/16/application-x-shellscript.png + Icons/Chicago95/mimes/16/application-x-theme.png + Icons/Chicago95/mimes/16/audio-x-generic.png + Icons/Chicago95/mimes/16/audio-x-smart-playlist.png + Icons/Chicago95/mimes/16/authors.png + Icons/Chicago95/mimes/16/exchange.png + Icons/Chicago95/mimes/16/extension.png + Icons/Chicago95/mimes/16/font-x-generic.png + Icons/Chicago95/mimes/16/gnome-mime-application-pdf.png + Icons/Chicago95/mimes/16/gnome-mime-image-x-psd.png + Icons/Chicago95/mimes/16/image-jpeg.png + Icons/Chicago95/mimes/16/image-x-generic.png + Icons/Chicago95/mimes/16/image-x-xcf.png + Icons/Chicago95/mimes/16/internet-feed.png + Icons/Chicago95/mimes/16/libreoffice-calc.png + Icons/Chicago95/mimes/16/libreoffice-database.png + Icons/Chicago95/mimes/16/libreoffice-drawing.png + Icons/Chicago95/mimes/16/libreoffice-formula.png + Icons/Chicago95/mimes/16/libreoffice-presentation-template.png + Icons/Chicago95/mimes/16/libreoffice-presentation.png + Icons/Chicago95/mimes/16/libreoffice-spreadsheet-template.png + Icons/Chicago95/mimes/16/libreoffice-text-template.png + Icons/Chicago95/mimes/16/libreoffice-text.png + Icons/Chicago95/mimes/16/media-audio.png + Icons/Chicago95/mimes/16/multipart-encrypted.png + Icons/Chicago95/mimes/16/office-contact.png + Icons/Chicago95/mimes/16/package-x-generic.png + Icons/Chicago95/mimes/16/plan.png + Icons/Chicago95/mimes/16/text-html.png + Icons/Chicago95/mimes/16/text-x-c++hdr.png + Icons/Chicago95/mimes/16/text-x-c++src.png + Icons/Chicago95/mimes/16/text-x-changelog.png + Icons/Chicago95/mimes/16/text-x-chdr.png + Icons/Chicago95/mimes/16/text-x-csrc.png + Icons/Chicago95/mimes/16/text-x-generic-template.png + Icons/Chicago95/mimes/16/text-x-install.png + Icons/Chicago95/mimes/16/text-x-java-source.png + Icons/Chicago95/mimes/16/text-x-lua.png + Icons/Chicago95/mimes/16/text-x-makefile.png + Icons/Chicago95/mimes/16/text-x-preview.png + Icons/Chicago95/mimes/16/text-x-script.png + Icons/Chicago95/mimes/16/video-x-generic.png + Icons/Chicago95/mimes/16/x-office-address-book.png + Icons/Chicago95/mimes/16/x-office-calendar.png + Icons/Chicago95/mimes/16/x-office-document-template.png + Icons/Chicago95/mimes/16/x-office-drawing-template.png + Icons/Chicago95/mimes/16/x-office-drawing.png + Icons/Chicago95/mimes/16/x-office-spreadsheet-template.png + Icons/Chicago95/mimes/22/application-certificate.png + Icons/Chicago95/mimes/22/application-x-executable.png + Icons/Chicago95/mimes/22/audio-x-generic.png + Icons/Chicago95/mimes/22/font-x-generic.png + Icons/Chicago95/mimes/22/gnome-mime-application-pdf.png + Icons/Chicago95/mimes/22/image-x-generic.png + Icons/Chicago95/mimes/22/package-x-generic.png + Icons/Chicago95/mimes/22/text-html.png + Icons/Chicago95/mimes/22/text-x-generic-template.png + Icons/Chicago95/mimes/22/text-x-generic.png + Icons/Chicago95/mimes/22/text-x-preview.png + Icons/Chicago95/mimes/22/text-x-script.png + Icons/Chicago95/mimes/22/video-x-generic.png + Icons/Chicago95/mimes/22/x-office-address-book.png + Icons/Chicago95/mimes/22/x-office-calendar.png + Icons/Chicago95/mimes/22/x-office-document.png + Icons/Chicago95/mimes/22/x-office-drawing.png + Icons/Chicago95/mimes/22/x-office-presentation.png + Icons/Chicago95/mimes/22/x-office-spreadsheet.png + Icons/Chicago95/mimes/24/application-certificate.png + Icons/Chicago95/mimes/24/application-epub+zip.png + Icons/Chicago95/mimes/24/application-illustrator.png + Icons/Chicago95/mimes/24/application-msword.png + Icons/Chicago95/mimes/24/application-vnd.ms-access.png + Icons/Chicago95/mimes/24/application-vnd.ms-excel.png + Icons/Chicago95/mimes/24/application-vnd.ms-powerpoint.png + Icons/Chicago95/mimes/24/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95/mimes/24/application-x-bittorrent.png + Icons/Chicago95/mimes/24/application-x-cd-image.png + Icons/Chicago95/mimes/24/application-x-desktop.png + Icons/Chicago95/mimes/24/application-x-executable.png + Icons/Chicago95/mimes/24/application-x-flash-video.png + Icons/Chicago95/mimes/24/application-x-ms-dos-executable.png + Icons/Chicago95/mimes/24/application-x-shellscript.png + Icons/Chicago95/mimes/24/application-x-sln.png + Icons/Chicago95/mimes/24/application-x-theme.png + Icons/Chicago95/mimes/24/audio-x-generic.png + Icons/Chicago95/mimes/24/audio-x-playlist.png + Icons/Chicago95/mimes/24/audio-x-smart-playlist.png + Icons/Chicago95/mimes/24/authors.png + Icons/Chicago95/mimes/24/extension.png + Icons/Chicago95/mimes/24/font-x-generic.png + Icons/Chicago95/mimes/24/gnome-mime-application-pdf.png + Icons/Chicago95/mimes/24/image-x-compressed-xcf.png + Icons/Chicago95/mimes/24/image-x-generic.png + Icons/Chicago95/mimes/24/image-x-psd.png + Icons/Chicago95/mimes/24/image-x-xcf.png + Icons/Chicago95/mimes/24/internet-feed.png + Icons/Chicago95/mimes/24/libreoffice-database.png + Icons/Chicago95/mimes/24/libreoffice-drawing-template.png + Icons/Chicago95/mimes/24/libreoffice-drawing.png + Icons/Chicago95/mimes/24/libreoffice-formula.png + Icons/Chicago95/mimes/24/libreoffice-presentation-template.png + Icons/Chicago95/mimes/24/libreoffice-presentation.png + Icons/Chicago95/mimes/24/libreoffice-spreadsheet-template.png + Icons/Chicago95/mimes/24/libreoffice-spreadsheet.png + Icons/Chicago95/mimes/24/libreoffice-text-template.png + Icons/Chicago95/mimes/24/libreoffice-text.png + Icons/Chicago95/mimes/24/media-audio.png + Icons/Chicago95/mimes/24/multipart-encrypted.png + Icons/Chicago95/mimes/24/office-contact.png + Icons/Chicago95/mimes/24/package-x-generic.png + Icons/Chicago95/mimes/24/text-html.png + Icons/Chicago95/mimes/24/text-x-generic-template.png + Icons/Chicago95/mimes/24/text-x-generic.png + Icons/Chicago95/mimes/24/text-x-install.png + Icons/Chicago95/mimes/24/text-x-java-source.png + Icons/Chicago95/mimes/24/text-x-lua.png + Icons/Chicago95/mimes/24/text-x-makefile.png + Icons/Chicago95/mimes/24/text-x-preview.png + Icons/Chicago95/mimes/24/text-x-readme.png + Icons/Chicago95/mimes/24/text-x-script.png + Icons/Chicago95/mimes/24/text-x-sql.png + Icons/Chicago95/mimes/24/video-x-generic.png + Icons/Chicago95/mimes/24/x-office-address-book.png + Icons/Chicago95/mimes/24/x-office-calendar.png + Icons/Chicago95/mimes/24/x-office-document-template.png + Icons/Chicago95/mimes/24/x-office-document.png + Icons/Chicago95/mimes/24/x-office-drawing-template.png + Icons/Chicago95/mimes/24/x-office-drawing.png + Icons/Chicago95/mimes/24/x-office-presentation-template.png + Icons/Chicago95/mimes/24/x-office-presentation.png + Icons/Chicago95/mimes/24/x-office-spreadsheet-template.png + Icons/Chicago95/mimes/24/x-office-spreadsheet.png + Icons/Chicago95/mimes/32/application-certificate.png + Icons/Chicago95/mimes/32/application-epub+zip.png + Icons/Chicago95/mimes/32/application-illustrator.png + Icons/Chicago95/mimes/32/application-msword.png + Icons/Chicago95/mimes/32/application-rss+xml.png + Icons/Chicago95/mimes/32/application-vnd.ms-access.png + Icons/Chicago95/mimes/32/application-vnd.ms-excel.png + Icons/Chicago95/mimes/32/application-vnd.ms-powerpoint.png + Icons/Chicago95/mimes/32/application-vnd.nokia.qt.qmakeprofile.png + Icons/Chicago95/mimes/32/application-vnd.nokia.xml.qt.resource.png + Icons/Chicago95/mimes/32/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95/mimes/32/application-x-bittorrent.png + Icons/Chicago95/mimes/32/application-x-cd-image.png + Icons/Chicago95/mimes/32/application-x-desktop.png + Icons/Chicago95/mimes/32/application-x-executable.png + Icons/Chicago95/mimes/32/application-x-flash-video.png + Icons/Chicago95/mimes/32/application-x-java.png + Icons/Chicago95/mimes/32/application-x-ms-dos-executable.png + Icons/Chicago95/mimes/32/application-x-object.png + Icons/Chicago95/mimes/32/application-x-rar.png + Icons/Chicago95/mimes/32/application-x-shellscript.png + Icons/Chicago95/mimes/32/application-x-sln.png + Icons/Chicago95/mimes/32/application-x-theme.png + Icons/Chicago95/mimes/32/audio-x-generic.png + Icons/Chicago95/mimes/32/audio-x-playlist.png + Icons/Chicago95/mimes/32/audio-x-smart-playlist.png + Icons/Chicago95/mimes/32/authors.png + Icons/Chicago95/mimes/32/extension.png + Icons/Chicago95/mimes/32/font-x-generic.png + Icons/Chicago95/mimes/32/gnome-mime-application-pdf.png + Icons/Chicago95/mimes/32/gnome-mime-application-x-killustrator.png + Icons/Chicago95/mimes/32/gnome-mime-application-x-rar.png + Icons/Chicago95/mimes/32/gnome-mime-image-bmp.png + Icons/Chicago95/mimes/32/gnome-mime-image-gif.png + Icons/Chicago95/mimes/32/gnome-mime-image-jpeg.png + Icons/Chicago95/mimes/32/gnome-mime-image-png.png + Icons/Chicago95/mimes/32/gnome-mime-image-tiff.png + Icons/Chicago95/mimes/32/gnome-mime-image-x-cmu-raster.png + Icons/Chicago95/mimes/32/gnome-mime-image-x-portable-bitmap.png + Icons/Chicago95/mimes/32/gnome-mime-image-x-psd.png + Icons/Chicago95/mimes/32/gnome-mime-image-x-xpixmap.png + Icons/Chicago95/mimes/32/gnome-mime-image.png + Icons/Chicago95/mimes/32/image-bmp.png + Icons/Chicago95/mimes/32/image-gif.png + Icons/Chicago95/mimes/32/image-jpeg.png + Icons/Chicago95/mimes/32/image-png.png + Icons/Chicago95/mimes/32/image-tiff.png + Icons/Chicago95/mimes/32/image-x-compressed-xcf.png + Icons/Chicago95/mimes/32/image-x-generic.png + Icons/Chicago95/mimes/32/image-x-portable-bitmap.png + Icons/Chicago95/mimes/32/image-x-psd.png + Icons/Chicago95/mimes/32/image-x-svg+xml.png + Icons/Chicago95/mimes/32/image-x-tga.png + Icons/Chicago95/mimes/32/image-x-xcf.png + Icons/Chicago95/mimes/32/image.png + Icons/Chicago95/mimes/32/libreoffice-database.png + Icons/Chicago95/mimes/32/libreoffice-drawing-template.png + Icons/Chicago95/mimes/32/libreoffice-drawing.png + Icons/Chicago95/mimes/32/libreoffice-formula.png + Icons/Chicago95/mimes/32/libreoffice-presentation-template.png + Icons/Chicago95/mimes/32/libreoffice-presentation.png + Icons/Chicago95/mimes/32/libreoffice-spreadsheet-template.png + Icons/Chicago95/mimes/32/libreoffice-spreadsheet.png + Icons/Chicago95/mimes/32/libreoffice-text-template.png + Icons/Chicago95/mimes/32/libreoffice-text.png + Icons/Chicago95/mimes/32/media-audio.png + Icons/Chicago95/mimes/32/multipart-encrypted.png + Icons/Chicago95/mimes/32/office-contact.png + Icons/Chicago95/mimes/32/package-x-generic.png + Icons/Chicago95/mimes/32/plan.png + Icons/Chicago95/mimes/32/rar.png + Icons/Chicago95/mimes/32/text-css.png + Icons/Chicago95/mimes/32/text-html.png + Icons/Chicago95/mimes/32/text-x-c++hdr.png + Icons/Chicago95/mimes/32/text-x-c++src.png + Icons/Chicago95/mimes/32/text-x-chdr.png + Icons/Chicago95/mimes/32/text-x-csrc.png + Icons/Chicago95/mimes/32/text-x-generic-template.png + Icons/Chicago95/mimes/32/text-x-generic.png + Icons/Chicago95/mimes/32/text-x-install.png + Icons/Chicago95/mimes/32/text-x-java-source.png + Icons/Chicago95/mimes/32/text-x-lua.png + Icons/Chicago95/mimes/32/text-x-preview.png + Icons/Chicago95/mimes/32/text-x-readme.png + Icons/Chicago95/mimes/32/text-x-script.png + Icons/Chicago95/mimes/32/video-x-generic.png + Icons/Chicago95/mimes/32/x-office-address-book.png + Icons/Chicago95/mimes/32/x-office-calendar.png + Icons/Chicago95/mimes/32/x-office-document-templat.png + Icons/Chicago95/mimes/32/x-office-document-template.png + Icons/Chicago95/mimes/32/x-office-document.png + Icons/Chicago95/mimes/32/x-office-drawing-template.png + Icons/Chicago95/mimes/32/x-office-drawing.png + Icons/Chicago95/mimes/32/x-office-presentation-template.png + Icons/Chicago95/mimes/32/x-office-presentation.png + Icons/Chicago95/mimes/32/x-office-spreadsheet-template.png + Icons/Chicago95/mimes/32/x-office-spreadsheet.png + Icons/Chicago95/mimes/48/application-7zip.png + Icons/Chicago95/mimes/48/application-epub+zip.png + Icons/Chicago95/mimes/48/application-illustrator.png + Icons/Chicago95/mimes/48/application-msword.png + Icons/Chicago95/mimes/48/application-octet-stream.png + Icons/Chicago95/mimes/48/application-pdf.png + Icons/Chicago95/mimes/48/application-rss+xml.png + Icons/Chicago95/mimes/48/application-vnd.oasis.opendocument.chart.png + Icons/Chicago95/mimes/48/application-vnd.oasis.opendocument.chart.png.png + Icons/Chicago95/mimes/48/application-x-bittorrent.png + Icons/Chicago95/mimes/48/application-x-cd-image.png + Icons/Chicago95/mimes/48/application-x-executable.png + Icons/Chicago95/mimes/48/application-x-flash-video.png + Icons/Chicago95/mimes/48/application-x-java.png + Icons/Chicago95/mimes/48/application-x-ms-dos-executable.png + Icons/Chicago95/mimes/48/application-x-object.png + Icons/Chicago95/mimes/48/application-x-php.png + Icons/Chicago95/mimes/48/application-x-rar.png + Icons/Chicago95/mimes/48/application-x-shellscript.png + Icons/Chicago95/mimes/48/application-x-sln.png + Icons/Chicago95/mimes/48/application-x-theme.png + Icons/Chicago95/mimes/48/application-zip.png + Icons/Chicago95/mimes/48/audio-x-generic.png + Icons/Chicago95/mimes/48/audio-x-playlist.png + Icons/Chicago95/mimes/48/authors.png + Icons/Chicago95/mimes/48/empty.png + Icons/Chicago95/mimes/48/empty_48x48.png + Icons/Chicago95/mimes/48/extension.png + Icons/Chicago95/mimes/48/font-x-generic.png + Icons/Chicago95/mimes/48/gnome-mime-application-pdf.png + Icons/Chicago95/mimes/48/gnome-mime-application-x-glade.png + Icons/Chicago95/mimes/48/image-bmp.png + Icons/Chicago95/mimes/48/image-gif.png + Icons/Chicago95/mimes/48/image-jpeg.png + Icons/Chicago95/mimes/48/image-png.png + Icons/Chicago95/mimes/48/image-tiff.png + Icons/Chicago95/mimes/48/image-x-compressed-xcf.png + Icons/Chicago95/mimes/48/image-x-generic.png + Icons/Chicago95/mimes/48/image-x-ico.png + Icons/Chicago95/mimes/48/image-x-psd.png + Icons/Chicago95/mimes/48/image-x-tga.png + Icons/Chicago95/mimes/48/image-x-xcf.png + Icons/Chicago95/mimes/48/image.png + Icons/Chicago95/mimes/48/libreoffice-calc.png + Icons/Chicago95/mimes/48/libreoffice-database.png + Icons/Chicago95/mimes/48/libreoffice-drawing-template.png + Icons/Chicago95/mimes/48/libreoffice-drawing.png + Icons/Chicago95/mimes/48/libreoffice-formula.png + Icons/Chicago95/mimes/48/libreoffice-presentation-template.png + Icons/Chicago95/mimes/48/libreoffice-presentation.png + Icons/Chicago95/mimes/48/libreoffice-spreadsheet-template.png + Icons/Chicago95/mimes/48/libreoffice-text-template.png + Icons/Chicago95/mimes/48/libreoffice-text.png + Icons/Chicago95/mimes/48/media-audio.png + Icons/Chicago95/mimes/48/msaccess.exe_14_259_4_48x48x4.png + Icons/Chicago95/mimes/48/office-contact.png + Icons/Chicago95/mimes/48/office-database.png + Icons/Chicago95/mimes/48/package-x-generic.png + Icons/Chicago95/mimes/48/text-css.png + Icons/Chicago95/mimes/48/text-html.png + Icons/Chicago95/mimes/48/text-x-c++.png + Icons/Chicago95/mimes/48/text-x-changelog.png + Icons/Chicago95/mimes/48/text-x-chdr.png + Icons/Chicago95/mimes/48/text-x-csharp.png + Icons/Chicago95/mimes/48/text-x-csrc.png + Icons/Chicago95/mimes/48/text-x-generic-template.png + Icons/Chicago95/mimes/48/text-x-install.png + Icons/Chicago95/mimes/48/text-x-java-source.png + Icons/Chicago95/mimes/48/text-x-javascript.png + Icons/Chicago95/mimes/48/text-x-kgw.png + Icons/Chicago95/mimes/48/text-x-lua.png + Icons/Chicago95/mimes/48/text-x-makefile.png + Icons/Chicago95/mimes/48/text-x-perl.png + Icons/Chicago95/mimes/48/text-x-preview.png + Icons/Chicago95/mimes/48/text-x-python.png + Icons/Chicago95/mimes/48/text-x-ruby.png + Icons/Chicago95/mimes/48/text-x-script.png + Icons/Chicago95/mimes/48/text-x-vala.png + Icons/Chicago95/mimes/48/video-x-generic.png + Icons/Chicago95/mimes/48/x-office-adress-book.png + Icons/Chicago95/mimes/48/x-office-calendar.png + Icons/Chicago95/mimes/48/x-office-document-template.png + Icons/Chicago95/mimes/48/x-office-drawing-template.png + Icons/Chicago95/mimes/48/x-office-drawing.png + Icons/Chicago95/mimes/48/x-office-spreadsheet-template.png + Icons/Chicago95/notifications/16/notification-network-wireless-full.png + Icons/Chicago95/notifications/16/notification-network-wireless-high.png + Icons/Chicago95/notifications/16/notification-network-wireless-low.png + Icons/Chicago95/notifications/16/notification-network-wireless-medium.png + Icons/Chicago95/notifications/16/notification-network-wireless-none.png + Icons/Chicago95/notifications/24/notification-message-im.png + Icons/Chicago95/notifications/24/notification-network-ethernet-connected.png + Icons/Chicago95/notifications/24/notification-network-ethernet-disconnected.png + Icons/Chicago95/notifications/32/notification-network-ethernet-connected.png + Icons/Chicago95/notifications/32/notification-network-ethernet-disconnected.png + Icons/Chicago95/notifications/48/audio-volume-high.png + Icons/Chicago95/notifications/48/audio-volume-low.png + Icons/Chicago95/notifications/48/audio-volume-medium.png + Icons/Chicago95/notifications/48/audio-volume-muted.png + Icons/Chicago95/notifications/48/audio-volume-off.png + Icons/Chicago95/notifications/48/notification-audio-next.png + Icons/Chicago95/notifications/48/notification-audio-pause.png + Icons/Chicago95/notifications/48/notification-audio-play.png + Icons/Chicago95/notifications/48/notification-audio-previous.png + Icons/Chicago95/notifications/48/notification-audio-stop.png + Icons/Chicago95/notifications/48/notification-device-eject.png + Icons/Chicago95/notifications/48/notification-device-firewire.png + Icons/Chicago95/notifications/48/notification-display-brightness-full.png + Icons/Chicago95/notifications/48/notification-display-brightness-high.png + Icons/Chicago95/notifications/48/notification-display-brightness-low.png + Icons/Chicago95/notifications/48/notification-display-brightness-medium.png + Icons/Chicago95/notifications/48/notification-display-brightness-off.png + Icons/Chicago95/notifications/48/notification-message-im.png + Icons/Chicago95/notifications/48/notification-network-ethernet-connected.png + Icons/Chicago95/notifications/48/notification-network-ethernet-disconnected.png + Icons/Chicago95/notifications/48/notification-network-wireless-disconnected.png + Icons/Chicago95/notifications/48/notification-network-wireless-full.png + Icons/Chicago95/notifications/48/notification-network-wireless-high.png + Icons/Chicago95/notifications/48/notification-network-wireless-low.png + Icons/Chicago95/notifications/48/notification-network-wireless-medium.png + Icons/Chicago95/notifications/48/notification-network-wireless-none.png + Icons/Chicago95/notifications/48/notification-power-disconnected.png + Icons/Chicago95/notifications/48/xfpm-brightness-keyboard.png + Icons/Chicago95/notifications/48/xfpm-brightness-lcd.png + Icons/Chicago95/panel/16/account-logged-in.png + Icons/Chicago95/panel/16/audio-input-microphone-high-panel.png + Icons/Chicago95/panel/16/audio-input-microphone-none-panel.png + Icons/Chicago95/panel/16/audio-volume-high.png + Icons/Chicago95/panel/16/audio-volume-low-zero.png + Icons/Chicago95/panel/16/audio-volume-low.png + Icons/Chicago95/panel/16/audio-volume-medium.png + Icons/Chicago95/panel/16/battery-000-charging.png + Icons/Chicago95/panel/16/battery-000.png + Icons/Chicago95/panel/16/battery-020-charging.png + Icons/Chicago95/panel/16/battery-040-charging.png + Icons/Chicago95/panel/16/battery-060-charging.png + Icons/Chicago95/panel/16/battery-080-charging.png + Icons/Chicago95/panel/16/battery-100-charging.png + Icons/Chicago95/panel/16/battery-caution-charging.png + Icons/Chicago95/panel/16/battery-caution-symbolic.png + Icons/Chicago95/panel/16/battery-caution.png + Icons/Chicago95/panel/16/battery-charged.png + Icons/Chicago95/panel/16/battery-empty-charging.png + Icons/Chicago95/panel/16/battery-empty-symbolic.png + Icons/Chicago95/panel/16/battery-empty.png + Icons/Chicago95/panel/16/battery-full-charged.png + Icons/Chicago95/panel/16/battery-full-charging.png + Icons/Chicago95/panel/16/battery-full-symbolic.png + Icons/Chicago95/panel/16/battery-full.png + Icons/Chicago95/panel/16/battery-good-charging.png + Icons/Chicago95/panel/16/battery-good-symbolic.png + Icons/Chicago95/panel/16/battery-good.png + Icons/Chicago95/panel/16/battery-low-charging.png + Icons/Chicago95/panel/16/battery-low-symbolic.png + Icons/Chicago95/panel/16/battery-low.png + Icons/Chicago95/panel/16/empathy-available.png + Icons/Chicago95/panel/16/empathy-away.png + Icons/Chicago95/panel/16/empathy-busy.png + Icons/Chicago95/panel/16/empathy-offline.png + Icons/Chicago95/panel/16/gnome-do-symbolic.png + Icons/Chicago95/panel/16/gpm-ac-adapter.png + Icons/Chicago95/panel/16/gpm-battery-000-charging.png + Icons/Chicago95/panel/16/gpm-battery-020-charging.png + Icons/Chicago95/panel/16/gpm-battery-040-charging.png + Icons/Chicago95/panel/16/gpm-battery-060-charging.png + Icons/Chicago95/panel/16/gpm-battery-080-charging.png + Icons/Chicago95/panel/16/gpm-battery-100-charging.png + Icons/Chicago95/panel/16/gpm-battery-charged.png + Icons/Chicago95/panel/16/gpm-inhibit.png + Icons/Chicago95/panel/16/gpm-keyboard-000.png + Icons/Chicago95/panel/16/gpm-keyboard-020.png + Icons/Chicago95/panel/16/gpm-keyboard-040.png + Icons/Chicago95/panel/16/gpm-keyboard-060.png + Icons/Chicago95/panel/16/gpm-keyboard-080.png + Icons/Chicago95/panel/16/gpm-keyboard-100.png + Icons/Chicago95/panel/16/gpm-mouse-000.png + Icons/Chicago95/panel/16/gpm-mouse-020.png + Icons/Chicago95/panel/16/gpm-mouse-040.png + Icons/Chicago95/panel/16/gpm-mouse-060.png + Icons/Chicago95/panel/16/gpm-mouse-080.png + Icons/Chicago95/panel/16/gpm-mouse-100.png + Icons/Chicago95/panel/16/gpm-primary-000.png + Icons/Chicago95/panel/16/gpm-primary-020.png + Icons/Chicago95/panel/16/gpm-primary-040.png + Icons/Chicago95/panel/16/gpm-primary-060.png + Icons/Chicago95/panel/16/gpm-primary-080.png + Icons/Chicago95/panel/16/gpm-primary-100.png + Icons/Chicago95/panel/16/gsd-xrandr.png + Icons/Chicago95/panel/16/gtg-panel.png + Icons/Chicago95/panel/16/haguichi-connected.png + Icons/Chicago95/panel/16/haguichi-connecting-1.png + Icons/Chicago95/panel/16/haguichi-connecting-2.png + Icons/Chicago95/panel/16/haguichi-disconnected.png + Icons/Chicago95/panel/16/im-message-new.png + Icons/Chicago95/panel/16/nm-device-wired.png + Icons/Chicago95/panel/16/nm-signal-0-secure.png + Icons/Chicago95/panel/16/nm-signal-0.png + Icons/Chicago95/panel/16/nm-signal-100-secure.png + Icons/Chicago95/panel/16/nm-signal-100.png + Icons/Chicago95/panel/16/nm-signal-25-secure.png + Icons/Chicago95/panel/16/nm-signal-25.png + Icons/Chicago95/panel/16/nm-signal-50-secure.png + Icons/Chicago95/panel/16/nm-signal-50.png + Icons/Chicago95/panel/16/nm-signal-75-secure.png + Icons/Chicago95/panel/16/nm-signal-75.png + Icons/Chicago95/panel/16/pidgin-tray-invisible.png + Icons/Chicago95/panel/16/system-restart-panel.png + Icons/Chicago95/panel/16/system-shutdown-panel-restart.png + Icons/Chicago95/panel/16/system-shutdown-panel.png + Icons/Chicago95/panel/16/user-available-panel.png + Icons/Chicago95/panel/16/xfpm-ac-adapter.png + Icons/Chicago95/panel/22/account-logged-in.png + Icons/Chicago95/panel/22/audio-input-microphone-high-panel.png + Icons/Chicago95/panel/22/audio-input-microphone-none-panel.png + Icons/Chicago95/panel/22/audio-output-none-panel.png + Icons/Chicago95/panel/22/audio-volume-high-panel.png + Icons/Chicago95/panel/22/audio-volume-low-panel.png + Icons/Chicago95/panel/22/audio-volume-low-zero-panel.png + Icons/Chicago95/panel/22/audio-volume-medium-panel.png + Icons/Chicago95/panel/22/audio-volume-muted-blocking-panel.png + Icons/Chicago95/panel/22/audio-volume-muted-panel.png + Icons/Chicago95/panel/22/banshee-panel.png + Icons/Chicago95/panel/22/bluetooth-active.png + Icons/Chicago95/panel/22/bluetooth-disabled.png + Icons/Chicago95/panel/22/bluetooth-paired.png + Icons/Chicago95/panel/22/caffeine-cup-empty.png + Icons/Chicago95/panel/22/caffeine-cup-full.png + Icons/Chicago95/panel/22/clipman.png + Icons/Chicago95/panel/22/dropboxstatus-busy.png + Icons/Chicago95/panel/22/dropboxstatus-busy2.png + Icons/Chicago95/panel/22/dropboxstatus-idle.png + Icons/Chicago95/panel/22/dropboxstatus-logo.png + Icons/Chicago95/panel/22/dropboxstatus-x.png + Icons/Chicago95/panel/22/gnome-do-symbolic.png + Icons/Chicago95/panel/22/gpm-ac-adapter.png + Icons/Chicago95/panel/22/gpm-battery-000-charging.png + Icons/Chicago95/panel/22/gpm-battery-000.png + Icons/Chicago95/panel/22/gpm-battery-020-charging.png + Icons/Chicago95/panel/22/gpm-battery-020.png + Icons/Chicago95/panel/22/gpm-battery-040-charging.png + Icons/Chicago95/panel/22/gpm-battery-040.png + Icons/Chicago95/panel/22/gpm-battery-060-charging.png + Icons/Chicago95/panel/22/gpm-battery-060.png + Icons/Chicago95/panel/22/gpm-battery-080-charging.png + Icons/Chicago95/panel/22/gpm-battery-080.png + Icons/Chicago95/panel/22/gpm-battery-100-charging.png + Icons/Chicago95/panel/22/gpm-battery-100.png + Icons/Chicago95/panel/22/gpm-battery-charged.png + Icons/Chicago95/panel/22/gpm-keyboard-000.png + Icons/Chicago95/panel/22/gpm-keyboard-020.png + Icons/Chicago95/panel/22/gpm-keyboard-040.png + Icons/Chicago95/panel/22/gpm-keyboard-060.png + Icons/Chicago95/panel/22/gpm-keyboard-080.png + Icons/Chicago95/panel/22/gpm-keyboard-100.png + Icons/Chicago95/panel/22/gpm-mouse-000.png + Icons/Chicago95/panel/22/gpm-mouse-020.png + Icons/Chicago95/panel/22/gpm-mouse-040.png + Icons/Chicago95/panel/22/gpm-mouse-060.png + Icons/Chicago95/panel/22/gpm-mouse-080.png + Icons/Chicago95/panel/22/gpm-mouse-100.png + Icons/Chicago95/panel/22/gpm-phone-000.png + Icons/Chicago95/panel/22/gpm-phone-020.png + Icons/Chicago95/panel/22/gpm-phone-040.png + Icons/Chicago95/panel/22/gpm-phone-060.png + Icons/Chicago95/panel/22/gpm-phone-080.png + Icons/Chicago95/panel/22/gpm-phone-100.png + Icons/Chicago95/panel/22/gsd-xrandr.png + Icons/Chicago95/panel/22/gsm-3g-full.png + Icons/Chicago95/panel/22/gsm-3g-high.png + Icons/Chicago95/panel/22/gsm-3g-low.png + Icons/Chicago95/panel/22/gsm-3g-medium.png + Icons/Chicago95/panel/22/gsm-3g-none.png + Icons/Chicago95/panel/22/gtg-panel.png + Icons/Chicago95/panel/22/gtk-dialog-authentication-panel.png + Icons/Chicago95/panel/22/haguichi-connected.png + Icons/Chicago95/panel/22/haguichi-connecting-1.png + Icons/Chicago95/panel/22/haguichi-connecting-2.png + Icons/Chicago95/panel/22/haguichi-disconnected.png + Icons/Chicago95/panel/22/indicator-messages.png + Icons/Chicago95/panel/22/nm-device-wired.png + Icons/Chicago95/panel/22/nm-no-connection.png + Icons/Chicago95/panel/22/nm-signal-0.png + Icons/Chicago95/panel/22/nm-signal-100.png + Icons/Chicago95/panel/22/nm-signal-25.png + Icons/Chicago95/panel/22/nm-signal-50.png + Icons/Chicago95/panel/22/nm-signal-75.png + Icons/Chicago95/panel/22/nm-vpn-lock.png + Icons/Chicago95/panel/22/nm-vpn-standalone-lock.png + Icons/Chicago95/panel/22/nm-wwan-tower.png + Icons/Chicago95/panel/22/onboard-mono.png + Icons/Chicago95/panel/22/pithos.png + Icons/Chicago95/panel/22/preferences-desktop-accessibility-panel.png + Icons/Chicago95/panel/22/rhythmbox-panel.png + Icons/Chicago95/panel/22/start-here.png + Icons/Chicago95/panel/22/steadyflow-alert-panel.png + Icons/Chicago95/panel/22/steadyflow-panel.png + Icons/Chicago95/panel/22/system-devices-panel-alert.png + Icons/Chicago95/panel/22/system-devices-panel-information.png + Icons/Chicago95/panel/22/system-devices-panel.png + Icons/Chicago95/panel/22/system-file-manager-panel.png + Icons/Chicago95/panel/22/system-restart-panel.png + Icons/Chicago95/panel/22/system-shutdown-panel-restart.png + Icons/Chicago95/panel/22/system-shutdown-panel.png + Icons/Chicago95/panel/22/tomboy-panel.png + Icons/Chicago95/panel/22/transmission-tray-icon.png + Icons/Chicago95/panel/22/ubuntuone-client-error.png + Icons/Chicago95/panel/22/ubuntuone-client-idle.png + Icons/Chicago95/panel/22/ubuntuone-client-offline.png + Icons/Chicago95/panel/22/ubuntuone-client-updating.png + Icons/Chicago95/panel/22/user-available-panel.png + Icons/Chicago95/panel/22/user-away-panel.png + Icons/Chicago95/panel/22/user-busy-panel.png + Icons/Chicago95/panel/22/user-idle-panel.png + Icons/Chicago95/panel/22/user-invisible-panel.png + Icons/Chicago95/panel/22/user-offline-panel.png + Icons/Chicago95/panel/22/xchat-panel.png + Icons/Chicago95/panel/22/xfpm-brightness-lcd.png + Icons/Chicago95/panel/22/xfpm-keyboard-030.png + Icons/Chicago95/panel/22/xfpm-mouse-030.png + Icons/Chicago95/panel/22/xfpm-phone-030.png + Icons/Chicago95/panel/24/account-logged-in.png + Icons/Chicago95/panel/24/audio-output-none-panel.png + Icons/Chicago95/panel/24/audio-volume-high-panel.png + Icons/Chicago95/panel/24/audio-volume-high.png + Icons/Chicago95/panel/24/audio-volume-low.png + Icons/Chicago95/panel/24/audio-volume-medium.png + Icons/Chicago95/panel/24/audio-volume-muted.png + Icons/Chicago95/panel/24/bluetooth-active.png + Icons/Chicago95/panel/24/bluetooth-disabled.png + Icons/Chicago95/panel/24/bluetooth-paired.png + Icons/Chicago95/panel/24/gpm-ac-adapter.png + Icons/Chicago95/panel/24/gpm-battery-000-charging.png + Icons/Chicago95/panel/24/gpm-battery-000.png + Icons/Chicago95/panel/24/gpm-battery-020-charging.png + Icons/Chicago95/panel/24/gpm-battery-020.png + Icons/Chicago95/panel/24/gpm-battery-040-charging.png + Icons/Chicago95/panel/24/gpm-battery-040.png + Icons/Chicago95/panel/24/gpm-battery-060-charging.png + Icons/Chicago95/panel/24/gpm-battery-060.png + Icons/Chicago95/panel/24/gpm-battery-080-charging.png + Icons/Chicago95/panel/24/gpm-battery-080.png + Icons/Chicago95/panel/24/gpm-battery-100-charging.png + Icons/Chicago95/panel/24/gpm-battery-100.png + Icons/Chicago95/panel/24/gpm-battery-charged.png + Icons/Chicago95/panel/24/gsd-xrandr.png + Icons/Chicago95/panel/24/haguichi-connected.png + Icons/Chicago95/panel/24/haguichi-connecting-1.png + Icons/Chicago95/panel/24/haguichi-connecting-2.png + Icons/Chicago95/panel/24/haguichi-disconnected.png + Icons/Chicago95/panel/24/nm-device-wired.png + Icons/Chicago95/panel/24/nm-no-connection.png + Icons/Chicago95/panel/24/nm-signal-0.png + Icons/Chicago95/panel/24/nm-signal-100.png + Icons/Chicago95/panel/24/nm-signal-25.png + Icons/Chicago95/panel/24/nm-signal-50.png + Icons/Chicago95/panel/24/nm-signal-75.png + Icons/Chicago95/panel/24/nm-vpn-lock.png + Icons/Chicago95/panel/24/nm-wwan-tower.png + Icons/Chicago95/panel/24/start-here.png + Icons/Chicago95/panel/24/user-available-panel.png + Icons/Chicago95/panel/48/gpm-ac-adapter.png + Icons/Chicago95/panel/48/gpm-mouse-000.png + Icons/Chicago95/panel/48/gpm-mouse-020.png + Icons/Chicago95/panel/48/gpm-mouse-040.png + Icons/Chicago95/panel/48/gpm-mouse-060.png + Icons/Chicago95/panel/48/gpm-mouse-080.png + Icons/Chicago95/panel/48/gpm-mouse-100.png + Icons/Chicago95/panel/48/gpm-phone-000.png + Icons/Chicago95/panel/48/gpm-phone-020.png + Icons/Chicago95/panel/48/gpm-phone-040.png + Icons/Chicago95/panel/48/gpm-phone-060.png + Icons/Chicago95/panel/48/gpm-phone-080.png + Icons/Chicago95/panel/48/gpm-phone-100.png + Icons/Chicago95/panel/48/nm-device-wired.png + Icons/Chicago95/panel/48/nm-signal-0.png + Icons/Chicago95/panel/48/nm-signal-100.png + Icons/Chicago95/panel/48/nm-signal-25.png + Icons/Chicago95/panel/48/nm-signal-50.png + Icons/Chicago95/panel/48/nm-signal-75.png + Icons/Chicago95/places/16/bookmark-missing.png + Icons/Chicago95/places/16/folder-recent.png + Icons/Chicago95/places/16/folder-remote.png + Icons/Chicago95/places/16/folder-saved-search.png + Icons/Chicago95/places/16/folder-tag.png + Icons/Chicago95/places/16/folder-visiting.png + Icons/Chicago95/places/16/folder.icon + Icons/Chicago95/places/16/folder.png + Icons/Chicago95/places/16/internet-radio.png + Icons/Chicago95/places/16/library-audiobook.png + Icons/Chicago95/places/16/library-places.png + Icons/Chicago95/places/16/library-podcast.png + Icons/Chicago95/places/16/mail-inbox.png + Icons/Chicago95/places/16/mail-mailbox.png + Icons/Chicago95/places/16/mail-outbox.png + Icons/Chicago95/places/16/mail-sent.png + Icons/Chicago95/places/16/network-server.png + Icons/Chicago95/places/16/playlist-automatic.png + Icons/Chicago95/places/16/playlist-queue.png + Icons/Chicago95/places/16/playlist-similar.png + Icons/Chicago95/places/16/playlist.png + Icons/Chicago95/places/16/start-here.png + Icons/Chicago95/places/16/user-desktop.png + Icons/Chicago95/places/16/user-home.png + Icons/Chicago95/places/16/user-trash-full.png + Icons/Chicago95/places/16/user-trash.png + Icons/Chicago95/places/22/bookmark-missing.png + Icons/Chicago95/places/22/folder-drag-accept.png + Icons/Chicago95/places/22/folder-recent.png + Icons/Chicago95/places/22/folder-remote.png + Icons/Chicago95/places/22/folder-saved-search.png + Icons/Chicago95/places/22/folder-visiting.png + Icons/Chicago95/places/22/folder.icon + Icons/Chicago95/places/22/folder.png + Icons/Chicago95/places/22/mail-inbox.png + Icons/Chicago95/places/22/mail-mailbox.png + Icons/Chicago95/places/22/mail-outbox.png + Icons/Chicago95/places/22/mail-sent.png + Icons/Chicago95/places/22/network-server.png + Icons/Chicago95/places/22/network-workgroup.png + Icons/Chicago95/places/22/start-here.png + Icons/Chicago95/places/22/stock_music-library.png + Icons/Chicago95/places/22/user-bookmarks.png + Icons/Chicago95/places/22/user-desktop.png + Icons/Chicago95/places/22/user-home.png + Icons/Chicago95/places/22/user-trash-full.png + Icons/Chicago95/places/22/user-trash.png + Icons/Chicago95/places/24/bookmark-missing.png + Icons/Chicago95/places/24/folder-drag-accept.png + Icons/Chicago95/places/24/folder-recent.png + Icons/Chicago95/places/24/folder-remote.png + Icons/Chicago95/places/24/folder-saved-search.png + Icons/Chicago95/places/24/folder-visiting.png + Icons/Chicago95/places/24/folder.icon + Icons/Chicago95/places/24/folder.png + Icons/Chicago95/places/24/mail-inbox.png + Icons/Chicago95/places/24/mail-mailbox.png + Icons/Chicago95/places/24/mail-outbox.png + Icons/Chicago95/places/24/mail-sent.png + Icons/Chicago95/places/24/network-server.png + Icons/Chicago95/places/24/network-workgroup.png + Icons/Chicago95/places/24/start-here.png + Icons/Chicago95/places/24/stock_music-library.png + Icons/Chicago95/places/24/user-bookmarks.png + Icons/Chicago95/places/24/user-desktop.png + Icons/Chicago95/places/24/user-home.png + Icons/Chicago95/places/24/user-trash-full.png + Icons/Chicago95/places/24/user-trash.png + Icons/Chicago95/places/32/bookmark-missing.png + Icons/Chicago95/places/32/folder-recent.png + Icons/Chicago95/places/32/folder-remote.png + Icons/Chicago95/places/32/folder-saved-search.png + Icons/Chicago95/places/32/folder-visiting.png + Icons/Chicago95/places/32/folder.png + Icons/Chicago95/places/32/mail-inbox.png + Icons/Chicago95/places/32/mail-mailbox.png + Icons/Chicago95/places/32/mail-outbox.png + Icons/Chicago95/places/32/network-server.png + Icons/Chicago95/places/32/network-workgroup.png + Icons/Chicago95/places/32/start-here.png + Icons/Chicago95/places/32/user-bookmarks.png + Icons/Chicago95/places/32/user-desktop.png + Icons/Chicago95/places/32/user-home.png + Icons/Chicago95/places/32/user-trash-full.png + Icons/Chicago95/places/32/user-trash.png + Icons/Chicago95/places/48/bookmark-missing.png + Icons/Chicago95/places/48/distributor-logo.png + Icons/Chicago95/places/48/folder-documents.png + Icons/Chicago95/places/48/folder-download.png + Icons/Chicago95/places/48/folder-drag-accept.png + Icons/Chicago95/places/48/folder-music.png + Icons/Chicago95/places/48/folder-pictures.png + Icons/Chicago95/places/48/folder-publicshare.png + Icons/Chicago95/places/48/folder-recent.png + Icons/Chicago95/places/48/folder-remote.png + Icons/Chicago95/places/48/folder-saved-search.png + Icons/Chicago95/places/48/folder-templates.png + Icons/Chicago95/places/48/folder-ubuntuone.png + Icons/Chicago95/places/48/folder-videos.png + Icons/Chicago95/places/48/folder-visiting.png + Icons/Chicago95/places/48/folder.png + Icons/Chicago95/places/48/mail-inbox.png + Icons/Chicago95/places/48/mail-mailbox.png + Icons/Chicago95/places/48/mail-outbox.png + Icons/Chicago95/places/48/network-server.png + Icons/Chicago95/places/48/stock_music-library.png + Icons/Chicago95/places/48/user-bookmarks.png + Icons/Chicago95/places/48/user-desktop.png + Icons/Chicago95/places/48/user-home.png + Icons/Chicago95/places/48/user-trash-full.png + Icons/Chicago95/places/48/user-trash.png + Icons/Chicago95/places/folder.icon + Icons/Chicago95/places/scalable/folder-remote.icon + Icons/Chicago95/places/scalable/folder.icon + Icons/Chicago95/status/12/not-starred.png + Icons/Chicago95/status/12/starred.png + Icons/Chicago95/status/16/appointment-missed.png + Icons/Chicago95/status/16/appointment-soon.png + Icons/Chicago95/status/16/aptdaemon-download.png + Icons/Chicago95/status/16/audio-volume-high.png + Icons/Chicago95/status/16/audio-volume-low.png + Icons/Chicago95/status/16/audio-volume-medium.png + Icons/Chicago95/status/16/audio-volume-muted.png + Icons/Chicago95/status/16/avatar-default.png + Icons/Chicago95/status/16/battery-060-charging.png + Icons/Chicago95/status/16/blueman-down-active.png + Icons/Chicago95/status/16/blueman-down-inactive.png + Icons/Chicago95/status/16/blueman-up-active.png + Icons/Chicago95/status/16/blueman-up-inactive.png + Icons/Chicago95/status/16/bluetooth-active.png + Icons/Chicago95/status/16/bluetooth-disabled.png + Icons/Chicago95/status/16/bluetooth-paired.png + Icons/Chicago95/status/16/dialog-error.png + Icons/Chicago95/status/16/dialog-information.png + Icons/Chicago95/status/16/dialog-password.png + Icons/Chicago95/status/16/dialog-question.png + Icons/Chicago95/status/16/dialog-warning.png + Icons/Chicago95/status/16/folder-drag-accept.png + Icons/Chicago95/status/16/folder-open.png + Icons/Chicago95/status/16/folder-visiting.png + Icons/Chicago95/status/16/gpm-inhibit.png + Icons/Chicago95/status/16/gpm-primary-000.png + Icons/Chicago95/status/16/gpm-primary-020.png + Icons/Chicago95/status/16/gpm-primary-040.png + Icons/Chicago95/status/16/gpm-primary-060.png + Icons/Chicago95/status/16/gpm-primary-080.png + Icons/Chicago95/status/16/gpm-primary-100.png + Icons/Chicago95/status/16/image-loading.png + Icons/Chicago95/status/16/image-missing.png + Icons/Chicago95/status/16/locked.png + Icons/Chicago95/status/16/mail-attachment.png + Icons/Chicago95/status/16/mail-forwarded.png + Icons/Chicago95/status/16/mail-read.png + Icons/Chicago95/status/16/mail-replied.png + Icons/Chicago95/status/16/mail-signed-verified.png + Icons/Chicago95/status/16/mail-signed.png + Icons/Chicago95/status/16/mail-unread.png + Icons/Chicago95/status/16/media-playlist-repeat-active.png + Icons/Chicago95/status/16/media-playlist-repeat.png + Icons/Chicago95/status/16/media-playlist-shuffle-active.png + Icons/Chicago95/status/16/media-playlist-shuffle.png + Icons/Chicago95/status/16/network-cellular-acquiring-symbolic.png + Icons/Chicago95/status/16/network-cellular-signal-excellent-symbolic.png + Icons/Chicago95/status/16/network-cellular-signal-good-symbolic.png + Icons/Chicago95/status/16/network-cellular-signal-none-symbolic.png + Icons/Chicago95/status/16/network-cellular-signal-ok-symbolic.png + Icons/Chicago95/status/16/network-cellular-signal-weak-symbolic.png + Icons/Chicago95/status/16/network-error.png + Icons/Chicago95/status/16/network-idle.png + Icons/Chicago95/status/16/network-offline.png + Icons/Chicago95/status/16/network-receive.png + Icons/Chicago95/status/16/network-transmit-receive.png + Icons/Chicago95/status/16/network-transmit.png + Icons/Chicago95/status/16/network-wireless-encrypted.png + Icons/Chicago95/status/16/not-starred.png + Icons/Chicago95/status/16/printer-error.png + Icons/Chicago95/status/16/printer-printing.png + Icons/Chicago95/status/16/security-high.png + Icons/Chicago95/status/16/security-low.png + Icons/Chicago95/status/16/security-medium.png + Icons/Chicago95/status/16/software-update-available.png + Icons/Chicago95/status/16/software-update-urgent.png + Icons/Chicago95/status/16/starred.png + Icons/Chicago95/status/16/task-due.png + Icons/Chicago95/status/16/task-past-due.png + Icons/Chicago95/status/16/user-available.png + Icons/Chicago95/status/16/user-away.png + Icons/Chicago95/status/16/user-busy.png + Icons/Chicago95/status/16/user-invisible.png + Icons/Chicago95/status/16/user-offline.png + Icons/Chicago95/status/16/user-trash-full.png + Icons/Chicago95/status/16/user-typing.png + Icons/Chicago95/status/16/weather-clear-night.png + Icons/Chicago95/status/16/weather-clear.png + Icons/Chicago95/status/16/weather-few-clouds-night.png + Icons/Chicago95/status/16/weather-few-clouds.png + Icons/Chicago95/status/16/weather-fog.png + Icons/Chicago95/status/16/weather-overcast.png + Icons/Chicago95/status/16/weather-severe-alert.png + Icons/Chicago95/status/16/weather-showers-scattered.png + Icons/Chicago95/status/16/weather-showers.png + Icons/Chicago95/status/16/weather-snow.png + Icons/Chicago95/status/16/weather-storm.png + Icons/Chicago95/status/16/xfpm-brightness-lcd.png + Icons/Chicago95/status/22/appointment-missed.png + Icons/Chicago95/status/22/appointment-soon.png + Icons/Chicago95/status/22/audio-volume-high.png + Icons/Chicago95/status/22/audio-volume-low.png + Icons/Chicago95/status/22/audio-volume-medium.png + Icons/Chicago95/status/22/audio-volume-muted.png + Icons/Chicago95/status/22/battery-caution.png + Icons/Chicago95/status/22/battery-low.png + Icons/Chicago95/status/22/dialog-error.png + Icons/Chicago95/status/22/dialog-information.png + Icons/Chicago95/status/22/dialog-password.png + Icons/Chicago95/status/22/dialog-question.png + Icons/Chicago95/status/22/dialog-warning.png + Icons/Chicago95/status/22/folder-drag-accept.png + Icons/Chicago95/status/22/folder-open.png + Icons/Chicago95/status/22/folder-visiting.png + Icons/Chicago95/status/22/gpm-inhibit.png + Icons/Chicago95/status/22/image-loading.png + Icons/Chicago95/status/22/image-missing.png + Icons/Chicago95/status/22/locked.png + Icons/Chicago95/status/22/mail-attachment.png + Icons/Chicago95/status/22/mail-read.png + Icons/Chicago95/status/22/mail-replied.png + Icons/Chicago95/status/22/mail-signed-verified.png + Icons/Chicago95/status/22/mail-unread.png + Icons/Chicago95/status/22/media-playlist-repeat.png + Icons/Chicago95/status/22/media-playlist-shuffle.png + Icons/Chicago95/status/22/network-error.png + Icons/Chicago95/status/22/network-idle.png + Icons/Chicago95/status/22/network-offline.png + Icons/Chicago95/status/22/network-receive.png + Icons/Chicago95/status/22/network-transmit-receive.png + Icons/Chicago95/status/22/network-transmit.png + Icons/Chicago95/status/22/network-wireless-encrypted.png + Icons/Chicago95/status/22/printer-error.png + Icons/Chicago95/status/22/printer-printing.png + Icons/Chicago95/status/22/security-high.png + Icons/Chicago95/status/22/security-low.png + Icons/Chicago95/status/22/security-medium.png + Icons/Chicago95/status/22/software-update-available.png + Icons/Chicago95/status/22/software-update-urgent.png + Icons/Chicago95/status/22/task-due.png + Icons/Chicago95/status/22/task-past-due.png + Icons/Chicago95/status/22/user-trash-full.png + Icons/Chicago95/status/22/weather-clear-night.png + Icons/Chicago95/status/22/weather-clear.png + Icons/Chicago95/status/22/weather-few-clouds-night.png + Icons/Chicago95/status/22/weather-few-clouds.png + Icons/Chicago95/status/22/weather-fog.png + Icons/Chicago95/status/22/weather-overcast.png + Icons/Chicago95/status/22/weather-severe-alert.png + Icons/Chicago95/status/22/weather-showers-scattered.png + Icons/Chicago95/status/22/weather-showers.png + Icons/Chicago95/status/22/weather-snow.png + Icons/Chicago95/status/22/weather-storm.png + Icons/Chicago95/status/24/appointment-missed.png + Icons/Chicago95/status/24/appointment-soon.png + Icons/Chicago95/status/24/aptdaemon-download.png + Icons/Chicago95/status/24/audio-volume-high.png + Icons/Chicago95/status/24/audio-volume-low.png + Icons/Chicago95/status/24/audio-volume-medium.png + Icons/Chicago95/status/24/audio-volume-muted.png + Icons/Chicago95/status/24/avatar-default.png + Icons/Chicago95/status/24/battery-caution.png + Icons/Chicago95/status/24/battery-low.png + Icons/Chicago95/status/24/dialog-error.png + Icons/Chicago95/status/24/dialog-information.png + Icons/Chicago95/status/24/dialog-password.png + Icons/Chicago95/status/24/dialog-question.png + Icons/Chicago95/status/24/dialog-warning.png + Icons/Chicago95/status/24/folder-drag-accept.icon + Icons/Chicago95/status/24/folder-drag-accept.png + Icons/Chicago95/status/24/folder-open.png + Icons/Chicago95/status/24/folder-visiting.icon + Icons/Chicago95/status/24/folder-visiting.png + Icons/Chicago95/status/24/gpm-inhibit.png + Icons/Chicago95/status/24/image-loading.png + Icons/Chicago95/status/24/image-missing.png + Icons/Chicago95/status/24/locked.png + Icons/Chicago95/status/24/mail-attachment.png + Icons/Chicago95/status/24/mail-read.png + Icons/Chicago95/status/24/mail-replied.png + Icons/Chicago95/status/24/mail-signed-verified.png + Icons/Chicago95/status/24/mail-signed.png + Icons/Chicago95/status/24/mail-unread.png + Icons/Chicago95/status/24/media-playlist-repeat.png + Icons/Chicago95/status/24/media-playlist-shuffle.png + Icons/Chicago95/status/24/network-error.png + Icons/Chicago95/status/24/network-idle.png + Icons/Chicago95/status/24/network-offline.png + Icons/Chicago95/status/24/network-receive.png + Icons/Chicago95/status/24/network-transmit-receive.png + Icons/Chicago95/status/24/network-transmit.png + Icons/Chicago95/status/24/network-wireless-encrypted.png + Icons/Chicago95/status/24/printer-error.png + Icons/Chicago95/status/24/printer-printing.png + Icons/Chicago95/status/24/security-high.png + Icons/Chicago95/status/24/security-low.png + Icons/Chicago95/status/24/security-medium.png + Icons/Chicago95/status/24/software-update-available.png + Icons/Chicago95/status/24/software-update-urgent.png + Icons/Chicago95/status/24/task-due.png + Icons/Chicago95/status/24/task-past-due.png + Icons/Chicago95/status/24/user-trash-full.png + Icons/Chicago95/status/24/weather-clear-night.png + Icons/Chicago95/status/24/weather-clear.png + Icons/Chicago95/status/24/weather-few-clouds-night.png + Icons/Chicago95/status/24/weather-few-clouds.png + Icons/Chicago95/status/24/weather-fog.png + Icons/Chicago95/status/24/weather-overcast.png + Icons/Chicago95/status/24/weather-severe-alert.png + Icons/Chicago95/status/24/weather-showers-scattered.png + Icons/Chicago95/status/24/weather-showers.png + Icons/Chicago95/status/24/weather-snow.png + Icons/Chicago95/status/24/weather-storm.png + Icons/Chicago95/status/32/appointment-missed.png + Icons/Chicago95/status/32/appointment-soon.png + Icons/Chicago95/status/32/apport.png + Icons/Chicago95/status/32/aptdaemon-down.png + Icons/Chicago95/status/32/audio-volume-high.png + Icons/Chicago95/status/32/audio-volume-low.png + Icons/Chicago95/status/32/audio-volume-medium.png + Icons/Chicago95/status/32/audio-volume-muted.png + Icons/Chicago95/status/32/avatar-default.png + Icons/Chicago95/status/32/battery-000-charging.png + Icons/Chicago95/status/32/battery-020-charging.png + Icons/Chicago95/status/32/battery-040-charging.png + Icons/Chicago95/status/32/battery-060-charging.png + Icons/Chicago95/status/32/battery-080-charging.png + Icons/Chicago95/status/32/battery-100-charging.png + Icons/Chicago95/status/32/bluetooth-active-disabled-symbolic.png + Icons/Chicago95/status/32/bluetooth-active-symbolic.png + Icons/Chicago95/status/32/bluetooth-active.png + Icons/Chicago95/status/32/bluetooth-disabled.png + Icons/Chicago95/status/32/bluetooth-paired.png + Icons/Chicago95/status/32/dialog-error.png + Icons/Chicago95/status/32/dialog-information.png + Icons/Chicago95/status/32/dialog-password.png + Icons/Chicago95/status/32/dialog-question.png + Icons/Chicago95/status/32/dialog-warning.png + Icons/Chicago95/status/32/folder-drag-accept.png + Icons/Chicago95/status/32/folder-open.png + Icons/Chicago95/status/32/folder-visiting.png + Icons/Chicago95/status/32/gpm-primary-000.png + Icons/Chicago95/status/32/gpm-primary-020.png + Icons/Chicago95/status/32/gpm-primary-040.png + Icons/Chicago95/status/32/gpm-primary-060.png + Icons/Chicago95/status/32/gpm-primary-080.png + Icons/Chicago95/status/32/gpm-primary-100.png + Icons/Chicago95/status/32/image-loading.png + Icons/Chicago95/status/32/image-missing.png + Icons/Chicago95/status/32/locked.png + Icons/Chicago95/status/32/mail-attachment.png + Icons/Chicago95/status/32/mail-read.png + Icons/Chicago95/status/32/mail-replied.png + Icons/Chicago95/status/32/mail-unread.png + Icons/Chicago95/status/32/media-playlist-repeat.png + Icons/Chicago95/status/32/media-playlist-shuffle.png + Icons/Chicago95/status/32/network-cellular-acquiring-symbolic.png + Icons/Chicago95/status/32/network-cellular-signal-excellent-symbolic.png + Icons/Chicago95/status/32/network-cellular-signal-good-symbolic.png + Icons/Chicago95/status/32/network-cellular-signal-none-symbolic.png + Icons/Chicago95/status/32/network-cellular-signal-ok-symbolic.png + Icons/Chicago95/status/32/network-cellular-signal-weak-symbolic.png + Icons/Chicago95/status/32/network-error.png + Icons/Chicago95/status/32/network-idle.png + Icons/Chicago95/status/32/network-offline.png + Icons/Chicago95/status/32/network-receive.png + Icons/Chicago95/status/32/network-transmit-receive.png + Icons/Chicago95/status/32/network-transmit.png + Icons/Chicago95/status/32/printer-error.png + Icons/Chicago95/status/32/printer-printing.png + Icons/Chicago95/status/32/security-high.png + Icons/Chicago95/status/32/security-low.png + Icons/Chicago95/status/32/security-medium.png + Icons/Chicago95/status/32/software-update-available.png + Icons/Chicago95/status/32/software-update-urgent.png + Icons/Chicago95/status/32/task-due.png + Icons/Chicago95/status/32/task-past-due.png + Icons/Chicago95/status/32/user-trash-full.png + Icons/Chicago95/status/32/weather-clear-night.png + Icons/Chicago95/status/32/weather-clear.png + Icons/Chicago95/status/32/weather-few-clouds-night.png + Icons/Chicago95/status/32/weather-few-clouds.png + Icons/Chicago95/status/32/weather-fog.png + Icons/Chicago95/status/32/weather-overcast.png + Icons/Chicago95/status/32/weather-severe-alert.png + Icons/Chicago95/status/32/weather-showers-scattered.png + Icons/Chicago95/status/32/weather-showers.png + Icons/Chicago95/status/32/weather-snow.png + Icons/Chicago95/status/32/weather-storm.png + Icons/Chicago95/status/32/xfpm-brightness-lcd.png + Icons/Chicago95/status/48/aptdaemon-delete.png + Icons/Chicago95/status/48/aptdaemon-download.png + Icons/Chicago95/status/48/aptdaemon-setup.png + Icons/Chicago95/status/48/aptdaemon-upgrade.png + Icons/Chicago95/status/48/avatar-default.png + Icons/Chicago95/status/48/battery-000-charging.png + Icons/Chicago95/status/48/battery-000.png + Icons/Chicago95/status/48/battery-020-charging.png + Icons/Chicago95/status/48/battery-020.png + Icons/Chicago95/status/48/battery-040-charging.png + Icons/Chicago95/status/48/battery-040.png + Icons/Chicago95/status/48/battery-060-charging.png + Icons/Chicago95/status/48/battery-060.png + Icons/Chicago95/status/48/battery-080-charging.png + Icons/Chicago95/status/48/battery-080.png + Icons/Chicago95/status/48/battery-100-charging.png + Icons/Chicago95/status/48/battery-100.png + Icons/Chicago95/status/48/battery-ac-adapter.png + Icons/Chicago95/status/48/battery-missing.png + Icons/Chicago95/status/48/dialog-error.png + Icons/Chicago95/status/48/dialog-warning.png + Icons/Chicago95/status/48/image-loading.png + Icons/Chicago95/status/48/image-missing.png + Icons/Chicago95/status/48/locked.png + Icons/Chicago95/status/48/mail-unread.png + Icons/Chicago95/status/48/network-error.png + Icons/Chicago95/status/48/network-idle.png + Icons/Chicago95/status/48/network-offline.png + Icons/Chicago95/status/48/network-receive.png + Icons/Chicago95/status/48/network-transmit-receive.png + Icons/Chicago95/status/48/network-transmit.png + Icons/Chicago95/status/48/network-wireless-00.png + Icons/Chicago95/status/48/network-wireless-100.png + Icons/Chicago95/status/48/network-wireless-25.png + Icons/Chicago95/status/48/network-wireless-50.png + Icons/Chicago95/status/48/network-wireless-75.png + Icons/Chicago95/status/48/printer-error.png + Icons/Chicago95/status/48/security-high.png + Icons/Chicago95/status/48/security-low.png + Icons/Chicago95/status/48/security-medium.png + Icons/Chicago95/status/48/software-update-available.png + Icons/Chicago95/status/48/software-update-urgent.png + Icons/Chicago95/status/scalable/folder-drag-accept.icon + Icons/Chicago95/status/scalable/folder-visiting.icon + Icons/Chicago95/status/symbolic/audio-volume-high-symbolic.png + Icons/Chicago95/status/symbolic/audio-volume-low-symbolic.png + Icons/Chicago95/status/symbolic/audio-volume-medium-symbolic.png + Icons/Chicago95/status/symbolic/audio-volume-muted-symbolic.png + Icons/Chicago95/status/symbolic/audio-volume-off-symbolic.png + Icons/Chicago95/status/symbolic/battery-caution-charging-symbolic.png + Icons/Chicago95/status/symbolic/battery-caution-symbolic.png + Icons/Chicago95/status/symbolic/battery-empty-charging-symbolic.png + Icons/Chicago95/status/symbolic/battery-empty-symbolic.png + Icons/Chicago95/status/symbolic/battery-full-charged-symbolic.png + Icons/Chicago95/status/symbolic/battery-full-charging-symbolic.png + Icons/Chicago95/status/symbolic/battery-full-symbolic.png + Icons/Chicago95/status/symbolic/battery-good-charging-symbolic.png + Icons/Chicago95/status/symbolic/battery-good-symbolic.png + Icons/Chicago95/status/symbolic/battery-low-charging-symbolic.png + Icons/Chicago95/status/symbolic/battery-low-symbolic.png + Icons/Chicago95/status/symbolic/battery-missing-symbolic.png + Icons/Chicago95/status/symbolic/notification-disabled-symbolic.png + Icons/Chicago95/status/symbolic/notification-new-symbolic.png + Icons/Chicago95/status/symbolic/notification-symbolic.png + Icons/Chicago95/stock/16/SC-categories-fonts.png + Icons/Chicago95/stock/16/stock_network-printer.png + Icons/Chicago95/stock/16/stock_people.png + Icons/Chicago95/stock/16/stock_person.png + Icons/Chicago95/stock/22/stock_person.png + Icons/Chicago95/stock/32/SC-categories-fonts.png + Icons/Chicago95/stock/32/stock_network-printer.png + Icons/Chicago95/stock/32/stock_people.png + Icons/Chicago95/stock/32/stock_person.png + Icons/Chicago95/stock/48/stock_network-printer.png + Icons/Chicago95/stock/48/stock_people.png + Icons/Chicago95/stock/48/stock_person.png + KDE/SDDM/Chicago95.tar.gz + KDE/Splash/chicago95.splashscreen/README .md + KDE/Splash/chicago95.splashscreen/contents/defaults + KDE/Splash/chicago95.splashscreen/contents/previews/splash.png + KDE/Splash/chicago95.splashscreen/contents/splash/Splash.qml + KDE/Splash/chicago95.splashscreen/contents/splash/Splash.qmlc + KDE/Splash/chicago95.splashscreen/contents/splash/images/background.jpg + KDE/Splash/chicago95.splashscreen/metadata.desktop + Lightdm/Chicago95/README.md + Lightdm/Chicago95/css/clearfix.css + Lightdm/Chicago95/css/layout.css + Lightdm/Chicago95/css/normalize.css + Lightdm/Chicago95/img/close_normal.png + Lightdm/Chicago95/img/start.png + Lightdm/Chicago95/index.theme + Lightdm/Chicago95/js/main.js + Lightdm/Chicago95/js/mock.js + Plymouth/Chicago95/Chicago95.plymouth + Plymouth/Chicago95/Chicago95.script + Plymouth/Chicago95/box.png + Plymouth/Chicago95/entry.png + Plymouth/Chicago95/lock.png + Plymouth/Chicago95/progress_bar.png + Plymouth/Chicago95/progress_box.png + Plymouth/Chicago95/win95_boot_0.png + Plymouth/Chicago95/win95_boot_1.png + Plymouth/Chicago95/win95_boot_10.png + Plymouth/Chicago95/win95_boot_11.png + Plymouth/Chicago95/win95_boot_12.png + Plymouth/Chicago95/win95_boot_13.png + Plymouth/Chicago95/win95_boot_14.png + Plymouth/Chicago95/win95_boot_15.png + Plymouth/Chicago95/win95_boot_16.png + Plymouth/Chicago95/win95_boot_17.png + Plymouth/Chicago95/win95_boot_18.png + Plymouth/Chicago95/win95_boot_19.png + Plymouth/Chicago95/win95_boot_2.png + Plymouth/Chicago95/win95_boot_3.png + Plymouth/Chicago95/win95_boot_4.png + Plymouth/Chicago95/win95_boot_5.png + Plymouth/Chicago95/win95_boot_6.png + Plymouth/Chicago95/win95_boot_7.png + Plymouth/Chicago95/win95_boot_8.png + Plymouth/Chicago95/win95_boot_9.png + Plymouth/Chicago95/win95_shutdown-01.png + Plymouth/Readme.md + Plymouth/RetroTux/RetroTux.plymouth + Plymouth/RetroTux/fsck-fade.png + Plymouth/RetroTux/fsck-fade_16bit.png + Plymouth/RetroTux/install.txt + Plymouth/RetroTux/logo.png + Plymouth/RetroTux/logo_16bit.png + Plymouth/RetroTux/passw-dialog.png + Plymouth/RetroTux/progress-fade.png + Plymouth/RetroTux/progress-fade_16bit.png + Plymouth/RetroTux/progress-meter.png + Plymouth/RetroTux/progress-meter_16bit.png + Plymouth/RetroTux/spinner.png + Plymouth/RetroTux/test.png + Plymouth/RetroTux/wallpaper.png + README.md + Screenshots/Chicago95_Desktop.png + Screenshots/Desktop0.png + Screenshots/Desktop1.png + Screenshots/Desktop2.png + Screenshots/Desktop3.png + Screenshots/Desktop4.png + Screenshots/SCREENSHOTS.md + Screenshots/awf-gtk2.png + Screenshots/awf-gtk3.png + Screenshots/lightdm_theme.png + Screenshots/plymouth.gif + Screenshots/retrotux.png + Theme/Chicago95/gnome-shell/_colors.scss + Theme/Chicago95/gnome-shell/_drawing.scss + Theme/Chicago95/gnome-shell/assets-render/assets/checkbox-checked.png + Theme/Chicago95/gnome-shell/assets-render/assets/checkbox-checked@2.png + Theme/Chicago95/gnome-shell/assets-render/assets/checkbox-unchecked.png + Theme/Chicago95/gnome-shell/assets-render/assets/checkbox-unchecked@2.png + Theme/Chicago95/gnome-shell/assets-render/assets/radio-selected.png + Theme/Chicago95/gnome-shell/assets-render/assets/radio-selected@2.png + Theme/Chicago95/gnome-shell/assets-render/assets/radio-unselected.png + Theme/Chicago95/gnome-shell/assets-render/assets/radio-unselected@2.png + Theme/Chicago95/gnome-shell/assets-render/render-assets.sh + Theme/Chicago95/gnome-shell/assets/arrow-left.png + Theme/Chicago95/gnome-shell/assets/arrow-right.png + Theme/Chicago95/gnome-shell/assets/box-active.png + Theme/Chicago95/gnome-shell/assets/box-empty.png + Theme/Chicago95/gnome-shell/assets/box-inset.png + Theme/Chicago95/gnome-shell/assets/box.png + Theme/Chicago95/gnome-shell/assets/checkbox-checked.png + Theme/Chicago95/gnome-shell/assets/checkbox-unchecked.png + Theme/Chicago95/gnome-shell/assets/close-active.png + Theme/Chicago95/gnome-shell/assets/close-normal.png + Theme/Chicago95/gnome-shell/assets/entry.png + Theme/Chicago95/gnome-shell/assets/radio-checked.png + Theme/Chicago95/gnome-shell/assets/radio-unchecked.png + Theme/Chicago95/gnome-shell/assets/start.png + Theme/Chicago95/gnome-shell/assets/toggle-off.png + Theme/Chicago95/gnome-shell/assets/toggle-on.png + Theme/Chicago95/gtk-2.0/Check-Radio/checkbox-checked-insensitive.png + Theme/Chicago95/gtk-2.0/Check-Radio/checkbox-checked.png + Theme/Chicago95/gtk-2.0/Check-Radio/checkbox-unchecked-insensitive.png + Theme/Chicago95/gtk-2.0/Check-Radio/checkbox-unchecked.png + Theme/Chicago95/gtk-2.0/Check-Radio/menucheck.png + Theme/Chicago95/gtk-2.0/Check-Radio/menucheck_prelight.png + Theme/Chicago95/gtk-2.0/Check-Radio/menuoption.png + Theme/Chicago95/gtk-2.0/Check-Radio/menuoption_prelight.png + Theme/Chicago95/gtk-2.0/Check-Radio/null.png + Theme/Chicago95/gtk-2.0/Check-Radio/option-checked-insensitive.png + Theme/Chicago95/gtk-2.0/Check-Radio/option-checked.png + Theme/Chicago95/gtk-2.0/Check-Radio/option-unchecked-insensitive.png + Theme/Chicago95/gtk-2.0/Check-Radio/option-unchecked.png + Theme/Chicago95/gtk-2.0/Handles/handle-h.png + Theme/Chicago95/gtk-2.0/Handles/handle-v.png + Theme/Chicago95/gtk-2.0/Others/null.png + Theme/Chicago95/gtk-2.0/Range/slider-horiz-insense.png + Theme/Chicago95/gtk-2.0/Range/slider-horiz.png + Theme/Chicago95/gtk-2.0/Range/slider-vert-insense.png + Theme/Chicago95/gtk-2.0/Range/slider-vert.png + Theme/Chicago95/gtk-2.0/Range/trough-horizontal.png + Theme/Chicago95/gtk-2.0/Range/trough-vertical.png + Theme/Chicago95/gtk-2.0/Shadows/frame.png + Theme/Chicago95/gtk-2.0/arrows/arrow-down-insens.png + Theme/Chicago95/gtk-2.0/arrows/arrow-down.png + Theme/Chicago95/gtk-2.0/arrows/arrow-left-insens.png + Theme/Chicago95/gtk-2.0/arrows/arrow-left.png + Theme/Chicago95/gtk-2.0/arrows/arrow-right-insens.png + Theme/Chicago95/gtk-2.0/arrows/arrow-right.png + Theme/Chicago95/gtk-2.0/arrows/arrow-up-insens.png + Theme/Chicago95/gtk-2.0/arrows/arrow-up.png + Theme/Chicago95/gtk-2.0/arrows/combobox-active.png + Theme/Chicago95/gtk-2.0/arrows/combobox.png + Theme/Chicago95/gtk-2.0/arrows/menu-arrow-prelight.png + Theme/Chicago95/gtk-2.0/button.rc + Theme/Chicago95/gtk-2.0/button.rc.bak + Theme/Chicago95/gtk-2.0/button.rc.bak2 + Theme/Chicago95/gtk-2.0/button/button-active.png + Theme/Chicago95/gtk-2.0/button/button-default.png + Theme/Chicago95/gtk-2.0/combobox.rc + Theme/Chicago95/gtk-2.0/entry/button-active-prelight.png + Theme/Chicago95/gtk-2.0/entry/button-default.png + Theme/Chicago95/gtk-2.0/entry/button-inactive.png + Theme/Chicago95/gtk-2.0/entry/button-prelight.png + Theme/Chicago95/gtk-2.0/entry/combo-active.png + Theme/Chicago95/gtk-2.0/entry/combo-arrow-insens.png + Theme/Chicago95/gtk-2.0/entry/combo-arrow-prelight.png + Theme/Chicago95/gtk-2.0/entry/combo-arrow.png + Theme/Chicago95/gtk-2.0/entry/combo-inactive.png + Theme/Chicago95/gtk-2.0/entry/combo-normal.png + Theme/Chicago95/gtk-2.0/entry/combo-prelight.png + Theme/Chicago95/gtk-2.0/entry/combo-pressed.png + Theme/Chicago95/gtk-2.0/entry/combobox-active.png + Theme/Chicago95/gtk-2.0/entry/entry-active.png + Theme/Chicago95/gtk-2.0/entry/entry-button-active.png + Theme/Chicago95/gtk-2.0/entry/entry-button-normal.png + Theme/Chicago95/gtk-2.0/entry/entry-inactive.png + Theme/Chicago95/gtk-2.0/entry/entry-shadow-in (copia).png + Theme/Chicago95/gtk-2.0/entry/entry-shadow-in.png + Theme/Chicago95/gtk-2.0/entry/text-entry.png + Theme/Chicago95/gtk-2.0/gtkrc + Theme/Chicago95/gtk-2.0/menu_item.rc + Theme/Chicago95/gtk-2.0/menubar.rc + Theme/Chicago95/gtk-2.0/menubar/line-h.png + Theme/Chicago95/gtk-2.0/menubar/line-v.png + Theme/Chicago95/gtk-2.0/menubar/menu.png + Theme/Chicago95/gtk-2.0/menubar/menubar.png + Theme/Chicago95/gtk-2.0/menubar/menuitem.png + Theme/Chicago95/gtk-2.0/panel.rc + Theme/Chicago95/gtk-2.0/panel/launcher-button-active.png + Theme/Chicago95/gtk-2.0/panel/panel-bg.png + Theme/Chicago95/gtk-2.0/panel/panel-bg2.png + Theme/Chicago95/gtk-2.0/panel/panel-bg3.png + Theme/Chicago95/gtk-2.0/panel/panel-button-active.png + Theme/Chicago95/gtk-2.0/panel/prelight.png + Theme/Chicago95/gtk-2.0/panel/start-button-shade.png + Theme/Chicago95/gtk-2.0/panel/start.png + Theme/Chicago95/gtk-2.0/progress.rc + Theme/Chicago95/gtk-2.0/progress/progress-horiz.png + Theme/Chicago95/gtk-2.0/progress/progress-vert.png + Theme/Chicago95/gtk-2.0/progress/progress.png + Theme/Chicago95/gtk-2.0/range/null.png + Theme/Chicago95/gtk-2.0/range/slider-horiz-insense.png + Theme/Chicago95/gtk-2.0/range/slider-horiz.png + Theme/Chicago95/gtk-2.0/range/slider-vert-insense.png + Theme/Chicago95/gtk-2.0/range/slider-vert.png + Theme/Chicago95/gtk-2.0/range/trough-horiz.png + Theme/Chicago95/gtk-2.0/range/trough-vert.png + Theme/Chicago95/gtk-2.0/scrollbar.rc + Theme/Chicago95/gtk-2.0/scrollbar/insense.png + Theme/Chicago95/gtk-2.0/scrollbar/slider-horiz.png + Theme/Chicago95/gtk-2.0/scrollbar/slider-vert.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-down-active.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-down-insense.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-down.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-left-active.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-left-insense.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-left.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-right-active.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-right-insense.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-right.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-up-active.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-up-insense.png + Theme/Chicago95/gtk-2.0/scrollbar/stepper-up.png + Theme/Chicago95/gtk-2.0/scrollbar/trough-scrollbar-horiz.png + Theme/Chicago95/gtk-2.0/scrollbar/trough-scrollbar-vert.png + Theme/Chicago95/gtk-2.0/slider.rc + Theme/Chicago95/gtk-2.0/tabs.rc + Theme/Chicago95/gtk-2.0/tabs/tab-bottom-active.png + Theme/Chicago95/gtk-2.0/tabs/tab-bottom.png + Theme/Chicago95/gtk-2.0/tabs/tab-left-active.png + Theme/Chicago95/gtk-2.0/tabs/tab-left.png + Theme/Chicago95/gtk-2.0/tabs/tab-right-active.png + Theme/Chicago95/gtk-2.0/tabs/tab-right.png + Theme/Chicago95/gtk-2.0/tabs/tab-top-active.png + Theme/Chicago95/gtk-2.0/tabs/tab-top.png + Theme/Chicago95/gtk-2.0/tabwin.rc + Theme/Chicago95/gtk-2.0/tabwin/panel-bg.png + Theme/Chicago95/gtk-2.0/tabwin/tabwin.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-active-prelight.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-active.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-default.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-inactive.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-normal.png + Theme/Chicago95/gtk-2.0/toolbar/button-toolbar-prelight.png + Theme/Chicago95/gtk-2.0/toolbar/handlebox-h.png + Theme/Chicago95/gtk-2.0/toolbar/handlebox-v.png + Theme/Chicago95/gtk-2.0/toolbar/handlebox.png + Theme/Chicago95/gtk-2.0/toolbar/toolbar.png + Theme/Chicago95/gtk-2.0/toolbutton.rc + Theme/Chicago95/gtk-3.0/apps/filechooser.css + Theme/Chicago95/gtk-3.0/apps/lightdm-gtk-greeter.css + Theme/Chicago95/gtk-3.0/apps/mate.css + Theme/Chicago95/gtk-3.0/apps/synaptic.css + Theme/Chicago95/gtk-3.0/apps/whiskermenu.css + Theme/Chicago95/gtk-3.0/apps/xfce.css + Theme/Chicago95/gtk-3.0/assets/arrow-down(2).png + Theme/Chicago95/gtk-3.0/assets/arrow-down-disabled.png + Theme/Chicago95/gtk-3.0/assets/arrow-down-selected.png + Theme/Chicago95/gtk-3.0/assets/arrow-down.png + Theme/Chicago95/gtk-3.0/assets/arrow-left-disabled.png + Theme/Chicago95/gtk-3.0/assets/arrow-left-hover_small.png + Theme/Chicago95/gtk-3.0/assets/arrow-left-selected.png + Theme/Chicago95/gtk-3.0/assets/arrow-left.png + Theme/Chicago95/gtk-3.0/assets/arrow-left_small.png + Theme/Chicago95/gtk-3.0/assets/arrow-right-disabled.png + Theme/Chicago95/gtk-3.0/assets/arrow-right-hover_small.png + Theme/Chicago95/gtk-3.0/assets/arrow-right-selected.png + Theme/Chicago95/gtk-3.0/assets/arrow-right.png + Theme/Chicago95/gtk-3.0/assets/arrow-right_small.png + Theme/Chicago95/gtk-3.0/assets/arrow-up-disabled.png + Theme/Chicago95/gtk-3.0/assets/arrow-up-selected.png + Theme/Chicago95/gtk-3.0/assets/arrow-up.png + Theme/Chicago95/gtk-3.0/assets/backdrop.png + Theme/Chicago95/gtk-3.0/assets/check-check.png + Theme/Chicago95/gtk-3.0/assets/check-indeterminate.png + Theme/Chicago95/gtk-3.0/assets/checkbox-checked-insensitive.png + Theme/Chicago95/gtk-3.0/assets/checkbox-checked.png + Theme/Chicago95/gtk-3.0/assets/checkbox-mixed-insensitive.png + Theme/Chicago95/gtk-3.0/assets/checkbox-mixed.png + Theme/Chicago95/gtk-3.0/assets/checkbox-unchecked-insensitive.png + Theme/Chicago95/gtk-3.0/assets/checkbox-unchecked.png + Theme/Chicago95/gtk-3.0/assets/checker-board-pattern.png + Theme/Chicago95/gtk-3.0/assets/handle-h.png + Theme/Chicago95/gtk-3.0/assets/handle-v.png + Theme/Chicago95/gtk-3.0/assets/radio-check.png + Theme/Chicago95/gtk-3.0/assets/radio-inner-ring.png + Theme/Chicago95/gtk-3.0/assets/radio-mixed-insensitive.png + Theme/Chicago95/gtk-3.0/assets/radio-mixed.png + Theme/Chicago95/gtk-3.0/assets/radio-ring.png + Theme/Chicago95/gtk-3.0/assets/radio-selected-insensitive.png + Theme/Chicago95/gtk-3.0/assets/radio-selected.png + Theme/Chicago95/gtk-3.0/assets/radio-unselected-insensitive.png + Theme/Chicago95/gtk-3.0/assets/radio-unselected.png + Theme/Chicago95/gtk-3.0/buttons/close_normal.png + Theme/Chicago95/gtk-3.0/buttons/close_pressed.png + Theme/Chicago95/gtk-3.0/buttons/icon-close.png + Theme/Chicago95/gtk-3.0/buttons/icon-maximise.png + Theme/Chicago95/gtk-3.0/buttons/icon-minimise.png + Theme/Chicago95/gtk-3.0/buttons/icon-restore.png + Theme/Chicago95/gtk-3.0/buttons/maximize_normal.png + Theme/Chicago95/gtk-3.0/buttons/maximize_pressed.png + Theme/Chicago95/gtk-3.0/buttons/minimize_normal.png + Theme/Chicago95/gtk-3.0/buttons/minimize_pressed.png + Theme/Chicago95/gtk-3.0/buttons/restore_normal.png + Theme/Chicago95/gtk-3.0/buttons/restore_pressed.png + Theme/Chicago95/gtk-3.0/gtk-widgets.css + Theme/Chicago95/gtk-3.0/gtk.css + Theme/Chicago95/gtk-3.0/scrollbar/stepper-down-active.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-down-insense.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-down.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-left-active.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-left-insense.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-left.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-right-active.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-right-insense.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-right.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-up-active.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-up-insense.png + Theme/Chicago95/gtk-3.0/scrollbar/stepper-up.png + Theme/Chicago95/gtk-3.0/settings.ini + Theme/Chicago95/gtk-3.24/apps/filechooser.css + Theme/Chicago95/gtk-3.24/apps/lightdm-gtk-greeter.css + Theme/Chicago95/gtk-3.24/apps/mate.css + Theme/Chicago95/gtk-3.24/apps/synaptic.css + Theme/Chicago95/gtk-3.24/apps/thunar.css + Theme/Chicago95/gtk-3.24/apps/whiskermenu.css + Theme/Chicago95/gtk-3.24/apps/xfce.css + Theme/Chicago95/gtk-3.24/assets/arrow-down(2).png + Theme/Chicago95/gtk-3.24/assets/arrow-down-disabled.png + Theme/Chicago95/gtk-3.24/assets/arrow-down-selected.png + Theme/Chicago95/gtk-3.24/assets/arrow-down.png + Theme/Chicago95/gtk-3.24/assets/arrow-left-disabled.png + Theme/Chicago95/gtk-3.24/assets/arrow-left-hover_small.png + Theme/Chicago95/gtk-3.24/assets/arrow-left-selected.png + Theme/Chicago95/gtk-3.24/assets/arrow-left.png + Theme/Chicago95/gtk-3.24/assets/arrow-left_small.png + Theme/Chicago95/gtk-3.24/assets/arrow-right-disabled.png + Theme/Chicago95/gtk-3.24/assets/arrow-right-hover_small.png + Theme/Chicago95/gtk-3.24/assets/arrow-right-selected.png + Theme/Chicago95/gtk-3.24/assets/arrow-right.png + Theme/Chicago95/gtk-3.24/assets/arrow-right_small.png + Theme/Chicago95/gtk-3.24/assets/arrow-up-disabled.png + Theme/Chicago95/gtk-3.24/assets/arrow-up-selected.png + Theme/Chicago95/gtk-3.24/assets/arrow-up.png + Theme/Chicago95/gtk-3.24/assets/backdrop.png + Theme/Chicago95/gtk-3.24/assets/check-check.png + Theme/Chicago95/gtk-3.24/assets/check-indeterminate.png + Theme/Chicago95/gtk-3.24/assets/checkbox-checked-insensitive.png + Theme/Chicago95/gtk-3.24/assets/checkbox-checked.png + Theme/Chicago95/gtk-3.24/assets/checkbox-mixed-insensitive.png + Theme/Chicago95/gtk-3.24/assets/checkbox-mixed.png + Theme/Chicago95/gtk-3.24/assets/checkbox-unchecked-insensitive.png + Theme/Chicago95/gtk-3.24/assets/checkbox-unchecked.png + Theme/Chicago95/gtk-3.24/assets/checker-board-pattern.png + Theme/Chicago95/gtk-3.24/assets/handle-h.png + Theme/Chicago95/gtk-3.24/assets/handle-v.png + Theme/Chicago95/gtk-3.24/assets/radio-check.png + Theme/Chicago95/gtk-3.24/assets/radio-inner-ring.png + Theme/Chicago95/gtk-3.24/assets/radio-mixed-insensitive.png + Theme/Chicago95/gtk-3.24/assets/radio-mixed.png + Theme/Chicago95/gtk-3.24/assets/radio-ring.png + Theme/Chicago95/gtk-3.24/assets/radio-selected-insensitive.png + Theme/Chicago95/gtk-3.24/assets/radio-selected.png + Theme/Chicago95/gtk-3.24/assets/radio-unselected-insensitive.png + Theme/Chicago95/gtk-3.24/assets/radio-unselected.png + Theme/Chicago95/gtk-3.24/assets/status_badge_msw.png + Theme/Chicago95/gtk-3.24/assets/status_badge_tux.png + Theme/Chicago95/gtk-3.24/assets/status_badge_xue.png + Theme/Chicago95/gtk-3.24/buttons/close_normal.png + Theme/Chicago95/gtk-3.24/buttons/close_pressed.png + Theme/Chicago95/gtk-3.24/buttons/icon-close.png + Theme/Chicago95/gtk-3.24/buttons/icon-maximise.png + Theme/Chicago95/gtk-3.24/buttons/icon-minimise.png + Theme/Chicago95/gtk-3.24/buttons/icon-restore.png + Theme/Chicago95/gtk-3.24/buttons/maximize_normal.png + Theme/Chicago95/gtk-3.24/buttons/maximize_pressed.png + Theme/Chicago95/gtk-3.24/buttons/minimize_normal.png + Theme/Chicago95/gtk-3.24/buttons/minimize_pressed.png + Theme/Chicago95/gtk-3.24/buttons/restore_normal.png + Theme/Chicago95/gtk-3.24/buttons/restore_pressed.png + Theme/Chicago95/gtk-3.24/gtk-widgets.css + Theme/Chicago95/gtk-3.24/gtk.css + Theme/Chicago95/gtk-3.24/scrollbar/stepper-down-active.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-down-insense.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-down.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-left-active.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-left-insense.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-left.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-right-active.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-right-insense.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-right.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-up-active.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-up-insense.png + Theme/Chicago95/gtk-3.24/scrollbar/stepper-up.png + Theme/Chicago95/gtk-3.24/settings.ini + Theme/Chicago95/index.theme + Theme/Chicago95/metacity-1/close_normal.png + Theme/Chicago95/metacity-1/close_normal_small.png + Theme/Chicago95/metacity-1/close_pressed.png + Theme/Chicago95/metacity-1/close_pressed_small.png + Theme/Chicago95/metacity-1/maximize_normal.png + Theme/Chicago95/metacity-1/maximize_pressed.png + Theme/Chicago95/metacity-1/minimize_normal.png + Theme/Chicago95/metacity-1/minimize_pressed.png + Theme/Chicago95/metacity-1/restore_normal.png + Theme/Chicago95/metacity-1/restore_pressed.png + Theme/Chicago95/misc/GTK2 start buttons/Deskbar_tux_26px.png + Theme/Chicago95/misc/GTK2 start buttons/Deskbar_tuxtiny.png + Theme/Chicago95/misc/GTK2 start buttons/Start-button_chicago95.png + Theme/Chicago95/misc/GTK2 start buttons/tux_26px.png + Theme/Chicago95/misc/GTK2 start buttons/tux_28px.png + Theme/Chicago95/misc/GTK2 start buttons/tux_30px.png + Theme/Chicago95/misc/GTK2 start buttons/tux_32px.png + Theme/Chicago95/misc/GTK2 start buttons/tux_34px.png + Theme/Chicago95/misc/GTK2 start buttons/tux_36px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_26px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_28px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_30px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_32px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_34px.png + Theme/Chicago95/misc/GTK2 start buttons/windows_36px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_26px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_28px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_30px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_32px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_34px.png + Theme/Chicago95/misc/GTK2 start buttons/xue_36px.png + Theme/Chicago95/misc/Legacy GTK3 start buttons/tux.png + Theme/Chicago95/misc/Legacy GTK3 start buttons/windows.png + Theme/Chicago95/misc/Legacy GTK3 start buttons/xue.png + Theme/Chicago95/misc/tux.png + Theme/Chicago95/misc/tux_32x32px.png + Theme/Chicago95/misc/windows.png + Theme/Chicago95/misc/windows_32x32px.png + Theme/Chicago95/misc/xue.png + Theme/Chicago95/misc/xue_32x32px.png + Theme/Chicago95/xfce-notify-4.0/gtk.css + Theme/Chicago95/xfce-notify-4.0/gtkrc + Theme/Chicago95/xfwm4/bottom-active.xpm + Theme/Chicago95/xfwm4/bottom-inactive.xpm + Theme/Chicago95/xfwm4/bottom-left-active.xpm + Theme/Chicago95/xfwm4/bottom-left-inactive.xpm + Theme/Chicago95/xfwm4/bottom-right-active.xpm + Theme/Chicago95/xfwm4/bottom-right-inactive.xpm + Theme/Chicago95/xfwm4/close-active.xpm + Theme/Chicago95/xfwm4/close-inactive.xpm + Theme/Chicago95/xfwm4/close-pressed.xpm + Theme/Chicago95/xfwm4/hide-active.xpm + Theme/Chicago95/xfwm4/hide-inactive.xpm + Theme/Chicago95/xfwm4/hide-pressed.xpm + Theme/Chicago95/xfwm4/left-active.xpm + Theme/Chicago95/xfwm4/left-inactive.xpm + Theme/Chicago95/xfwm4/maximize-active.xpm + Theme/Chicago95/xfwm4/maximize-inactive.xpm + Theme/Chicago95/xfwm4/maximize-pressed.xpm + Theme/Chicago95/xfwm4/maximize-toggled-active.xpm + Theme/Chicago95/xfwm4/maximize-toggled-inactive.xpm + Theme/Chicago95/xfwm4/maximize-toggled-pressed.xpm + Theme/Chicago95/xfwm4/menu-active.xpm + Theme/Chicago95/xfwm4/menu-inactive.xpm + Theme/Chicago95/xfwm4/menu-pressed.xpm + Theme/Chicago95/xfwm4/right-active.xpm + Theme/Chicago95/xfwm4/right-inactive.xpm + Theme/Chicago95/xfwm4/shade-active.xpm + Theme/Chicago95/xfwm4/shade-inactive.xpm + Theme/Chicago95/xfwm4/shade-pressed.xpm + Theme/Chicago95/xfwm4/stick-active.xpm + Theme/Chicago95/xfwm4/stick-inactive.xpm + Theme/Chicago95/xfwm4/stick-pressed.xpm + Theme/Chicago95/xfwm4/themerc + Theme/Chicago95/xfwm4/title-1-active.xpm + Theme/Chicago95/xfwm4/title-1-inactive.xpm + Theme/Chicago95/xfwm4/title-2-active.xpm + Theme/Chicago95/xfwm4/title-2-inactive.xpm + Theme/Chicago95/xfwm4/title-3-active.xpm + Theme/Chicago95/xfwm4/title-3-inactive.xpm + Theme/Chicago95/xfwm4/title-4-active.xpm + Theme/Chicago95/xfwm4/title-4-inactive.xpm + Theme/Chicago95/xfwm4/title-5-active.xpm + Theme/Chicago95/xfwm4/title-5-inactive.xpm + Theme/Chicago95/xfwm4/top-left-active.xpm + Theme/Chicago95/xfwm4/top-left-inactive.xpm + Theme/Chicago95/xfwm4/top-right-active.xpm + Theme/Chicago95/xfwm4/top-right-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-active.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-left-active.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-left-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-right-active.xpm + Theme/Chicago95/xfwm4_hidpi/bottom-right-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/close-active.xpm + Theme/Chicago95/xfwm4_hidpi/close-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/close-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/hide-active.xpm + Theme/Chicago95/xfwm4_hidpi/hide-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/hide-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/left-active.xpm + Theme/Chicago95/xfwm4_hidpi/left-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-active.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-toggled-active.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-toggled-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/maximize-toggled-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/menu-active.xpm + Theme/Chicago95/xfwm4_hidpi/menu-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/menu-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/right-active.xpm + Theme/Chicago95/xfwm4_hidpi/right-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/shade-active.xpm + Theme/Chicago95/xfwm4_hidpi/shade-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/shade-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/stick-active.xpm + Theme/Chicago95/xfwm4_hidpi/stick-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/stick-pressed.xpm + Theme/Chicago95/xfwm4_hidpi/themerc + Theme/Chicago95/xfwm4_hidpi/title-1-active.xpm + Theme/Chicago95/xfwm4_hidpi/title-1-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/title-2-active.xpm + Theme/Chicago95/xfwm4_hidpi/title-2-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/title-3-active.xpm + Theme/Chicago95/xfwm4_hidpi/title-3-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/title-4-active.xpm + Theme/Chicago95/xfwm4_hidpi/title-4-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/title-5-active.xpm + Theme/Chicago95/xfwm4_hidpi/title-5-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/top-left-active.xpm + Theme/Chicago95/xfwm4_hidpi/top-left-inactive.xpm + Theme/Chicago95/xfwm4_hidpi/top-right-active.xpm + Theme/Chicago95/xfwm4_hidpi/top-right-inactive.xpm +Copyright: __NO_COPYRIGHT_NOR_LICENSE__ +License: __NO_COPYRIGHT_NOR_LICENSE__ + +Files: Icons/Chicago95-tux/apps/22/time-admin.png + Icons/Chicago95-tux/apps/256/palemoon.png + Icons/Chicago95/apps/22/time-admin.png + Icons/Chicago95/apps/256/palemoon.png +Copyright: 7%tEXtdate:create2016-04-01T12:54:57-07:00 ®*w%tEXtdate:modify2013-05-28T04:03:26-07:00ê ðwIEND®B`‚ + UUU u •» +License: __NO_LICENSE__ + +Files: Theme/Chicago95/gnome-shell/_common.scss + Theme/Chicago95/gnome-shell/gnome-shell.css +Copyright: 2009-2015 Red Hat, Inc. +License: LGPL-2.1 + Portions adapted from Mx's data/style/default.css + Copyright 2009 Intel Corporation + . + Modified for Kali Linux by Christian Medel (Elbullazul) + (c) 2018 Offensive Security + . + This program is free software; you can redistribute it and/or modify it + under the terms and conditions of the GNU Lesser General Public License, + version 2.1, as published by the Free Software Foundation. + . + This program is distributed in the hope it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + more details. + . + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + . + GLOBALS + . + On Debian systems, the complete text of the GNU Lesser General Public License + Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. + +Files: Plymouth/RetroTux/RetroTux.script +Copyright: 2009 Canonical Ltd. + 2011 The Xubuntu Community +License: GPL-3.0+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + Written by: Mad Nick + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +#---------------------------------------------------------------------------- +# xml and html files (skipped): +# INSTALL.md +# Extras/99-ms-sans-serif.conf +# Extras/99-ms-sans-serif-bold.conf +# Icons/Chicago95/animations/48/pk-action-refresh-cache.svg +# Icons/Chicago95/animations/16/process-idle.svg +# Icons/Chicago95/animations/22/process-idle.svg +# Icons/Chicago95/animations/10/process-idle.svg +# Icons/Chicago95/actions/scalable/gtk-print-paused.svg +# Icons/Chicago95/actions/scalable/help-contents.svg +# Icons/Chicago95/actions/scalable/gtk-edit.svg +# Icons/Chicago95/actions/scalable/mail-reply-sender.svg +# Icons/Chicago95/actions/scalable/process-stop.svg +# Icons/Chicago95/actions/scalable/format-text-bold.svg +# Icons/Chicago95/actions/scalable/go-first.svg +# Icons/Chicago95/actions/scalable/tab-new.svg +# Icons/Chicago95/actions/scalable/bookmark-new.svg +# Icons/Chicago95/actions/scalable/format-justify-fill.svg +# Icons/Chicago95/actions/scalable/application-exit.svg +# Icons/Chicago95/actions/scalable/help-about.svg +# Icons/Chicago95/actions/scalable/format-justify-right.svg +# Icons/Chicago95/actions/scalable/zoom-in.svg +# Icons/Chicago95/actions/scalable/document-print-preview.svg +# Icons/Chicago95/actions/scalable/appointment-new.svg +# Icons/Chicago95/actions/scalable/view-fullscreen.svg +# Icons/Chicago95/actions/scalable/format-text-underline.svg +# Icons/Chicago95/actions/scalable/help-info.svg +# Icons/Chicago95/actions/scalable/folder-new.svg +# Icons/Chicago95/actions/scalable/window-close.svg +# Icons/Chicago95/actions/scalable/go-top.svg +# Icons/Chicago95/actions/scalable/edit-copy.svg +# Icons/Chicago95/actions/scalable/insert-link.svg +# Icons/Chicago95/actions/scalable/gtk-no.svg +# Icons/Chicago95/actions/scalable/edit-redo.svg +# Icons/Chicago95/actions/scalable/object-flip-horizontal.svg +# Icons/Chicago95/actions/scalable/go-bottom.svg +# Icons/Chicago95/actions/scalable/edit-delete.svg +# Icons/Chicago95/actions/scalable/format-indent-less.svg +# Icons/Chicago95/actions/scalable/format-text-direction-rtl.svg +# Icons/Chicago95/actions/scalable/edit-find.svg +# Icons/Chicago95/actions/scalable/list-remove.svg +# Icons/Chicago95/actions/scalable/document-print.svg +# Icons/Chicago95/actions/scalable/media-playback-pause.svg +# Icons/Chicago95/actions/scalable/window-new.svg +# Icons/Chicago95/actions/scalable/object-flip-vertical.svg +# Icons/Chicago95/actions/scalable/media-record.svg +# Icons/Chicago95/actions/scalable/system-restart.svg +# Icons/Chicago95/actions/scalable/system-lock-screen.svg +# Icons/Chicago95/actions/scalable/tools-check-spelling.svg +# Icons/Chicago95/actions/scalable/help-faq.svg +# Icons/Chicago95/actions/scalable/dialog-apply.svg +# Icons/Chicago95/actions/scalable/mail-mark-unread.svg +# Icons/Chicago95/actions/scalable/call-start.svg +# Icons/Chicago95/actions/scalable/document-properties.svg +# Icons/Chicago95/actions/scalable/insert-text.svg +# Icons/Chicago95/actions/scalable/list-add.svg +# Icons/Chicago95/actions/scalable/go-down.svg +# Icons/Chicago95/actions/scalable/document-save-as.svg +# Icons/Chicago95/actions/scalable/call-stop.svg +# Icons/Chicago95/actions/scalable/gtk-apply.svg +# Icons/Chicago95/actions/scalable/go-up.svg +# Icons/Chicago95/actions/scalable/zoom-fit-best.svg +# Icons/Chicago95/actions/scalable/mail-send-receive.svg +# Icons/Chicago95/actions/scalable/document-open.svg +# Icons/Chicago95/actions/scalable/go-jump.svg +# Icons/Chicago95/actions/scalable/document-import.svg +# Icons/Chicago95/actions/scalable/mail-reply-all.svg +# Icons/Chicago95/actions/scalable/edit-find-replace.svg +# Icons/Chicago95/actions/scalable/view-sort-descending.svg +# Icons/Chicago95/actions/scalable/document-save.svg +# Icons/Chicago95/actions/scalable/system-log-out.svg +# Icons/Chicago95/actions/scalable/document-export.svg +# Icons/Chicago95/actions/scalable/object-rotate-right.svg +# Icons/Chicago95/actions/scalable/gtk-print-error.svg +# Icons/Chicago95/actions/scalable/go-home.svg +# Icons/Chicago95/actions/scalable/document-open-recent.svg +# Icons/Chicago95/actions/scalable/go-next.svg +# Icons/Chicago95/actions/scalable/mail-send.svg +# Icons/Chicago95/actions/scalable/format-text-direction-ltr.svg +# Icons/Chicago95/actions/scalable/edit-select-all.svg +# Icons/Chicago95/actions/scalable/media-skip-backward.svg +# Icons/Chicago95/actions/scalable/media-playback-stop.svg +# Icons/Chicago95/actions/scalable/edit-cut.svg +# Icons/Chicago95/actions/scalable/gtk-print-report.svg +# Icons/Chicago95/actions/scalable/document-page-setup.svg +# Icons/Chicago95/actions/scalable/edit-undo.svg +# Icons/Chicago95/actions/scalable/format-justify-left.svg +# Icons/Chicago95/actions/scalable/contact-new.svg +# Icons/Chicago95/actions/scalable/mail-mark-important.svg +# Icons/Chicago95/actions/scalable/media-import-audio-cd.svg +# Icons/Chicago95/actions/scalable/zoom-original.svg +# Icons/Chicago95/actions/scalable/object-inverse.svg +# Icons/Chicago95/actions/scalable/media-seek-backward.svg +# Icons/Chicago95/actions/scalable/mail-forward.svg +# Icons/Chicago95/actions/scalable/gtk-print-warning.svg +# Icons/Chicago95/actions/scalable/insert-image.svg +# Icons/Chicago95/actions/scalable/address-book-new.svg +# Icons/Chicago95/actions/scalable/jockey-proprietary.svg +# Icons/Chicago95/actions/scalable/document-new.svg +# Icons/Chicago95/actions/scalable/insert-object.svg +# Icons/Chicago95/actions/scalable/view-sort-ascending.svg +# Icons/Chicago95/actions/scalable/media-skip-forward.svg +# Icons/Chicago95/actions/scalable/edit-paste.svg +# Icons/Chicago95/actions/scalable/system-run.svg +# Icons/Chicago95/actions/scalable/format-text-italic.svg +# Icons/Chicago95/actions/scalable/mail-mark-read.svg +# Icons/Chicago95/actions/scalable/system-search.svg +# Icons/Chicago95/actions/scalable/format-text-strikethrough.svg +# Icons/Chicago95/actions/scalable/media-playback-start.svg +# Icons/Chicago95/actions/scalable/view-restore.svg +# Icons/Chicago95/actions/scalable/edit-clear.svg +# Icons/Chicago95/actions/scalable/zoom-out.svg +# Icons/Chicago95/actions/scalable/document-revert.svg +# Icons/Chicago95/actions/scalable/document-send.svg +# Icons/Chicago95/actions/scalable/mail-message-new.svg +# Icons/Chicago95/actions/scalable/go-previous.svg +# Icons/Chicago95/actions/scalable/object-rotate-left.svg +# Icons/Chicago95/actions/scalable/tag-new.svg +# Icons/Chicago95/actions/scalable/format-justify-center.svg +# Icons/Chicago95/actions/scalable/media-seek-forward.svg +# Icons/Chicago95/actions/scalable/view-refresh.svg +# Icons/Chicago95/actions/scalable/go-last.svg +# Icons/Chicago95/actions/scalable/media-eject.svg +# Icons/Chicago95/actions/scalable/format-indent-more.svg +# Icons/Chicago95/actions/scalable/system-shutdown.svg +# Icons/Chicago95/mimes/scalable/image-x-win-bitmap.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-shar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-lha.svg +# Icons/Chicago95/mimes/scalable/application-x-bzip.svg +# Icons/Chicago95/mimes/scalable/package_editors.svg +# Icons/Chicago95/mimes/scalable/audio-x-flac+ogg.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-lzma.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-html.svg +# Icons/Chicago95/mimes/scalable/libreoffice-drawing-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-bdf.svg +# Icons/Chicago95/mimes/scalable/application-x-sqlite3.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.text.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.spreadsheet-template.svg +# Icons/Chicago95/mimes/scalable/text-x-chdr.svg +# Icons/Chicago95/mimes/scalable/txt.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-sh.svg +# Icons/Chicago95/mimes/scalable/image.svg +# Icons/Chicago95/mimes/scalable/application-x-lha.svg +# Icons/Chicago95/mimes/scalable/libreoffice-presentation-template.svg +# Icons/Chicago95/mimes/scalable/text-x-script.svg +# Icons/Chicago95/mimes/scalable/stock_smart-playlist.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text.svg +# Icons/Chicago95/mimes/scalable/application-x-cd-image.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.ms-powerpoint.svg +# Icons/Chicago95/mimes/scalable/gnome-package.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-python-bytecode.svg +# Icons/Chicago95/mimes/scalable/text-x-perl.svg +# Icons/Chicago95/mimes/scalable/libreoffice-presentation.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-presentation.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-powerpoint.svg +# Icons/Chicago95/mimes/scalable/unknown.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.impress.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-gtkrc.svg +# Icons/Chicago95/mimes/scalable/text-x-python.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-c.svg +# Icons/Chicago95/mimes/scalable/text-x-gtkrc.svg +# Icons/Chicago95/mimes/scalable/text-x-install.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-excel.sheet.macroEnabled.12.svg +# Icons/Chicago95/mimes/scalable/media-image.svg +# Icons/Chicago95/mimes/scalable/x-office-drawing.svg +# Icons/Chicago95/mimes/scalable/audio-x-mpeg.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-java-source.svg +# Icons/Chicago95/mimes/scalable/package-x-generic.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-stuffit.svg +# Icons/Chicago95/mimes/scalable/audio-x-ms-wma.svg +# Icons/Chicago95/mimes/scalable/application-x-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/libreoffice-spreadsheet-template.svg +# Icons/Chicago95/mimes/scalable/audio-x-scpls.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-archive.svg +# Icons/Chicago95/mimes/scalable/jpg.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-drawing-template.svg +# Icons/Chicago95/mimes/scalable/audio-x-speex+ogg.svg +# Icons/Chicago95/mimes/scalable/application-x-perl.svg +# Icons/Chicago95/mimes/scalable/video-x-generic.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-desktop.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-dvi.svg +# Icons/Chicago95/mimes/scalable/x-office-presentation.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.text-template.svg +# Icons/Chicago95/mimes/scalable/image-x-tga.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.impress.template.svg +# Icons/Chicago95/mimes/scalable/application-x-flash-video.svg +# Icons/Chicago95/mimes/scalable/text-x-generic-template.svg +# Icons/Chicago95/mimes/scalable/source-playlist.svg +# Icons/Chicago95/mimes/scalable/application-x-gzip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.rn-realmedia-vbr.svg +# Icons/Chicago95/mimes/scalable/application-x-lzma.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-abiword.svg +# Icons/Chicago95/mimes/scalable/application-x-ruby.svg +# Icons/Chicago95/mimes/scalable/text-x-copying.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg +# Icons/Chicago95/mimes/scalable/wordprocessing.svg +# Icons/Chicago95/mimes/scalable/stock_calendar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-audio.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-deb.svg +# Icons/Chicago95/mimes/scalable/office-database.svg +# Icons/Chicago95/mimes/scalable/application-rss+xml.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-zip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.writer.template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.rn-realmedia.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-java.svg +# Icons/Chicago95/mimes/scalable/audio-mpeg.svg +# Icons/Chicago95/mimes/scalable/image-jpeg2000.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-rss+xml.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-jpeg.svg +# Icons/Chicago95/mimes/scalable/application-zip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.calc.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-linux-psf.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-x-psd.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-bittorrent.svg +# Icons/Chicago95/mimes/scalable/spreadsheet.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.drawing-template.svg +# Icons/Chicago95/mimes/scalable/application-vnd.sun.xml.draw.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-7z-compressed.svg +# Icons/Chicago95/mimes/scalable/archive.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-vcalendar.svg +# Icons/Chicago95/mimes/scalable/application-x-sln.svg +# Icons/Chicago95/mimes/scalable/image-x-generic.svg +# Icons/Chicago95/mimes/scalable/image-bmp.svg +# Icons/Chicago95/mimes/scalable/application-rtf.svg +# Icons/Chicago95/mimes/scalable/application-x-trash.svg +# Icons/Chicago95/mimes/scalable/tar.svg +# Icons/Chicago95/mimes/scalable/rar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-authors.svg +# Icons/Chicago95/mimes/scalable/media-audio.svg +# Icons/Chicago95/mimes/scalable/application-x-javascript.svg +# Icons/Chicago95/mimes/scalable/application-x-matroska.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-tiff.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-class-file.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-cpio-compressed.svg +# Icons/Chicago95/mimes/scalable/application-x-java-archive.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-presentation-template.svg +# Icons/Chicago95/mimes/scalable/sound.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-arj.svg +# Icons/Chicago95/mimes/scalable/application-atom+xml.svg +# Icons/Chicago95/mimes/scalable/text-x-javascript.svg +# Icons/Chicago95/mimes/scalable/zip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.drawing.svg +# Icons/Chicago95/mimes/scalable/vcard.svg +# Icons/Chicago95/mimes/scalable/application-vnd.wordperfect.svg +# Icons/Chicago95/mimes/scalable/application-x-lzop.svg +# Icons/Chicago95/mimes/scalable/libreoffice-text-remplate.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-glade.svg +# Icons/Chicago95/mimes/scalable/stock_addressbook.svg +# Icons/Chicago95/mimes/scalable/gnome-fs-executable.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-python.svg +# Icons/Chicago95/mimes/scalable/text-x-source.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-kspread.svg +# Icons/Chicago95/mimes/scalable/application-pdf.svg +# Icons/Chicago95/mimes/scalable/application-x-rpm.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-rpm.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.ms-cab-compressed.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-executable.svg +# Icons/Chicago95/mimes/scalable/package_wordprocessing.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-applix-word.svg +# Icons/Chicago95/mimes/scalable/application-x-stuffit.svg +# Icons/Chicago95/mimes/scalable/x-office-calendar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.lotus-1-2-3.svg +# Icons/Chicago95/mimes/scalable/application-x-sqlite2.svg +# Icons/Chicago95/mimes/scalable/application-vnd.sun.xml.writer.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-php.svg +# Icons/Chicago95/mimes/scalable/text-html.svg +# Icons/Chicago95/mimes/scalable/application-x-m4.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +# Icons/Chicago95/mimes/scalable/office-document.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-x-cmu-raster.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-changelog.svg +# Icons/Chicago95/mimes/scalable/application-ogg.svg +# Icons/Chicago95/mimes/scalable/application-vnd.rn-realmedia.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-afm.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-zip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-csharp.svg +# Icons/Chicago95/mimes/scalable/x-office-drawing-template.svg +# Icons/Chicago95/mimes/scalable/text2.svg +# Icons/Chicago95/mimes/scalable/rpm.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-xml.svg +# Icons/Chicago95/mimes/scalable/application-x-python-bytecode.svg +# Icons/Chicago95/mimes/scalable/application-x-class-file.svg +# Icons/Chicago95/mimes/scalable/libreoffice-formula.svg +# Icons/Chicago95/mimes/scalable/stock_playlist.svg +# Icons/Chicago95/mimes/scalable/gedit-plugin.svg +# Icons/Chicago95/mimes/scalable/application-illustrator.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-lzma-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/openofficeorg3-database.svg +# Icons/Chicago95/mimes/scalable/x-office-document-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-scribus.svg +# Icons/Chicago95/mimes/scalable/x-office-document.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.presentation.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-lhz.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-gzpostscript.svg +# Icons/Chicago95/mimes/scalable/application-x-cpio.svg +# Icons/Chicago95/mimes/scalable/office-contact.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-c++.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-vcard.svg +# Icons/Chicago95/mimes/scalable/exec.svg +# Icons/Chicago95/mimes/scalable/x-office-adress-book.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +# Icons/Chicago95/mimes/scalable/application-x-ms-dos-executable.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-compress.svg +# Icons/Chicago95/mimes/scalable/font_truetype.svg +# Icons/Chicago95/mimes/scalable/application-x-shellscript.svg +# Icons/Chicago95/mimes/scalable/text-x-java.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-gif.svg +# Icons/Chicago95/mimes/scalable/x-office-spreadsheet-template.svg +# Icons/Chicago95/mimes/scalable/openofficeorg3-oasis-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-install.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-text.svg +# Icons/Chicago95/mimes/scalable/text-x-c++src.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.writer.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.image.svg +# Icons/Chicago95/mimes/scalable/audio-x-playlist.svg +# Icons/Chicago95/mimes/scalable/application-x-bzip-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/application-x-bittorrent.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-javascript.svg +# Icons/Chicago95/mimes/scalable/application-x-jar.svg +# Icons/Chicago95/mimes/scalable/libpeas-plugin.svg +# Icons/Chicago95/mimes/scalable/application-x-zip.svg +# Icons/Chicago95/mimes/scalable/application-xml.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg +# Icons/Chicago95/mimes/scalable/text-x-makefile.svg +# Icons/Chicago95/mimes/scalable/multipart-encrypted.svg +# Icons/Chicago95/mimes/scalable/image-x-svg+xml.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-cpio.svg +# Icons/Chicago95/mimes/scalable/stock_script.svg +# Icons/Chicago95/mimes/scalable/mime_ascii.svg +# Icons/Chicago95/mimes/scalable/vnd.oasis.opendocument.drawing.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-csh.svg +# Icons/Chicago95/mimes/scalable/video.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-x-font-afm.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-theme.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +# Icons/Chicago95/mimes/scalable/font_type1.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-shockwave-flash.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-msword.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-kword.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-ruby.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.chart.svg +# Icons/Chicago95/mimes/scalable/application-x-deb.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-access.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-perl.svg +# Icons/Chicago95/mimes/scalable/application-x-gnome-theme-package.svg +# Icons/Chicago95/mimes/scalable/document.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-video-x-ms-wmv.svg +# Icons/Chicago95/mimes/scalable/text-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/text-x-c.svg +# Icons/Chicago95/mimes/scalable/application-x-csproj.svg +# Icons/Chicago95/mimes/scalable/libreoffice-extension.svg +# Icons/Chicago95/mimes/scalable/plan.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-shellscript.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-jar.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-spreadsheet-template.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.database.svg +# Icons/Chicago95/mimes/scalable/font_bitmap.svg +# Icons/Chicago95/mimes/scalable/text-enriched.svg +# Icons/Chicago95/mimes/scalable/authors.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-java-archive.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-x-portable-bitmap.svg +# Icons/Chicago95/mimes/scalable/application-x-arj.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-killustrator.svg +# Icons/Chicago95/mimes/scalable/application-x-desktop.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +# Icons/Chicago95/mimes/scalable/application-x-java.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.graphics.svg +# Icons/Chicago95/mimes/scalable/text-x-credits.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-chdr.svg +# Icons/Chicago95/mimes/scalable/audio-x-smart-playlist.svg +# Icons/Chicago95/mimes/scalable/libreoffice-calc.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-formula.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-tar.svg +# Icons/Chicago95/mimes/scalable/text-x-c++.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/application-install.svg +# Icons/Chicago95/mimes/scalable/openofficeorg3-oasis-database.svg +# Icons/Chicago95/mimes/scalable/application-x-theme.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-xhtml+xml.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-postscript.svg +# Icons/Chicago95/mimes/scalable/source-smart-playlist.svg +# Icons/Chicago95/mimes/scalable/text-x-java-source.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-rar.svg +# Icons/Chicago95/mimes/scalable/application-x-lhz.svg +# Icons/Chicago95/mimes/scalable/misc.svg +# Icons/Chicago95/mimes/scalable/text-xml.svg +# Icons/Chicago95/mimes/scalable/application-x-shar.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-cab-compressed.svg +# Icons/Chicago95/mimes/scalable/text-css.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.presentation-template.svg +# Icons/Chicago95/mimes/scalable/txt2.svg +# Icons/Chicago95/mimes/scalable/image-gif.svg +# Icons/Chicago95/mimes/scalable/text-directory.svg +# Icons/Chicago95/mimes/scalable/application-x-compress.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.draw.template.svg +# Icons/Chicago95/mimes/scalable/text-x-vala.svg +# Icons/Chicago95/mimes/scalable/gtk-file.svg +# Icons/Chicago95/mimes/scalable/application-x-executable.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-copying.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.chart.png.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-video-x-ms-asf.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-makefile.svg +# Icons/Chicago95/mimes/scalable/svg.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-css.svg +# Icons/Chicago95/mimes/scalable/application-x-gnumeric.svg +# Icons/Chicago95/mimes/scalable/empty_48x48.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.calc.template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.spreadsheet.svg +# Icons/Chicago95/mimes/scalable/text.svg +# Icons/Chicago95/mimes/scalable/jpeg.svg +# Icons/Chicago95/mimes/scalable/libreoffice-text.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-credits.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-gnumeric.svg +# Icons/Chicago95/mimes/scalable/image-x-psdimage-x-psd.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-readme.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.template.svg +# Icons/Chicago95/mimes/scalable/text-x-ruby.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.formula.svg +# Icons/Chicago95/mimes/scalable/package.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.sun.xml.draw.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.stardivision.impress.svg +# Icons/Chicago95/mimes/scalable/contents2.svg +# Icons/Chicago95/mimes/scalable/text-x-readme.svg +# Icons/Chicago95/mimes/scalable/www.svg +# Icons/Chicago95/mimes/scalable/application-msword.svg +# Icons/Chicago95/mimes/scalable/vcalendar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-png.svg +# Icons/Chicago95/mimes/scalable/image-x-portable-bitmap.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-ace.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-zsh.svg +# Icons/Chicago95/mimes/scalable/image-jpeg.svg +# Icons/Chicago95/mimes/scalable/office-illustration.svg +# Icons/Chicago95/mimes/scalable/tgz.svg +# Icons/Chicago95/mimes/scalable/libreoffice-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-javascript.svg +# Icons/Chicago95/mimes/scalable/libreoffice-text-template.svg +# Icons/Chicago95/mimes/scalable/text-x-csrc.svg +# Icons/Chicago95/mimes/scalable/text-richtext.svg +# Icons/Chicago95/mimes/scalable/application-x-shockwave-flash.svg +# Icons/Chicago95/mimes/scalable/text-x-kgw.svg +# Icons/Chicago95/mimes/scalable/audio-x-mp3-playlist.svg +# Icons/Chicago95/mimes/scalable/playlist.svg +# Icons/Chicago95/mimes/scalable/text-x-authors.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-gnome-app-info.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-ttf.svg +# Icons/Chicago95/mimes/scalable/application-vnd.sun.xml.calc.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.ms-excel.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-video.svg +# Icons/Chicago95/mimes/scalable/gnome-fs-regular.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-bzip.svg +# Icons/Chicago95/mimes/scalable/audio-x-mpegurl.svg +# Icons/Chicago95/mimes/scalable/image-tiff.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-pcf.svg +# Icons/Chicago95/mimes/scalable/application-x-object.svg +# Icons/Chicago95/mimes/scalable/template_source.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-excel.svg +# Icons/Chicago95/mimes/scalable/application-x-ace.svg +# Icons/Chicago95/mimes/scalable/text-x-csharp.svg +# Icons/Chicago95/mimes/scalable/x-office-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/application-x-7z-compressed.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-word.document.macroEnabled.12.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-rtf.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-zoo.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-ms-dos-executable.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-c++src.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +# Icons/Chicago95/mimes/scalable/text-x-sql.svg +# Icons/Chicago95/mimes/scalable/image-x-psd.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-kpresenter.svg +# Icons/Chicago95/mimes/scalable/image-png.svg +# Icons/Chicago95/mimes/scalable/application-x-lzma-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-ogg.svg +# Icons/Chicago95/mimes/scalable/text-html_alt.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-pdf.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-tarz.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-source.svg +# Icons/Chicago95/mimes/scalable/text-plain.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-java.svg +# Icons/Chicago95/mimes/scalable/internet-feed.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.graphics-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-font-sunos-news.svg +# Icons/Chicago95/mimes/scalable/image-x-compressed-xcf.svg +# Icons/Chicago95/mimes/scalable/application-x-ole-storage.svg +# Icons/Chicago95/mimes/scalable/x-office-presentation-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-gnome-theme-package.svg +# Icons/Chicago95/mimes/scalable/ascii.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-tex.svg +# Icons/Chicago95/mimes/scalable/folder_tar.svg +# Icons/Chicago95/mimes/scalable/audio-x-wav.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-wordperfect.svg +# Icons/Chicago95/mimes/scalable/libreoffice-database.svg +# Icons/Chicago95/mimes/scalable/binary.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-lzop.svg +# Icons/Chicago95/mimes/scalable/application-7zip.svg +# Icons/Chicago95/mimes/scalable/text-x-css.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +# Icons/Chicago95/mimes/scalable/text-x-changelog.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-applix-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/html.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-drawing.svg +# Icons/Chicago95/mimes/scalable/x-office-address-book.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.presentation.svg +# Icons/Chicago95/mimes/scalable/msaccess.exe_14_259_4_48x48x4.svg +# Icons/Chicago95/mimes/scalable/font-x-generic.svg +# Icons/Chicago95/mimes/scalable/empty.svg +# Icons/Chicago95/mimes/scalable/application-epub+zip.svg +# Icons/Chicago95/mimes/scalable/deb.svg +# Icons/Chicago95/mimes/scalable/kpresenter_kpr.svg +# Icons/Chicago95/mimes/scalable/libreoffice-drawing.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/openofficeorg3-drawing.svg +# Icons/Chicago95/mimes/scalable/application-x-php.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.stardivision.calc.svg +# Icons/Chicago95/mimes/scalable/text-x-lua.svg +# Icons/Chicago95/mimes/scalable/media-video.svg +# Icons/Chicago95/mimes/scalable/extension.svg +# Icons/Chicago95/mimes/scalable/playlist-automatic.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-atom+xml.svg +# Icons/Chicago95/mimes/scalable/application-vnd.oasis.opendocument.text-web.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-magicpoint.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-bzip-compressed-tar.svg +# Icons/Chicago95/mimes/scalable/text-x-preview.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-vnd.wap.wml.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +# Icons/Chicago95/mimes/scalable/shellscript.svg +# Icons/Chicago95/mimes/scalable/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +# Icons/Chicago95/mimes/scalable/audio-x-generic.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +# Icons/Chicago95/mimes/scalable/audio-x-vorbis+ogg.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.stardivision.writer.svg +# Icons/Chicago95/mimes/scalable/application-x-tar.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-bmp.svg +# Icons/Chicago95/mimes/scalable/text-htmlh.svg +# Icons/Chicago95/mimes/scalable/office-spreadsheet.svg +# Icons/Chicago95/mimes/scalable/application-octet-stream.svg +# Icons/Chicago95/mimes/scalable/application-postscript.svg +# Icons/Chicago95/mimes/scalable/application-x-msi.svg +# Icons/Chicago95/mimes/scalable/application-vnd.ms-powerpoint.presentation.macroEnabled.12.svg +# Icons/Chicago95/mimes/scalable/font.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-database.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text-template.svg +# Icons/Chicago95/mimes/scalable/libreoffice-oasis-text-template.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-image-x-xpixmap.svg +# Icons/Chicago95/mimes/scalable/image-x-ico.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-x-gzip.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-application-vnd.rn-realmedia-secure.svg +# Icons/Chicago95/mimes/scalable/audio-x-adpcm.svg +# Icons/Chicago95/mimes/scalable/image-x-xcf.svg +# Icons/Chicago95/mimes/scalable/text-x-generic.svg +# Icons/Chicago95/mimes/scalable/application-x-zoo.svg +# Icons/Chicago95/mimes/scalable/gnome-mime-text-x-csrc.svg +# Icons/Chicago95/mimes/scalable/application-x-rar.svg +# Icons/Chicago95/status/scalable/security-low.svg +# Icons/Chicago95/status/scalable/audio-volume-high-symbolic.svg +# Icons/Chicago95/status/scalable/appointment-soon.svg +# Icons/Chicago95/status/scalable/media-playlist-repeat.svg +# Icons/Chicago95/status/scalable/weather-overcast.svg +# Icons/Chicago95/status/scalable/weather-storm.svg +# Icons/Chicago95/status/scalable/task-due.svg +# Icons/Chicago95/status/scalable/folder-open.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-75-100.svg +# Icons/Chicago95/status/scalable/software-update-urgent.svg +# Icons/Chicago95/status/scalable/battery-100-charging.svg +# Icons/Chicago95/status/scalable/battery-020-charging.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-error.svg +# Icons/Chicago95/status/scalable/appointment-missed.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-tx.svg +# Icons/Chicago95/status/scalable/weather-few-clouds.svg +# Icons/Chicago95/status/scalable/battery-060.svg +# Icons/Chicago95/status/scalable/network-wireless-100.svg +# Icons/Chicago95/status/scalable/audio-volume-medium-symbolic.svg +# Icons/Chicago95/status/scalable/weather-showers.svg +# Icons/Chicago95/status/scalable/battery-060-charging.svg +# Icons/Chicago95/status/scalable/dialog-information.svg +# Icons/Chicago95/status/scalable/task-past-due.svg +# Icons/Chicago95/status/scalable/mail-replied.svg +# Icons/Chicago95/status/scalable/software-update-available.svg +# Icons/Chicago95/status/scalable/weather-few-clouds-night.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-50-74.svg +# Icons/Chicago95/status/scalable/connect_no.svg +# Icons/Chicago95/status/scalable/battery-000-charging.svg +# Icons/Chicago95/status/scalable/weather-clear-night.svg +# Icons/Chicago95/status/scalable/battery-020.svg +# Icons/Chicago95/status/scalable/battery-100.svg +# Icons/Chicago95/status/scalable/battery-080.svg +# Icons/Chicago95/status/scalable/audio-volume-low.svg +# Icons/Chicago95/status/scalable/gnome-dev-wavelan-encrypted.svg +# Icons/Chicago95/status/scalable/avatar-default.svg +# Icons/Chicago95/status/scalable/weather-showers-scattered.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-idle.svg +# Icons/Chicago95/status/scalable/printer-error.svg +# Icons/Chicago95/status/scalable/media-playlist-shuffle.svg +# Icons/Chicago95/status/scalable/dialog-password.svg +# Icons/Chicago95/status/scalable/dialog-error.svg +# Icons/Chicago95/status/scalable/user-trash-full.svg +# Icons/Chicago95/status/scalable/aptdaemon-add.svg +# Icons/Chicago95/status/scalable/mail-unread.svg +# Icons/Chicago95/status/scalable/gnome-fs-loading-icon.svg +# Icons/Chicago95/status/scalable/mail-read.svg +# Icons/Chicago95/status/scalable/printer-printing.svg +# Icons/Chicago95/status/scalable/battery-000.svg +# Icons/Chicago95/status/scalable/weather-severe-alert.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-25-49.svg +# Icons/Chicago95/status/scalable/battery-080-charging.svg +# Icons/Chicago95/status/scalable/battery-040.svg +# Icons/Chicago95/status/scalable/weather-clear.svg +# Icons/Chicago95/status/scalable/security-medium.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-rx.svg +# Icons/Chicago95/status/scalable/battery-ac-adapter.svg +# Icons/Chicago95/status/scalable/weather-snow.svg +# Icons/Chicago95/status/scalable/audio-volume-muted-symbolic.svg +# Icons/Chicago95/status/scalable/battery-040-charging.svg +# Icons/Chicago95/status/scalable/gnome-netstatus-0-24.svg +# Icons/Chicago95/status/scalable/dialog-question.svg +# Icons/Chicago95/status/scalable/connect_creating.svg +# Icons/Chicago95/status/scalable/mail-attachment.svg +# Icons/Chicago95/status/scalable/dialog-warning.svg +# Icons/Chicago95/categories/scalable/documentation_section.svg +# Icons/Chicago95/categories/scalable/configuration_section.svg +# Icons/Chicago95/categories/scalable/applications-internet.svg +# Icons/Chicago95/categories/scalable/preferences-desktop-personal.svg +# Icons/Chicago95/categories/scalable/application-community.svg +# Icons/Chicago95/categories/scalable/preferences-desktop-peripherals.svg +# Icons/Chicago95/categories/scalable/plugins-general.svg +# Icons/Chicago95/categories/scalable/xfdesktop-menu.svg +# Icons/Chicago95/devices/scalable/blueman-desktop.svg +# Icons/Chicago95/devices/scalable/gnome-dev-cdrom-audio.svg +# Icons/Chicago95/devices/scalable/audio-input-microphone.svg +# Icons/Chicago95/devices/scalable/cdrom_unmount.svg +# Icons/Chicago95/devices/scalable/gnome-screenshot.svg +# Icons/Chicago95/devices/scalable/media-dvdrw.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-cdrom.svg +# Icons/Chicago95/devices/scalable/gnome-dev-printer-new.svg +# Icons/Chicago95/devices/scalable/media-optical-bd.svg +# Icons/Chicago95/devices/scalable/phone-motorola-droid.svg +# Icons/Chicago95/devices/scalable/drive-harddisk-scsi.svg +# Icons/Chicago95/devices/scalable/drive-harddisk.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd.svg +# Icons/Chicago95/devices/scalable/media-jaz.svg +# Icons/Chicago95/devices/scalable/cups.svg +# Icons/Chicago95/devices/scalable/media-flash.svg +# Icons/Chicago95/devices/scalable/drive-harddisk-root.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd-r.svg +# Icons/Chicago95/devices/scalable/video-display.svg +# Icons/Chicago95/devices/scalable/multimedia-player-apple-ipod.svg +# Icons/Chicago95/devices/scalable/gnome-dev-unknown-usb.svg +# Icons/Chicago95/devices/scalable/media-encrypted.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-flash-sd.svg +# Icons/Chicago95/devices/scalable/media-zip.svg +# Icons/Chicago95/devices/scalable/cdwriter_unmount.svg +# Icons/Chicago95/devices/scalable/drive-optical-recorder.svg +# Icons/Chicago95/devices/scalable/input-keyboard.svg +# Icons/Chicago95/devices/scalable/drive-removable-media.svg +# Icons/Chicago95/devices/scalable/music-player.svg +# Icons/Chicago95/devices/scalable/media-cdrw.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-flash-cf.svg +# Icons/Chicago95/devices/scalable/blueman-smart-phone.svg +# Icons/Chicago95/devices/scalable/blueman-pointing.svg +# Icons/Chicago95/devices/scalable/drive-harddisk-usb.svg +# Icons/Chicago95/devices/scalable/stock_music-library.svg +# Icons/Chicago95/devices/scalable/drive-harddisk-system.svg +# Icons/Chicago95/devices/scalable/gnome-computer.svg +# Icons/Chicago95/devices/scalable/gnome-dev-dvd-alt.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd-rw.svg +# Icons/Chicago95/devices/scalable/input-tablet.svg +# Icons/Chicago95/devices/scalable/gnome-dev-media-memory.svg +# Icons/Chicago95/devices/scalable/blueman-loudspeaker.svg +# Icons/Chicago95/devices/scalable/gnome-cd.svg +# Icons/Chicago95/devices/scalable/processor.svg +# Icons/Chicago95/devices/scalable/multimedia-player-ipod.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-cdrw.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-dvdrw.svg +# Icons/Chicago95/devices/scalable/gnome-fs-blockdev.svg +# Icons/Chicago95/devices/scalable/monitor.svg +# Icons/Chicago95/devices/scalable/gnome-dev-jazdisk.svg +# Icons/Chicago95/devices/scalable/gnome-dev-memory.svg +# Icons/Chicago95/devices/scalable/drive-encrypted.svg +# Icons/Chicago95/devices/scalable/gnome-phone-manager.svg +# Icons/Chicago95/devices/scalable/blueman-handheld.svg +# Icons/Chicago95/devices/scalable/multimedia-player.svg +# Icons/Chicago95/devices/scalable/cupsprinter.svg +# Icons/Chicago95/devices/scalable/drive-harddisk-ieee1394.svg +# Icons/Chicago95/devices/scalable/input-gaming.svg +# Icons/Chicago95/devices/scalable/input-mouse.svg +# Icons/Chicago95/devices/scalable/multimedia-player-apple-ipod-touch.svg +# Icons/Chicago95/devices/scalable/foomatic-gui-logo.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-flash-sm.svg +# Icons/Chicago95/devices/scalable/camera-video.svg +# Icons/Chicago95/devices/scalable/blueman-keyboard.svg +# Icons/Chicago95/devices/scalable/gnome-dev-printer-network.svg +# Icons/Chicago95/devices/scalable/pda.svg +# Icons/Chicago95/devices/scalable/blueman-device.svg +# Icons/Chicago95/devices/scalable/media-tape.svg +# Icons/Chicago95/devices/scalable/media-memory-sd.svg +# Icons/Chicago95/devices/scalable/network-wired.svg +# Icons/Chicago95/devices/scalable/phone.svg +# Icons/Chicago95/devices/scalable/scanner.svg +# Icons/Chicago95/devices/scalable/blueman-mouse.svg +# Icons/Chicago95/devices/scalable/gnome-dev-flashdisk.svg +# Icons/Chicago95/devices/scalable/media-optical-hddvd.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd-rom.svg +# Icons/Chicago95/devices/scalable/battery.svg +# Icons/Chicago95/devices/scalable/media-cdrom.svg +# Icons/Chicago95/devices/scalable/media-dvd.svg +# Icons/Chicago95/devices/scalable/blueman-scanner.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-flash-ms.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-dvdr.svg +# Icons/Chicago95/devices/scalable/gnome-settings-mouse.svg +# Icons/Chicago95/devices/scalable/gnome-dev-unknown-1394.svg +# Icons/Chicago95/devices/scalable/gnome-mouse.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-audio.svg +# Icons/Chicago95/devices/scalable/media-optical-cd.svg +# Icons/Chicago95/devices/scalable/audio-card.svg +# Icons/Chicago95/devices/scalable/dvd_unmount.svg +# Icons/Chicago95/devices/scalable/media-optical-cdr.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd-ram.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-dvdr-plus.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-floppy.svg +# Icons/Chicago95/devices/scalable/gtk-cdrom.svg +# Icons/Chicago95/devices/scalable/block-device.svg +# Icons/Chicago95/devices/scalable/gtklp.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-flash.svg +# Icons/Chicago95/devices/scalable/network-wireless.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-usb.svg +# Icons/Chicago95/devices/scalable/printer.svg +# Icons/Chicago95/devices/scalable/media-memory-sm.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-dvdram.svg +# Icons/Chicago95/devices/scalable/media-floppy.svg +# Icons/Chicago95/devices/scalable/media-cdrom-audio.svg +# Icons/Chicago95/devices/scalable/gnome-mouse-properties.svg +# Icons/Chicago95/devices/scalable/media-optical-cd-rw.svg +# Icons/Chicago95/devices/scalable/camera-web.svg +# Icons/Chicago95/devices/scalable/gnome-dev-flashkey.svg +# Icons/Chicago95/devices/scalable/multimedia-player-ipod-touch.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-dvdrom.svg +# Icons/Chicago95/devices/scalable/media-optical-audio.svg +# Icons/Chicago95/devices/scalable/modem.svg +# Icons/Chicago95/devices/scalable/media-memory.svg +# Icons/Chicago95/devices/scalable/system-config-printer.svg +# Icons/Chicago95/devices/scalable/media-optical-dvd-r-plus.svg +# Icons/Chicago95/devices/scalable/media-optical-cd-r.svg +# Icons/Chicago95/devices/scalable/gnome-dev-disc-cdr.svg +# Icons/Chicago95/devices/scalable/gnome-dev-pcmcia.svg +# Icons/Chicago95/devices/scalable/computer.svg +# Icons/Chicago95/devices/scalable/media-cdr.svg +# Icons/Chicago95/devices/scalable/camera-photo.svg +# Icons/Chicago95/devices/scalable/drive-optical.svg +# Icons/Chicago95/devices/scalable/bluetooth.svg +# Icons/Chicago95/devices/scalable/blueman-cellular.svg +# Icons/Chicago95/devices/scalable/media-optical.svg +# Icons/Chicago95/devices/scalable/drive-removable-media-ieee1394.svg +# Icons/Chicago95/devices/scalable/gtklpq.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-blue.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-violet.svg +# Icons/Chicago95/emblems/scalable/emblem-favorite.svg +# Icons/Chicago95/emblems/scalable/emblem-new.svg +# Icons/Chicago95/emblems/scalable/emblem-shared.svg +# Icons/Chicago95/emblems/scalable/emblem-nowrite.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-yellow.svg +# Icons/Chicago95/emblems/scalable/emblem-mail.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-white.svg +# Icons/Chicago95/emblems/scalable/emblem-downloads.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-grey.svg +# Icons/Chicago95/emblems/scalable/emblem-system.svg +# Icons/Chicago95/emblems/scalable/emblem-important.svg +# Icons/Chicago95/emblems/scalable/emblem-package.svg +# Icons/Chicago95/emblems/scalable/emblem-web.svg +# Icons/Chicago95/emblems/scalable/emblem-noread.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-red.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-orange.svg +# Icons/Chicago95/emblems/scalable/emblem-symbolic-link.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-green.svg +# Icons/Chicago95/emblems/scalable/emblem-colors-brown.svg +# Icons/Chicago95/emblems/scalable/emblem-photos.svg +# Icons/Chicago95/emblems/scalable/emblem-default.svg +# Icons/Chicago95/emblems/scalable/emblem-documents.svg +# Icons/Chicago95/emblems/scalable/emblem-urgent.svg +# Icons/Chicago95/emblems/scalable/emblem-generic.svg +# Icons/Chicago95/emblems/scalable/emblem-unreadable.svg +# Icons/Chicago95/emblems/scalable/emblem-readonly.svg +# Icons/Chicago95/apps/scalable/im-msn_48.svg +# Icons/Chicago95/apps/scalable/pidgin.svg +# Icons/Chicago95/apps/scalable/xfce4-panel.svg +# Icons/Chicago95/apps/scalable/gnome-logout.svg +# Icons/Chicago95/apps/scalable/transmission.svg +# Icons/Chicago95/apps/scalable/gnome-desktop-config.svg +# Icons/Chicago95/apps/scalable/firefox.svg +# Icons/Chicago95/apps/scalable/virtualbox.svg +# Icons/Chicago95/apps/scalable/news-feed.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-font.svg +# Icons/Chicago95/apps/scalable/easytag.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-accesibility.svg +# Icons/Chicago95/apps/scalable/xfce4-cpugraph-plugin.svg +# Icons/Chicago95/apps/scalable/gnome-panel-window-list.svg +# Icons/Chicago95/apps/scalable/palm-pilot.svg +# Icons/Chicago95/apps/scalable/mail.svg +# Icons/Chicago95/apps/scalable/gnome-session-reboot.svg +# Icons/Chicago95/apps/scalable/multimedia-photo-manager.svg +# Icons/Chicago95/apps/scalable/internet-news-reader.svg +# Icons/Chicago95/apps/scalable/leafpad.svg +# Icons/Chicago95/apps/scalable/preferences-desktop.svg +# Icons/Chicago95/apps/scalable/web-browser.svg +# Icons/Chicago95/apps/scalable/multimedia-video-player.svg +# Icons/Chicago95/apps/scalable/apport.svg +# Icons/Chicago95/apps/scalable/invest-applet.svg +# Icons/Chicago95/apps/scalable/multimedia-audio-player.svg +# Icons/Chicago95/apps/scalable/xfce4-splash.svg +# Icons/Chicago95/apps/scalable/audio-player.svg +# Icons/Chicago95/apps/scalable/software.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-remote-desktop.svg +# Icons/Chicago95/apps/scalable/application-default-icon.svg +# Icons/Chicago95/apps/scalable/midori.svg +# Icons/Chicago95/apps/scalable/facebook.svg +# Icons/Chicago95/apps/scalable/xchat-gnome.svg +# Icons/Chicago95/apps/scalable/im-msn.svg +# Icons/Chicago95/apps/scalable/chromium-browser.svg +# Icons/Chicago95/apps/scalable/ccsm.svg +# Icons/Chicago95/apps/scalable/abiword.svg +# Icons/Chicago95/apps/scalable/gnome-panel-workspace-switcher.svg +# Icons/Chicago95/apps/scalable/gnome-sound-recorder.svg +# Icons/Chicago95/apps/scalable/youtube.svg +# Icons/Chicago95/apps/scalable/gmail.svg +# Icons/Chicago95/apps/scalable/im-jabber.svg +# Icons/Chicago95/apps/scalable/empathy.svg +# Icons/Chicago95/apps/scalable/libreoffice-base.svg +# Icons/Chicago95/apps/scalable/eom.svg +# Icons/Chicago95/apps/scalable/gnome-network-properties.svg +# Icons/Chicago95/apps/scalable/gnome-inhibit-applet.svg +# Icons/Chicago95/apps/scalable/im.svg +# Icons/Chicago95/apps/scalable/preferences-system-power.svg +# Icons/Chicago95/apps/scalable/gnome-shutdown.svg +# Icons/Chicago95/apps/scalable/shotwell.svg +# Icons/Chicago95/apps/scalable/libreoffice-math.svg +# Icons/Chicago95/apps/scalable/miro-browse.svg +# Icons/Chicago95/apps/scalable/locale_48x48.svg +# Icons/Chicago95/apps/scalable/archive-manager.svg +# Icons/Chicago95/apps/scalable/user-info.svg +# Icons/Chicago95/apps/scalable/office-address-book.svg +# Icons/Chicago95/apps/scalable/system-software-install.svg +# Icons/Chicago95/apps/scalable/gimp.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-wallpaper.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-locale.svg +# Icons/Chicago95/apps/scalable/eject_pc_cool_6_48x48x4.svg +# Icons/Chicago95/apps/scalable/aptoncd.svg +# Icons/Chicago95/apps/scalable/gnome-fs-bookmark-missing.svg +# Icons/Chicago95/apps/scalable/xfce4-workspaces.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-keyboard.svg +# Icons/Chicago95/apps/scalable/gnome-nettool.svg +# Icons/Chicago95/apps/scalable/session-properties.svg +# Icons/Chicago95/apps/scalable/inkscape.svg +# Icons/Chicago95/apps/scalable/gnome-session-switch.svg +# Icons/Chicago95/apps/scalable/gmusicbrowser.svg +# Icons/Chicago95/apps/scalable/mahjong.svg +# Icons/Chicago95/apps/scalable/minesweper.svg +# Icons/Chicago95/apps/scalable/palm-pilot-sync.svg +# Icons/Chicago95/apps/scalable/ibus.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-screensaver.svg +# Icons/Chicago95/apps/scalable/dconf.svg +# Icons/Chicago95/apps/scalable/totem.svg +# Icons/Chicago95/apps/scalable/office-calendar.svg +# Icons/Chicago95/apps/scalable/xfce4-notifyd.svg +# Icons/Chicago95/apps/scalable/serpentine.svg +# Icons/Chicago95/apps/scalable/catfish.svg +# Icons/Chicago95/apps/scalable/gnome-session-suspend.svg +# Icons/Chicago95/apps/scalable/plugin-scale.svg +# Icons/Chicago95/apps/scalable/internet-mail.svg +# Icons/Chicago95/apps/scalable/hwbrowser.svg +# Icons/Chicago95/apps/scalable/help-browser.svg +# Icons/Chicago95/apps/scalable/gnome-session-hibernate.svg +# Icons/Chicago95/apps/scalable/scanner.svg +# Icons/Chicago95/apps/scalable/mateconf-editor.svg +# Icons/Chicago95/apps/scalable/preferences-system-network.svg +# Icons/Chicago95/apps/scalable/gnome-panel-force-quit.svg +# Icons/Chicago95/apps/scalable/application-community.svg +# Icons/Chicago95/apps/scalable/utilities-system-monitor.svg +# Icons/Chicago95/apps/scalable/accessories-calculator.svg +# Icons/Chicago95/apps/scalable/libreoffice-calc.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-theme.svg +# Icons/Chicago95/apps/scalable/mate-preferences-desktop-display.svg +# Icons/Chicago95/apps/scalable/time-admin.svg +# Icons/Chicago95/apps/scalable/gnome-panel-notification-area.svg +# Icons/Chicago95/apps/scalable/google-hangout.svg +# Icons/Chicago95/apps/scalable/evolution.svg +# Icons/Chicago95/apps/scalable/accessories-dictionary.svg +# Icons/Chicago95/apps/scalable/system-file-manager.svg +# Icons/Chicago95/apps/scalable/xfce4-weather.svg +# Icons/Chicago95/apps/scalable/postscript-viewer.svg +# Icons/Chicago95/apps/scalable/ooo-writer.svg +# Icons/Chicago95/apps/scalable/lxfind_48.svg +# Icons/Chicago95/apps/scalable/system-software-update.svg +# Icons/Chicago95/apps/scalable/softwarecenter.svg +# Icons/Chicago95/apps/scalable/media-player-banshee.svg +# Icons/Chicago95/apps/scalable/gcolor2.svg +# Icons/Chicago95/apps/scalable/display-capplet.svg +# Icons/Chicago95/apps/scalable/im-aim.svg +# Icons/Chicago95/apps/scalable/mate-notification-properties.svg +# Icons/Chicago95/apps/scalable/libreoffice-main.svg +# Icons/Chicago95/apps/scalable/tomboy.svg +# Icons/Chicago95/apps/scalable/lxfind.svg +# Icons/Chicago95/apps/scalable/mplayer.svg +# Icons/Chicago95/apps/scalable/mate-power-manager.svg +# Icons/Chicago95/apps/scalable/xfce4-fsguard-plugin-warning.svg +# Icons/Chicago95/apps/scalable/do.svg +# Icons/Chicago95/apps/scalable/calc.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-keyboard-shortcuts.svg +# Icons/Chicago95/apps/scalable/accessories-character-map.svg +# Icons/Chicago95/apps/scalable/applets-screenshooter.svg +# Icons/Chicago95/apps/scalable/gksu-root-terminal.svg +# Icons/Chicago95/apps/scalable/preferences-system-windows.svg +# Icons/Chicago95/apps/scalable/checkbox.svg +# Icons/Chicago95/apps/scalable/desktop-effects.svg +# Icons/Chicago95/apps/scalable/ooo-draw.svg +# Icons/Chicago95/apps/scalable/stock_keyring.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-default-applications.svg +# Icons/Chicago95/apps/scalable/xfce4-whiskermenu.svg +# Icons/Chicago95/apps/scalable/mdmsetup.svg +# Icons/Chicago95/apps/scalable/system-users.svg +# Icons/Chicago95/apps/scalable/mate-panel-launcher.svg +# Icons/Chicago95/apps/scalable/miro.svg +# Icons/Chicago95/apps/scalable/logviewer.svg +# Icons/Chicago95/apps/scalable/utilities-terminal.svg +# Icons/Chicago95/apps/scalable/onboard.svg +# Icons/Chicago95/apps/scalable/gconf-editor.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-sound.svg +# Icons/Chicago95/apps/scalable/baobab.svg +# Icons/Chicago95/apps/scalable/gthumb.svg +# Icons/Chicago95/apps/scalable/im-yahoo.svg +# Icons/Chicago95/apps/scalable/wine.svg +# Icons/Chicago95/apps/scalable/ooo-base.svg +# Icons/Chicago95/apps/scalable/gnome-panel-clock.svg +# Icons/Chicago95/apps/scalable/libreoffice-impress.svg +# Icons/Chicago95/apps/scalable/gstreamer-properties.svg +# Icons/Chicago95/apps/scalable/ubiquity.svg +# Icons/Chicago95/apps/scalable/bluetooth.svg +# Icons/Chicago95/apps/scalable/thunderbird.svg +# Icons/Chicago95/apps/scalable/preferences-desktop-accessibility.svg +# Icons/Chicago95/places/scalable/start-here.svg +# Icons/Chicago95/places/scalable/folder-documents.svg +# Icons/Chicago95/places/scalable/folder-publicshare.svg +# Icons/Chicago95/places/scalable/application-x-gnome-saved-search.svg +# Icons/Chicago95/places/scalable/folder_home.svg +# Icons/Chicago95/places/scalable/folder-templates-symbolic.svg +# Icons/Chicago95/places/scalable/folder-music-symbolic.svg +# Icons/Chicago95/places/scalable/folder-drag-accept.svg +# Icons/Chicago95/places/scalable/stock_music-library.svg +# Icons/Chicago95/places/scalable/distributor-logo.svg +# Icons/Chicago95/places/scalable/emptytrash.svg +# Icons/Chicago95/places/scalable/folder_images.svg +# Icons/Chicago95/places/scalable/folder-ubuntuone.svg +# Icons/Chicago95/places/scalable/mail-outbox.svg +# Icons/Chicago95/places/scalable/bookmark-missing.svg +# Icons/Chicago95/places/scalable/desktop.svg +# Icons/Chicago95/places/scalable/folder_download.svg +# Icons/Chicago95/places/scalable/folder-remote-ftp.svg +# Icons/Chicago95/places/scalable/folder_open.svg +# Icons/Chicago95/places/scalable/user-bookmarks.svg +# Icons/Chicago95/places/scalable/network-server.svg +# Icons/Chicago95/places/scalable/mail-inbox.svg +# Icons/Chicago95/places/scalable/folder-recent.svg +# Icons/Chicago95/places/scalable/folder-videos.svg +# Icons/Chicago95/places/scalable/gnome-fs-bookmark.svg +# Icons/Chicago95/places/scalable/mail-mailbox.svg +# Icons/Chicago95/places/scalable/edittrash.svg +# Icons/Chicago95/stock/scalable/stock_network-printer.svg +# Icons/Chicago95/stock/scalable/avatar-default.svg +# Icons/Chicago95/stock/scalable/stock_people.svg +# Icons/Chicago95-tux/animations/48/pk-action-refresh-cache.svg +# Icons/Chicago95-tux/animations/16/process-idle.svg +# Icons/Chicago95-tux/animations/22/process-idle.svg +# Icons/Chicago95-tux/animations/10/process-idle.svg +# Icons/Chicago95-tux/actions/scalable/gtk-print-paused.svg +# Icons/Chicago95-tux/actions/scalable/help-contents.svg +# Icons/Chicago95-tux/actions/scalable/gtk-edit.svg +# Icons/Chicago95-tux/actions/scalable/mail-reply-sender.svg +# Icons/Chicago95-tux/actions/scalable/process-stop.svg +# Icons/Chicago95-tux/actions/scalable/format-text-bold.svg +# Icons/Chicago95-tux/actions/scalable/go-first.svg +# Icons/Chicago95-tux/actions/scalable/tab-new.svg +# Icons/Chicago95-tux/actions/scalable/bookmark-new.svg +# Icons/Chicago95-tux/actions/scalable/format-justify-fill.svg +# Icons/Chicago95-tux/actions/scalable/application-exit.svg +# Icons/Chicago95-tux/actions/scalable/help-about.svg +# Icons/Chicago95-tux/actions/scalable/format-justify-right.svg +# Icons/Chicago95-tux/actions/scalable/zoom-in.svg +# Icons/Chicago95-tux/actions/scalable/document-print-preview.svg +# Icons/Chicago95-tux/actions/scalable/appointment-new.svg +# Icons/Chicago95-tux/actions/scalable/view-fullscreen.svg +# Icons/Chicago95-tux/actions/scalable/format-text-underline.svg +# Icons/Chicago95-tux/actions/scalable/help-info.svg +# Icons/Chicago95-tux/actions/scalable/folder-new.svg +# Icons/Chicago95-tux/actions/scalable/window-close.svg +# Icons/Chicago95-tux/actions/scalable/go-top.svg +# Icons/Chicago95-tux/actions/scalable/edit-copy.svg +# Icons/Chicago95-tux/actions/scalable/insert-link.svg +# Icons/Chicago95-tux/actions/scalable/gtk-no.svg +# Icons/Chicago95-tux/actions/scalable/edit-redo.svg +# Icons/Chicago95-tux/actions/scalable/object-flip-horizontal.svg +# Icons/Chicago95-tux/actions/scalable/go-bottom.svg +# Icons/Chicago95-tux/actions/scalable/edit-delete.svg +# Icons/Chicago95-tux/actions/scalable/format-indent-less.svg +# Icons/Chicago95-tux/actions/scalable/format-text-direction-rtl.svg +# Icons/Chicago95-tux/actions/scalable/edit-find.svg +# Icons/Chicago95-tux/actions/scalable/list-remove.svg +# Icons/Chicago95-tux/actions/scalable/document-print.svg +# Icons/Chicago95-tux/actions/scalable/media-playback-pause.svg +# Icons/Chicago95-tux/actions/scalable/window-new.svg +# Icons/Chicago95-tux/actions/scalable/object-flip-vertical.svg +# Icons/Chicago95-tux/actions/scalable/media-record.svg +# Icons/Chicago95-tux/actions/scalable/system-restart.svg +# Icons/Chicago95-tux/actions/scalable/system-lock-screen.svg +# Icons/Chicago95-tux/actions/scalable/tools-check-spelling.svg +# Icons/Chicago95-tux/actions/scalable/help-faq.svg +# Icons/Chicago95-tux/actions/scalable/dialog-apply.svg +# Icons/Chicago95-tux/actions/scalable/mail-mark-unread.svg +# Icons/Chicago95-tux/actions/scalable/call-start.svg +# Icons/Chicago95-tux/actions/scalable/document-properties.svg +# Icons/Chicago95-tux/actions/scalable/insert-text.svg +# Icons/Chicago95-tux/actions/scalable/list-add.svg +# Icons/Chicago95-tux/actions/scalable/go-down.svg +# Icons/Chicago95-tux/actions/scalable/document-save-as.svg +# Icons/Chicago95-tux/actions/scalable/call-stop.svg +# Icons/Chicago95-tux/actions/scalable/gtk-apply.svg +# Icons/Chicago95-tux/actions/scalable/go-up.svg +# Icons/Chicago95-tux/actions/scalable/zoom-fit-best.svg +# Icons/Chicago95-tux/actions/scalable/mail-send-receive.svg +# Icons/Chicago95-tux/actions/scalable/document-open.svg +# Icons/Chicago95-tux/actions/scalable/go-jump.svg +# Icons/Chicago95-tux/actions/scalable/document-import.svg +# Icons/Chicago95-tux/actions/scalable/mail-reply-all.svg +# Icons/Chicago95-tux/actions/scalable/edit-find-replace.svg +# Icons/Chicago95-tux/actions/scalable/view-sort-descending.svg +# Icons/Chicago95-tux/actions/scalable/document-save.svg +# Icons/Chicago95-tux/actions/scalable/system-log-out.svg +# Icons/Chicago95-tux/actions/scalable/document-export.svg +# Icons/Chicago95-tux/actions/scalable/object-rotate-right.svg +# Icons/Chicago95-tux/actions/scalable/gtk-print-error.svg +# Icons/Chicago95-tux/actions/scalable/go-home.svg +# Icons/Chicago95-tux/actions/scalable/document-open-recent.svg +# Icons/Chicago95-tux/actions/scalable/go-next.svg +# Icons/Chicago95-tux/actions/scalable/mail-send.svg +# Icons/Chicago95-tux/actions/scalable/format-text-direction-ltr.svg +# Icons/Chicago95-tux/actions/scalable/edit-select-all.svg +# Icons/Chicago95-tux/actions/scalable/media-skip-backward.svg +# Icons/Chicago95-tux/actions/scalable/media-playback-stop.svg +# Icons/Chicago95-tux/actions/scalable/edit-cut.svg +# Icons/Chicago95-tux/actions/scalable/gtk-print-report.svg +# Icons/Chicago95-tux/actions/scalable/document-page-setup.svg +# Icons/Chicago95-tux/actions/scalable/edit-undo.svg +# Icons/Chicago95-tux/actions/scalable/format-justify-left.svg +# Icons/Chicago95-tux/actions/scalable/contact-new.svg +# Icons/Chicago95-tux/actions/scalable/mail-mark-important.svg +# Icons/Chicago95-tux/actions/scalable/media-import-audio-cd.svg +# Icons/Chicago95-tux/actions/scalable/zoom-original.svg +# Icons/Chicago95-tux/actions/scalable/object-inverse.svg +# Icons/Chicago95-tux/actions/scalable/media-seek-backward.svg +# Icons/Chicago95-tux/actions/scalable/mail-forward.svg +# Icons/Chicago95-tux/actions/scalable/gtk-print-warning.svg +# Icons/Chicago95-tux/actions/scalable/insert-image.svg +# Icons/Chicago95-tux/actions/scalable/address-book-new.svg +# Icons/Chicago95-tux/actions/scalable/jockey-proprietary.svg +# Icons/Chicago95-tux/actions/scalable/document-new.svg +# Icons/Chicago95-tux/actions/scalable/insert-object.svg +# Icons/Chicago95-tux/actions/scalable/view-sort-ascending.svg +# Icons/Chicago95-tux/actions/scalable/media-skip-forward.svg +# Icons/Chicago95-tux/actions/scalable/edit-paste.svg +# Icons/Chicago95-tux/actions/scalable/system-run.svg +# Icons/Chicago95-tux/actions/scalable/format-text-italic.svg +# Icons/Chicago95-tux/actions/scalable/mail-mark-read.svg +# Icons/Chicago95-tux/actions/scalable/system-search.svg +# Icons/Chicago95-tux/actions/scalable/format-text-strikethrough.svg +# Icons/Chicago95-tux/actions/scalable/media-playback-start.svg +# Icons/Chicago95-tux/actions/scalable/view-restore.svg +# Icons/Chicago95-tux/actions/scalable/edit-clear.svg +# Icons/Chicago95-tux/actions/scalable/zoom-out.svg +# Icons/Chicago95-tux/actions/scalable/document-revert.svg +# Icons/Chicago95-tux/actions/scalable/document-send.svg +# Icons/Chicago95-tux/actions/scalable/mail-message-new.svg +# Icons/Chicago95-tux/actions/scalable/go-previous.svg +# Icons/Chicago95-tux/actions/scalable/object-rotate-left.svg +# Icons/Chicago95-tux/actions/scalable/tag-new.svg +# Icons/Chicago95-tux/actions/scalable/format-justify-center.svg +# Icons/Chicago95-tux/actions/scalable/media-seek-forward.svg +# Icons/Chicago95-tux/actions/scalable/view-refresh.svg +# Icons/Chicago95-tux/actions/scalable/go-last.svg +# Icons/Chicago95-tux/actions/scalable/media-eject.svg +# Icons/Chicago95-tux/actions/scalable/format-indent-more.svg +# Icons/Chicago95-tux/actions/scalable/system-shutdown.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-win-bitmap.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-shar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-lha.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-bzip.svg +# Icons/Chicago95-tux/mimes/scalable/package_editors.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-flac+ogg.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-lzma.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-html.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-drawing-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-bdf.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-sqlite3.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.text.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.spreadsheet-template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-chdr.svg +# Icons/Chicago95-tux/mimes/scalable/txt.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-sh.svg +# Icons/Chicago95-tux/mimes/scalable/image.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-lha.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-presentation-template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-script.svg +# Icons/Chicago95-tux/mimes/scalable/stock_smart-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-cd-image.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.ms-powerpoint.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-package.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-python-bytecode.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-perl.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-presentation.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-presentation.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-powerpoint.svg +# Icons/Chicago95-tux/mimes/scalable/unknown.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.impress.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-gtkrc.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-python.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-c.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-gtkrc.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-install.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-excel.sheet.macroEnabled.12.svg +# Icons/Chicago95-tux/mimes/scalable/media-image.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-drawing.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-mpeg.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-java-source.svg +# Icons/Chicago95-tux/mimes/scalable/package-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-stuffit.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-ms-wma.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-spreadsheet-template.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-scpls.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-archive.svg +# Icons/Chicago95-tux/mimes/scalable/jpg.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-drawing-template.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-speex+ogg.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-perl.svg +# Icons/Chicago95-tux/mimes/scalable/video-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-desktop.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-dvi.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-presentation.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.text-template.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-tga.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.impress.template.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-flash-video.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-generic-template.svg +# Icons/Chicago95-tux/mimes/scalable/source-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-gzip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.rn-realmedia-vbr.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-lzma.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-abiword.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-ruby.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-copying.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg +# Icons/Chicago95-tux/mimes/scalable/wordprocessing.svg +# Icons/Chicago95-tux/mimes/scalable/stock_calendar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-audio.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-deb.svg +# Icons/Chicago95-tux/mimes/scalable/office-database.svg +# Icons/Chicago95-tux/mimes/scalable/application-rss+xml.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-zip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.writer.template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.rn-realmedia.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-java.svg +# Icons/Chicago95-tux/mimes/scalable/audio-mpeg.svg +# Icons/Chicago95-tux/mimes/scalable/image-jpeg2000.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-rss+xml.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-jpeg.svg +# Icons/Chicago95-tux/mimes/scalable/application-zip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.calc.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-linux-psf.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-x-psd.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-bittorrent.svg +# Icons/Chicago95-tux/mimes/scalable/spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.drawing-template.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.sun.xml.draw.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-7z-compressed.svg +# Icons/Chicago95-tux/mimes/scalable/archive.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-vcalendar.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-sln.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/image-bmp.svg +# Icons/Chicago95-tux/mimes/scalable/application-rtf.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-trash.svg +# Icons/Chicago95-tux/mimes/scalable/tar.svg +# Icons/Chicago95-tux/mimes/scalable/rar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-authors.svg +# Icons/Chicago95-tux/mimes/scalable/media-audio.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-javascript.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-matroska.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-tiff.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-class-file.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-cpio-compressed.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-java-archive.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-presentation-template.svg +# Icons/Chicago95-tux/mimes/scalable/sound.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-arj.svg +# Icons/Chicago95-tux/mimes/scalable/application-atom+xml.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-javascript.svg +# Icons/Chicago95-tux/mimes/scalable/zip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.drawing.svg +# Icons/Chicago95-tux/mimes/scalable/vcard.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.wordperfect.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-lzop.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-text-remplate.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-glade.svg +# Icons/Chicago95-tux/mimes/scalable/stock_addressbook.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-fs-executable.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-python.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-source.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-kspread.svg +# Icons/Chicago95-tux/mimes/scalable/application-pdf.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-rpm.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-rpm.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.ms-cab-compressed.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-executable.svg +# Icons/Chicago95-tux/mimes/scalable/package_wordprocessing.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-applix-word.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-stuffit.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-calendar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.lotus-1-2-3.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-sqlite2.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.sun.xml.writer.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-php.svg +# Icons/Chicago95-tux/mimes/scalable/text-html.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-m4.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +# Icons/Chicago95-tux/mimes/scalable/office-document.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-x-cmu-raster.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-changelog.svg +# Icons/Chicago95-tux/mimes/scalable/application-ogg.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.rn-realmedia.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-afm.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-zip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-csharp.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-drawing-template.svg +# Icons/Chicago95-tux/mimes/scalable/text2.svg +# Icons/Chicago95-tux/mimes/scalable/rpm.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-xml.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-python-bytecode.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-class-file.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-formula.svg +# Icons/Chicago95-tux/mimes/scalable/stock_playlist.svg +# Icons/Chicago95-tux/mimes/scalable/gedit-plugin.svg +# Icons/Chicago95-tux/mimes/scalable/application-illustrator.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-lzma-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/openofficeorg3-database.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-document-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-scribus.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-document.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.presentation.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-lhz.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-gzpostscript.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-cpio.svg +# Icons/Chicago95-tux/mimes/scalable/office-contact.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-c++.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-vcard.svg +# Icons/Chicago95-tux/mimes/scalable/exec.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-adress-book.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-ms-dos-executable.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-compress.svg +# Icons/Chicago95-tux/mimes/scalable/font_truetype.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-shellscript.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-java.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-gif.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-spreadsheet-template.svg +# Icons/Chicago95-tux/mimes/scalable/openofficeorg3-oasis-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-install.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-text.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-c++src.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.writer.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.image.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-bzip-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-bittorrent.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-javascript.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-jar.svg +# Icons/Chicago95-tux/mimes/scalable/libpeas-plugin.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-zip.svg +# Icons/Chicago95-tux/mimes/scalable/application-xml.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-makefile.svg +# Icons/Chicago95-tux/mimes/scalable/multipart-encrypted.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-svg+xml.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-cpio.svg +# Icons/Chicago95-tux/mimes/scalable/stock_script.svg +# Icons/Chicago95-tux/mimes/scalable/mime_ascii.svg +# Icons/Chicago95-tux/mimes/scalable/vnd.oasis.opendocument.drawing.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-csh.svg +# Icons/Chicago95-tux/mimes/scalable/video.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-x-font-afm.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-theme.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +# Icons/Chicago95-tux/mimes/scalable/font_type1.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-shockwave-flash.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-msword.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-kword.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-ruby.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.chart.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-deb.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-access.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-perl.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-gnome-theme-package.svg +# Icons/Chicago95-tux/mimes/scalable/document.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-video-x-ms-wmv.svg +# Icons/Chicago95-tux/mimes/scalable/text-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-c.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-csproj.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-extension.svg +# Icons/Chicago95-tux/mimes/scalable/plan.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-shellscript.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-jar.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-spreadsheet-template.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.database.svg +# Icons/Chicago95-tux/mimes/scalable/font_bitmap.svg +# Icons/Chicago95-tux/mimes/scalable/text-enriched.svg +# Icons/Chicago95-tux/mimes/scalable/authors.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-java-archive.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-x-portable-bitmap.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-arj.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-killustrator.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-desktop.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-java.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.graphics.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-credits.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-chdr.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-smart-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-calc.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-formula.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-tar.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-c++.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/application-install.svg +# Icons/Chicago95-tux/mimes/scalable/openofficeorg3-oasis-database.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-theme.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-xhtml+xml.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-postscript.svg +# Icons/Chicago95-tux/mimes/scalable/source-smart-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-java-source.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-rar.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-lhz.svg +# Icons/Chicago95-tux/mimes/scalable/misc.svg +# Icons/Chicago95-tux/mimes/scalable/text-xml.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-shar.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-cab-compressed.svg +# Icons/Chicago95-tux/mimes/scalable/text-css.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.presentation-template.svg +# Icons/Chicago95-tux/mimes/scalable/txt2.svg +# Icons/Chicago95-tux/mimes/scalable/image-gif.svg +# Icons/Chicago95-tux/mimes/scalable/text-directory.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-compress.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.draw.template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-vala.svg +# Icons/Chicago95-tux/mimes/scalable/gtk-file.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-executable.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-copying.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.chart.png.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-video-x-ms-asf.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-makefile.svg +# Icons/Chicago95-tux/mimes/scalable/svg.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-css.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-gnumeric.svg +# Icons/Chicago95-tux/mimes/scalable/empty_48x48.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.calc.template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/text.svg +# Icons/Chicago95-tux/mimes/scalable/jpeg.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-text.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-credits.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-gnumeric.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-psdimage-x-psd.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-readme.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.presentationml.template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-ruby.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.formula.svg +# Icons/Chicago95-tux/mimes/scalable/package.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.sun.xml.draw.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.stardivision.impress.svg +# Icons/Chicago95-tux/mimes/scalable/contents2.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-readme.svg +# Icons/Chicago95-tux/mimes/scalable/www.svg +# Icons/Chicago95-tux/mimes/scalable/application-msword.svg +# Icons/Chicago95-tux/mimes/scalable/vcalendar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-png.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-portable-bitmap.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-ace.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-zsh.svg +# Icons/Chicago95-tux/mimes/scalable/image-jpeg.svg +# Icons/Chicago95-tux/mimes/scalable/office-illustration.svg +# Icons/Chicago95-tux/mimes/scalable/tgz.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-javascript.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-text-template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-csrc.svg +# Icons/Chicago95-tux/mimes/scalable/text-richtext.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-shockwave-flash.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-kgw.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-mp3-playlist.svg +# Icons/Chicago95-tux/mimes/scalable/playlist.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-authors.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-gnome-app-info.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-ttf.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.sun.xml.calc.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.ms-excel.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-video.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-fs-regular.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-bzip.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-mpegurl.svg +# Icons/Chicago95-tux/mimes/scalable/image-tiff.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-pcf.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-object.svg +# Icons/Chicago95-tux/mimes/scalable/template_source.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-excel.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-ace.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-csharp.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-7z-compressed.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-word.document.macroEnabled.12.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-rtf.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-zoo.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-ms-dos-executable.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-c++src.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-sql.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-psd.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-kpresenter.svg +# Icons/Chicago95-tux/mimes/scalable/image-png.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-lzma-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-ogg.svg +# Icons/Chicago95-tux/mimes/scalable/text-html_alt.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-pdf.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-tarz.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-source.svg +# Icons/Chicago95-tux/mimes/scalable/text-plain.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-java.svg +# Icons/Chicago95-tux/mimes/scalable/internet-feed.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.graphics-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-font-sunos-news.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-compressed-xcf.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-ole-storage.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-presentation-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-gnome-theme-package.svg +# Icons/Chicago95-tux/mimes/scalable/ascii.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-tex.svg +# Icons/Chicago95-tux/mimes/scalable/folder_tar.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-wav.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-wordperfect.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-database.svg +# Icons/Chicago95-tux/mimes/scalable/binary.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-lzop.svg +# Icons/Chicago95-tux/mimes/scalable/application-7zip.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-css.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-changelog.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-applix-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/html.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-drawing.svg +# Icons/Chicago95-tux/mimes/scalable/x-office-address-book.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.presentation.svg +# Icons/Chicago95-tux/mimes/scalable/msaccess.exe_14_259_4_48x48x4.svg +# Icons/Chicago95-tux/mimes/scalable/font-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/empty.svg +# Icons/Chicago95-tux/mimes/scalable/application-epub+zip.svg +# Icons/Chicago95-tux/mimes/scalable/deb.svg +# Icons/Chicago95-tux/mimes/scalable/kpresenter_kpr.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-drawing.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/openofficeorg3-drawing.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-php.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.stardivision.calc.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-lua.svg +# Icons/Chicago95-tux/mimes/scalable/media-video.svg +# Icons/Chicago95-tux/mimes/scalable/extension.svg +# Icons/Chicago95-tux/mimes/scalable/playlist-automatic.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-atom+xml.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.oasis.opendocument.text-web.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-magicpoint.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-bzip-compressed-tar.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-preview.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-vnd.wap.wml.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +# Icons/Chicago95-tux/mimes/scalable/shellscript.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-vorbis+ogg.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.stardivision.writer.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-tar.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-bmp.svg +# Icons/Chicago95-tux/mimes/scalable/text-htmlh.svg +# Icons/Chicago95-tux/mimes/scalable/office-spreadsheet.svg +# Icons/Chicago95-tux/mimes/scalable/application-octet-stream.svg +# Icons/Chicago95-tux/mimes/scalable/application-postscript.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-msi.svg +# Icons/Chicago95-tux/mimes/scalable/application-vnd.ms-powerpoint.presentation.macroEnabled.12.svg +# Icons/Chicago95-tux/mimes/scalable/font.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-database.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.oasis.opendocument.text-template.svg +# Icons/Chicago95-tux/mimes/scalable/libreoffice-oasis-text-template.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-image-x-xpixmap.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-ico.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-x-gzip.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-application-vnd.rn-realmedia-secure.svg +# Icons/Chicago95-tux/mimes/scalable/audio-x-adpcm.svg +# Icons/Chicago95-tux/mimes/scalable/image-x-xcf.svg +# Icons/Chicago95-tux/mimes/scalable/text-x-generic.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-zoo.svg +# Icons/Chicago95-tux/mimes/scalable/gnome-mime-text-x-csrc.svg +# Icons/Chicago95-tux/mimes/scalable/application-x-rar.svg +# Icons/Chicago95-tux/status/scalable/security-low.svg +# Icons/Chicago95-tux/status/scalable/audio-volume-high-symbolic.svg +# Icons/Chicago95-tux/status/scalable/appointment-soon.svg +# Icons/Chicago95-tux/status/scalable/media-playlist-repeat.svg +# Icons/Chicago95-tux/status/scalable/weather-overcast.svg +# Icons/Chicago95-tux/status/scalable/weather-storm.svg +# Icons/Chicago95-tux/status/scalable/task-due.svg +# Icons/Chicago95-tux/status/scalable/folder-open.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-75-100.svg +# Icons/Chicago95-tux/status/scalable/software-update-urgent.svg +# Icons/Chicago95-tux/status/scalable/battery-100-charging.svg +# Icons/Chicago95-tux/status/scalable/battery-020-charging.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-error.svg +# Icons/Chicago95-tux/status/scalable/appointment-missed.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-tx.svg +# Icons/Chicago95-tux/status/scalable/weather-few-clouds.svg +# Icons/Chicago95-tux/status/scalable/battery-060.svg +# Icons/Chicago95-tux/status/scalable/network-wireless-100.svg +# Icons/Chicago95-tux/status/scalable/audio-volume-medium-symbolic.svg +# Icons/Chicago95-tux/status/scalable/weather-showers.svg +# Icons/Chicago95-tux/status/scalable/battery-060-charging.svg +# Icons/Chicago95-tux/status/scalable/dialog-information.svg +# Icons/Chicago95-tux/status/scalable/task-past-due.svg +# Icons/Chicago95-tux/status/scalable/mail-replied.svg +# Icons/Chicago95-tux/status/scalable/software-update-available.svg +# Icons/Chicago95-tux/status/scalable/weather-few-clouds-night.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-50-74.svg +# Icons/Chicago95-tux/status/scalable/connect_no.svg +# Icons/Chicago95-tux/status/scalable/battery-000-charging.svg +# Icons/Chicago95-tux/status/scalable/weather-clear-night.svg +# Icons/Chicago95-tux/status/scalable/battery-020.svg +# Icons/Chicago95-tux/status/scalable/battery-100.svg +# Icons/Chicago95-tux/status/scalable/battery-080.svg +# Icons/Chicago95-tux/status/scalable/audio-volume-low.svg +# Icons/Chicago95-tux/status/scalable/gnome-dev-wavelan-encrypted.svg +# Icons/Chicago95-tux/status/scalable/avatar-default.svg +# Icons/Chicago95-tux/status/scalable/weather-showers-scattered.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-idle.svg +# Icons/Chicago95-tux/status/scalable/printer-error.svg +# Icons/Chicago95-tux/status/scalable/media-playlist-shuffle.svg +# Icons/Chicago95-tux/status/scalable/dialog-password.svg +# Icons/Chicago95-tux/status/scalable/dialog-error.svg +# Icons/Chicago95-tux/status/scalable/user-trash-full.svg +# Icons/Chicago95-tux/status/scalable/aptdaemon-add.svg +# Icons/Chicago95-tux/status/scalable/mail-unread.svg +# Icons/Chicago95-tux/status/scalable/gnome-fs-loading-icon.svg +# Icons/Chicago95-tux/status/scalable/mail-read.svg +# Icons/Chicago95-tux/status/scalable/printer-printing.svg +# Icons/Chicago95-tux/status/scalable/battery-000.svg +# Icons/Chicago95-tux/status/scalable/weather-severe-alert.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-25-49.svg +# Icons/Chicago95-tux/status/scalable/battery-080-charging.svg +# Icons/Chicago95-tux/status/scalable/battery-040.svg +# Icons/Chicago95-tux/status/scalable/weather-clear.svg +# Icons/Chicago95-tux/status/scalable/security-medium.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-rx.svg +# Icons/Chicago95-tux/status/scalable/battery-ac-adapter.svg +# Icons/Chicago95-tux/status/scalable/weather-snow.svg +# Icons/Chicago95-tux/status/scalable/audio-volume-muted-symbolic.svg +# Icons/Chicago95-tux/status/scalable/battery-040-charging.svg +# Icons/Chicago95-tux/status/scalable/gnome-netstatus-0-24.svg +# Icons/Chicago95-tux/status/scalable/dialog-question.svg +# Icons/Chicago95-tux/status/scalable/connect_creating.svg +# Icons/Chicago95-tux/status/scalable/mail-attachment.svg +# Icons/Chicago95-tux/status/scalable/dialog-warning.svg +# Icons/Chicago95-tux/categories/scalable/documentation_section.svg +# Icons/Chicago95-tux/categories/scalable/configuration_section.svg +# Icons/Chicago95-tux/categories/scalable/applications-internet.svg +# Icons/Chicago95-tux/categories/scalable/xfdesktop-menu.svg.old +# Icons/Chicago95-tux/categories/scalable/preferences-desktop-personal.svg +# Icons/Chicago95-tux/categories/scalable/application-community.svg +# Icons/Chicago95-tux/categories/scalable/preferences-desktop-peripherals.svg +# Icons/Chicago95-tux/categories/scalable/plugins-general.svg +# Icons/Chicago95-tux/categories/scalable/xfdesktop-menu.svg +# Icons/Chicago95-tux/devices/scalable/blueman-desktop.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-cdrom-audio.svg +# Icons/Chicago95-tux/devices/scalable/audio-input-microphone.svg +# Icons/Chicago95-tux/devices/scalable/cdrom_unmount.svg +# Icons/Chicago95-tux/devices/scalable/gnome-screenshot.svg +# Icons/Chicago95-tux/devices/scalable/media-dvdrw.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-cdrom.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-printer-new.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-bd.svg +# Icons/Chicago95-tux/devices/scalable/phone-motorola-droid.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk-scsi.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd.svg +# Icons/Chicago95-tux/devices/scalable/media-jaz.svg +# Icons/Chicago95-tux/devices/scalable/cups.svg +# Icons/Chicago95-tux/devices/scalable/media-flash.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk-root.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd-r.svg +# Icons/Chicago95-tux/devices/scalable/video-display.svg +# Icons/Chicago95-tux/devices/scalable/multimedia-player-apple-ipod.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-unknown-usb.svg +# Icons/Chicago95-tux/devices/scalable/media-encrypted.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-flash-sd.svg +# Icons/Chicago95-tux/devices/scalable/media-zip.svg +# Icons/Chicago95-tux/devices/scalable/cdwriter_unmount.svg +# Icons/Chicago95-tux/devices/scalable/drive-optical-recorder.svg +# Icons/Chicago95-tux/devices/scalable/input-keyboard.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media.svg +# Icons/Chicago95-tux/devices/scalable/music-player.svg +# Icons/Chicago95-tux/devices/scalable/media-cdrw.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-flash-cf.svg +# Icons/Chicago95-tux/devices/scalable/blueman-smart-phone.svg +# Icons/Chicago95-tux/devices/scalable/blueman-pointing.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk-usb.svg +# Icons/Chicago95-tux/devices/scalable/stock_music-library.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk-system.svg +# Icons/Chicago95-tux/devices/scalable/gnome-computer.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-dvd-alt.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd-rw.svg +# Icons/Chicago95-tux/devices/scalable/input-tablet.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-media-memory.svg +# Icons/Chicago95-tux/devices/scalable/blueman-loudspeaker.svg +# Icons/Chicago95-tux/devices/scalable/gnome-cd.svg +# Icons/Chicago95-tux/devices/scalable/processor.svg +# Icons/Chicago95-tux/devices/scalable/multimedia-player-ipod.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-cdrw.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-dvdrw.svg +# Icons/Chicago95-tux/devices/scalable/gnome-fs-blockdev.svg +# Icons/Chicago95-tux/devices/scalable/monitor.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-jazdisk.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-memory.svg +# Icons/Chicago95-tux/devices/scalable/drive-encrypted.svg +# Icons/Chicago95-tux/devices/scalable/gnome-phone-manager.svg +# Icons/Chicago95-tux/devices/scalable/blueman-handheld.svg +# Icons/Chicago95-tux/devices/scalable/multimedia-player.svg +# Icons/Chicago95-tux/devices/scalable/cupsprinter.svg +# Icons/Chicago95-tux/devices/scalable/drive-harddisk-ieee1394.svg +# Icons/Chicago95-tux/devices/scalable/input-gaming.svg +# Icons/Chicago95-tux/devices/scalable/input-mouse.svg +# Icons/Chicago95-tux/devices/scalable/multimedia-player-apple-ipod-touch.svg +# Icons/Chicago95-tux/devices/scalable/foomatic-gui-logo.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-flash-sm.svg +# Icons/Chicago95-tux/devices/scalable/camera-video.svg +# Icons/Chicago95-tux/devices/scalable/blueman-keyboard.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-printer-network.svg +# Icons/Chicago95-tux/devices/scalable/pda.svg +# Icons/Chicago95-tux/devices/scalable/blueman-device.svg +# Icons/Chicago95-tux/devices/scalable/media-tape.svg +# Icons/Chicago95-tux/devices/scalable/media-memory-sd.svg +# Icons/Chicago95-tux/devices/scalable/network-wired.svg +# Icons/Chicago95-tux/devices/scalable/phone.svg +# Icons/Chicago95-tux/devices/scalable/scanner.svg +# Icons/Chicago95-tux/devices/scalable/blueman-mouse.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-flashdisk.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-hddvd.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd-rom.svg +# Icons/Chicago95-tux/devices/scalable/battery.svg +# Icons/Chicago95-tux/devices/scalable/media-cdrom.svg +# Icons/Chicago95-tux/devices/scalable/media-dvd.svg +# Icons/Chicago95-tux/devices/scalable/blueman-scanner.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-flash-ms.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-dvdr.svg +# Icons/Chicago95-tux/devices/scalable/gnome-settings-mouse.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-unknown-1394.svg +# Icons/Chicago95-tux/devices/scalable/gnome-mouse.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-audio.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-cd.svg +# Icons/Chicago95-tux/devices/scalable/audio-card.svg +# Icons/Chicago95-tux/devices/scalable/dvd_unmount.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-cdr.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd-ram.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-dvdr-plus.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-floppy.svg +# Icons/Chicago95-tux/devices/scalable/gtk-cdrom.svg +# Icons/Chicago95-tux/devices/scalable/block-device.svg +# Icons/Chicago95-tux/devices/scalable/gtklp.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-flash.svg +# Icons/Chicago95-tux/devices/scalable/network-wireless.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-usb.svg +# Icons/Chicago95-tux/devices/scalable/printer.svg +# Icons/Chicago95-tux/devices/scalable/media-memory-sm.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-dvdram.svg +# Icons/Chicago95-tux/devices/scalable/media-floppy.svg +# Icons/Chicago95-tux/devices/scalable/media-cdrom-audio.svg +# Icons/Chicago95-tux/devices/scalable/gnome-mouse-properties.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-cd-rw.svg +# Icons/Chicago95-tux/devices/scalable/camera-web.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-flashkey.svg +# Icons/Chicago95-tux/devices/scalable/multimedia-player-ipod-touch.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-dvdrom.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-audio.svg +# Icons/Chicago95-tux/devices/scalable/modem.svg +# Icons/Chicago95-tux/devices/scalable/media-memory.svg +# Icons/Chicago95-tux/devices/scalable/system-config-printer.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-dvd-r-plus.svg +# Icons/Chicago95-tux/devices/scalable/media-optical-cd-r.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-disc-cdr.svg +# Icons/Chicago95-tux/devices/scalable/gnome-dev-pcmcia.svg +# Icons/Chicago95-tux/devices/scalable/computer.svg +# Icons/Chicago95-tux/devices/scalable/media-cdr.svg +# Icons/Chicago95-tux/devices/scalable/camera-photo.svg +# Icons/Chicago95-tux/devices/scalable/drive-optical.svg +# Icons/Chicago95-tux/devices/scalable/bluetooth.svg +# Icons/Chicago95-tux/devices/scalable/blueman-cellular.svg +# Icons/Chicago95-tux/devices/scalable/media-optical.svg +# Icons/Chicago95-tux/devices/scalable/drive-removable-media-ieee1394.svg +# Icons/Chicago95-tux/devices/scalable/gtklpq.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-blue.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-violet.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-favorite.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-new.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-shared.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-nowrite.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-yellow.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-mail.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-white.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-downloads.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-grey.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-system.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-important.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-package.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-web.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-noread.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-red.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-orange.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-symbolic-link.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-green.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-colors-brown.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-photos.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-default.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-documents.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-urgent.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-generic.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-unreadable.svg +# Icons/Chicago95-tux/emblems/scalable/emblem-readonly.svg +# Icons/Chicago95-tux/apps/scalable/im-msn_48.svg +# Icons/Chicago95-tux/apps/scalable/pidgin.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-panel.svg +# Icons/Chicago95-tux/apps/scalable/gnome-logout.svg +# Icons/Chicago95-tux/apps/scalable/transmission.svg +# Icons/Chicago95-tux/apps/scalable/gnome-desktop-config.svg +# Icons/Chicago95-tux/apps/scalable/firefox.svg +# Icons/Chicago95-tux/apps/scalable/virtualbox.svg +# Icons/Chicago95-tux/apps/scalable/news-feed.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-font.svg +# Icons/Chicago95-tux/apps/scalable/easytag.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-accesibility.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-cpugraph-plugin.svg +# Icons/Chicago95-tux/apps/scalable/gnome-panel-window-list.svg +# Icons/Chicago95-tux/apps/scalable/palm-pilot.svg +# Icons/Chicago95-tux/apps/scalable/mail.svg +# Icons/Chicago95-tux/apps/scalable/gnome-session-reboot.svg +# Icons/Chicago95-tux/apps/scalable/multimedia-photo-manager.svg +# Icons/Chicago95-tux/apps/scalable/internet-news-reader.svg +# Icons/Chicago95-tux/apps/scalable/leafpad.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop.svg +# Icons/Chicago95-tux/apps/scalable/web-browser.svg +# Icons/Chicago95-tux/apps/scalable/multimedia-video-player.svg +# Icons/Chicago95-tux/apps/scalable/apport.svg +# Icons/Chicago95-tux/apps/scalable/invest-applet.svg +# Icons/Chicago95-tux/apps/scalable/multimedia-audio-player.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-splash.svg +# Icons/Chicago95-tux/apps/scalable/audio-player.svg +# Icons/Chicago95-tux/apps/scalable/software.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-remote-desktop.svg +# Icons/Chicago95-tux/apps/scalable/application-default-icon.svg +# Icons/Chicago95-tux/apps/scalable/midori.svg +# Icons/Chicago95-tux/apps/scalable/facebook.svg +# Icons/Chicago95-tux/apps/scalable/xchat-gnome.svg +# Icons/Chicago95-tux/apps/scalable/im-msn.svg +# Icons/Chicago95-tux/apps/scalable/chromium-browser.svg +# Icons/Chicago95-tux/apps/scalable/ccsm.svg +# Icons/Chicago95-tux/apps/scalable/abiword.svg +# Icons/Chicago95-tux/apps/scalable/gnome-panel-workspace-switcher.svg +# Icons/Chicago95-tux/apps/scalable/gnome-sound-recorder.svg +# Icons/Chicago95-tux/apps/scalable/youtube.svg +# Icons/Chicago95-tux/apps/scalable/gmail.svg +# Icons/Chicago95-tux/apps/scalable/im-jabber.svg +# Icons/Chicago95-tux/apps/scalable/empathy.svg +# Icons/Chicago95-tux/apps/scalable/libreoffice-base.svg +# Icons/Chicago95-tux/apps/scalable/eom.svg +# Icons/Chicago95-tux/apps/scalable/gnome-network-properties.svg +# Icons/Chicago95-tux/apps/scalable/gnome-inhibit-applet.svg +# Icons/Chicago95-tux/apps/scalable/im.svg +# Icons/Chicago95-tux/apps/scalable/preferences-system-power.svg +# Icons/Chicago95-tux/apps/scalable/gnome-shutdown.svg +# Icons/Chicago95-tux/apps/scalable/shotwell.svg +# Icons/Chicago95-tux/apps/scalable/libreoffice-math.svg +# Icons/Chicago95-tux/apps/scalable/miro-browse.svg +# Icons/Chicago95-tux/apps/scalable/locale_48x48.svg +# Icons/Chicago95-tux/apps/scalable/archive-manager.svg +# Icons/Chicago95-tux/apps/scalable/user-info.svg +# Icons/Chicago95-tux/apps/scalable/office-address-book.svg +# Icons/Chicago95-tux/apps/scalable/system-software-install.svg +# Icons/Chicago95-tux/apps/scalable/gimp.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-wallpaper.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-locale.svg +# Icons/Chicago95-tux/apps/scalable/eject_pc_cool_6_48x48x4.svg +# Icons/Chicago95-tux/apps/scalable/aptoncd.svg +# Icons/Chicago95-tux/apps/scalable/gnome-fs-bookmark-missing.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-workspaces.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-keyboard.svg +# Icons/Chicago95-tux/apps/scalable/gnome-nettool.svg +# Icons/Chicago95-tux/apps/scalable/session-properties.svg +# Icons/Chicago95-tux/apps/scalable/inkscape.svg +# Icons/Chicago95-tux/apps/scalable/gnome-session-switch.svg +# Icons/Chicago95-tux/apps/scalable/gmusicbrowser.svg +# Icons/Chicago95-tux/apps/scalable/mahjong.svg +# Icons/Chicago95-tux/apps/scalable/minesweper.svg +# Icons/Chicago95-tux/apps/scalable/palm-pilot-sync.svg +# Icons/Chicago95-tux/apps/scalable/ibus.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-screensaver.svg +# Icons/Chicago95-tux/apps/scalable/wine.svg.old +# Icons/Chicago95-tux/apps/scalable/dconf.svg +# Icons/Chicago95-tux/apps/scalable/totem.svg +# Icons/Chicago95-tux/apps/scalable/office-calendar.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-notifyd.svg +# Icons/Chicago95-tux/apps/scalable/serpentine.svg +# Icons/Chicago95-tux/apps/scalable/catfish.svg +# Icons/Chicago95-tux/apps/scalable/gnome-session-suspend.svg +# Icons/Chicago95-tux/apps/scalable/plugin-scale.svg +# Icons/Chicago95-tux/apps/scalable/internet-mail.svg +# Icons/Chicago95-tux/apps/scalable/hwbrowser.svg +# Icons/Chicago95-tux/apps/scalable/help-browser.svg +# Icons/Chicago95-tux/apps/scalable/gnome-session-hibernate.svg +# Icons/Chicago95-tux/apps/scalable/scanner.svg +# Icons/Chicago95-tux/apps/scalable/mateconf-editor.svg +# Icons/Chicago95-tux/apps/scalable/preferences-system-network.svg +# Icons/Chicago95-tux/apps/scalable/gnome-panel-force-quit.svg +# Icons/Chicago95-tux/apps/scalable/application-community.svg +# Icons/Chicago95-tux/apps/scalable/utilities-system-monitor.svg +# Icons/Chicago95-tux/apps/scalable/accessories-calculator.svg +# Icons/Chicago95-tux/apps/scalable/libreoffice-calc.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-theme.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-whiskermenu.svg.old +# Icons/Chicago95-tux/apps/scalable/mate-preferences-desktop-display.svg +# Icons/Chicago95-tux/apps/scalable/time-admin.svg +# Icons/Chicago95-tux/apps/scalable/gnome-panel-notification-area.svg +# Icons/Chicago95-tux/apps/scalable/google-hangout.svg +# Icons/Chicago95-tux/apps/scalable/evolution.svg +# Icons/Chicago95-tux/apps/scalable/accessories-dictionary.svg +# Icons/Chicago95-tux/apps/scalable/system-file-manager.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-weather.svg +# Icons/Chicago95-tux/apps/scalable/postscript-viewer.svg +# Icons/Chicago95-tux/apps/scalable/ooo-writer.svg +# Icons/Chicago95-tux/apps/scalable/lxfind_48.svg +# Icons/Chicago95-tux/apps/scalable/system-software-update.svg +# Icons/Chicago95-tux/apps/scalable/softwarecenter.svg +# Icons/Chicago95-tux/apps/scalable/media-player-banshee.svg +# Icons/Chicago95-tux/apps/scalable/gcolor2.svg +# Icons/Chicago95-tux/apps/scalable/display-capplet.svg +# Icons/Chicago95-tux/apps/scalable/im-aim.svg +# Icons/Chicago95-tux/apps/scalable/mate-notification-properties.svg +# Icons/Chicago95-tux/apps/scalable/libreoffice-main.svg +# Icons/Chicago95-tux/apps/scalable/tomboy.svg +# Icons/Chicago95-tux/apps/scalable/lxfind.svg +# Icons/Chicago95-tux/apps/scalable/mplayer.svg +# Icons/Chicago95-tux/apps/scalable/mate-power-manager.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-fsguard-plugin-warning.svg +# Icons/Chicago95-tux/apps/scalable/do.svg +# Icons/Chicago95-tux/apps/scalable/calc.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-keyboard-shortcuts.svg +# Icons/Chicago95-tux/apps/scalable/accessories-character-map.svg +# Icons/Chicago95-tux/apps/scalable/applets-screenshooter.svg +# Icons/Chicago95-tux/apps/scalable/gksu-root-terminal.svg +# Icons/Chicago95-tux/apps/scalable/preferences-system-windows.svg +# Icons/Chicago95-tux/apps/scalable/checkbox.svg +# Icons/Chicago95-tux/apps/scalable/desktop-effects.svg +# Icons/Chicago95-tux/apps/scalable/ooo-draw.svg +# Icons/Chicago95-tux/apps/scalable/stock_keyring.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-default-applications.svg +# Icons/Chicago95-tux/apps/scalable/xfce4-whiskermenu.svg +# Icons/Chicago95-tux/apps/scalable/mdmsetup.svg +# Icons/Chicago95-tux/apps/scalable/system-users.svg +# Icons/Chicago95-tux/apps/scalable/mate-panel-launcher.svg +# Icons/Chicago95-tux/apps/scalable/miro.svg +# Icons/Chicago95-tux/apps/scalable/logviewer.svg +# Icons/Chicago95-tux/apps/scalable/utilities-terminal.svg +# Icons/Chicago95-tux/apps/scalable/onboard.svg +# Icons/Chicago95-tux/apps/scalable/gconf-editor.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-sound.svg +# Icons/Chicago95-tux/apps/scalable/baobab.svg +# Icons/Chicago95-tux/apps/scalable/gthumb.svg +# Icons/Chicago95-tux/apps/scalable/im-yahoo.svg +# Icons/Chicago95-tux/apps/scalable/wine.svg +# Icons/Chicago95-tux/apps/scalable/ooo-base.svg +# Icons/Chicago95-tux/apps/scalable/gnome-panel-clock.svg +# Icons/Chicago95-tux/apps/scalable/libreoffice-impress.svg +# Icons/Chicago95-tux/apps/scalable/gstreamer-properties.svg +# Icons/Chicago95-tux/apps/scalable/ubiquity.svg +# Icons/Chicago95-tux/apps/scalable/bluetooth.svg +# Icons/Chicago95-tux/apps/scalable/thunderbird.svg +# Icons/Chicago95-tux/apps/scalable/preferences-desktop-accessibility.svg +# Icons/Chicago95-tux/places/scalable/start-here.svg +# Icons/Chicago95-tux/places/scalable/folder-documents.svg +# Icons/Chicago95-tux/places/scalable/folder-publicshare.svg +# Icons/Chicago95-tux/places/scalable/distributor-logo.svg.old +# Icons/Chicago95-tux/places/scalable/application-x-gnome-saved-search.svg +# Icons/Chicago95-tux/places/scalable/folder_home.svg +# Icons/Chicago95-tux/places/scalable/folder-templates-symbolic.svg +# Icons/Chicago95-tux/places/scalable/folder-music-symbolic.svg +# Icons/Chicago95-tux/places/scalable/folder-drag-accept.svg +# Icons/Chicago95-tux/places/scalable/stock_music-library.svg +# Icons/Chicago95-tux/places/scalable/distributor-logo.svg +# Icons/Chicago95-tux/places/scalable/emptytrash.svg +# Icons/Chicago95-tux/places/scalable/gnome-main-menu.svg +# Icons/Chicago95-tux/places/scalable/folder_images.svg +# Icons/Chicago95-tux/places/scalable/folder-ubuntuone.svg +# Icons/Chicago95-tux/places/scalable/mail-outbox.svg +# Icons/Chicago95-tux/places/scalable/bookmark-missing.svg +# Icons/Chicago95-tux/places/scalable/desktop.svg +# Icons/Chicago95-tux/places/scalable/folder_download.svg +# Icons/Chicago95-tux/places/scalable/folder-remote-ftp.svg +# Icons/Chicago95-tux/places/scalable/start-here.svg.old +# Icons/Chicago95-tux/places/scalable/folder_open.svg +# Icons/Chicago95-tux/places/scalable/user-bookmarks.svg +# Icons/Chicago95-tux/places/scalable/network-server.svg +# Icons/Chicago95-tux/places/scalable/mail-inbox.svg +# Icons/Chicago95-tux/places/scalable/folder-recent.svg +# Icons/Chicago95-tux/places/scalable/folder-videos.svg +# Icons/Chicago95-tux/places/scalable/gnome-fs-bookmark.svg +# Icons/Chicago95-tux/places/scalable/mail-mailbox.svg +# Icons/Chicago95-tux/places/scalable/edittrash.svg +# Icons/Chicago95-tux/stock/scalable/stock_network-printer.svg +# Icons/Chicago95-tux/stock/scalable/avatar-default.svg +# Icons/Chicago95-tux/stock/scalable/stock_people.svg +# Theme/Chicago95/gnome-shell/assets-render/radio-unselected.svg +# Theme/Chicago95/gnome-shell/assets-render/radio-selected.svg +# Theme/Chicago95/gnome-shell/assets-render/checkbox-checked.svg +# Theme/Chicago95/gnome-shell/assets-render/checkbox-unchecked.svg +# Theme/Chicago95/metacity-1/metacity-theme-1.xml +# Lightdm/Chicago95/index.html + +#---------------------------------------------------------------------------- +# huge files (skipped): +# KDE/Splash/chicago95.splashscreen/contents/splash/images/background.png + +#---------------------------------------------------------------------------- +# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following +# license/copyright files. diff --git a/chicago95/debian/links b/chicago95/debian/links new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/chicago95/debian/links @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/chicago95/debian/patches/series b/chicago95/debian/patches/series new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/chicago95/debian/patches/series @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/chicago95/debian/postrm b/chicago95/debian/postrm new file mode 100644 index 0000000..9086993 --- /dev/null +++ b/chicago95/debian/postrm @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 diff --git a/chicago95/debian/preinst b/chicago95/debian/preinst new file mode 100644 index 0000000..1057534 --- /dev/null +++ b/chicago95/debian/preinst @@ -0,0 +1,20 @@ +#!/bin/sh +set -e + +case "$1" in + install|upgrade) + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + +#DEBHELPER# + +exit 0 diff --git a/chicago95/debian/rules b/chicago95/debian/rules new file mode 100755 index 0000000..bc6662c --- /dev/null +++ b/chicago95/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. +#export DH_VERBOSE = 1 +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +export debuilddir="debian" +export buildroot="${debuilddir}/${appname}" +export _datadir="/usr/share" +export _bindir="/usr/bin" + +%: + dh $@ + +override_dh_auto_install: + dh_auto_install + + install -m0755 -d ${buildroot}${_datadir}/sounds/Chicago95 + install -m0644 "Extras/Microsoft Windows 95 Startup Sound.ogg" ${buildroot}${_datadir}/sounds/Chicago95/startup.ogg + +override_dh_auto_clean: + rm -f ${buildroot}${_datadir}/sounds/Chicago95/startup.ogg + dh_auto_clean diff --git a/chicago95/debian/source/format b/chicago95/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/chicago95/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/chicago95/debian/source/local-options b/chicago95/debian/source/local-options new file mode 100644 index 0000000..00131ee --- /dev/null +++ b/chicago95/debian/source/local-options @@ -0,0 +1,2 @@ +#abort-on-upstream-changes +#unapply-patches diff --git a/chicago95/debian/watch b/chicago95/debian/watch new file mode 100644 index 0000000..76575dc --- /dev/null +++ b/chicago95/debian/watch @@ -0,0 +1,2 @@ +# You must remove unused comment lines for the released package. +version=3 -- cgit From 71c0f13353c5bda97ce1bf59fc5c85eb11e30342 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 10 Sep 2019 23:33:42 -0400 Subject: add sound autostart shortcut --- chicago95/debian/chicago95-theme-login-sound.install | 1 + 1 file changed, 1 insertion(+) diff --git a/chicago95/debian/chicago95-theme-login-sound.install b/chicago95/debian/chicago95-theme-login-sound.install index fd9c5dc..15050ef 100644 --- a/chicago95/debian/chicago95-theme-login-sound.install +++ b/chicago95/debian/chicago95-theme-login-sound.install @@ -1 +1,2 @@ debian/usr/share/sounds/Chicago95/startup.ogg /usr/share/sounds/Chicago95/ +debian/chicago95-startup.desktop /etc/xdg/autostart/ -- cgit From 2102c7f17543e45f9c8d8ca091bc17e870d75669 Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 11 Sep 2019 11:15:39 -0400 Subject: add lightdm-webkit2-greeter forked from https://github.com/Antergos/web-greeter/releases and https://build.opensuse.org/package/show/home:antergos/lightdm-webkit2-greeter But this merely builds the dpkg; I have not tested using it or building it on OBS. --- lightdm-webkit2-greeter/debian/README.Debian | 5 + lightdm-webkit2-greeter/debian/changelog | 65 + lightdm-webkit2-greeter/debian/compat | 1 + lightdm-webkit2-greeter/debian/control | 22 + lightdm-webkit2-greeter/debian/copyright | 1253 ++++++++++++++++++++ lightdm-webkit2-greeter/debian/patches/series | 1 + lightdm-webkit2-greeter/debian/rules | 22 + lightdm-webkit2-greeter/debian/source/format | 1 + .../debian/source/local-options | 2 + lightdm-webkit2-greeter/debian/watch | 2 + 10 files changed, 1374 insertions(+) create mode 100644 lightdm-webkit2-greeter/debian/README.Debian create mode 100644 lightdm-webkit2-greeter/debian/changelog create mode 100644 lightdm-webkit2-greeter/debian/compat create mode 100644 lightdm-webkit2-greeter/debian/control create mode 100644 lightdm-webkit2-greeter/debian/copyright create mode 100644 lightdm-webkit2-greeter/debian/patches/series create mode 100755 lightdm-webkit2-greeter/debian/rules create mode 100644 lightdm-webkit2-greeter/debian/source/format create mode 100644 lightdm-webkit2-greeter/debian/source/local-options create mode 100644 lightdm-webkit2-greeter/debian/watch diff --git a/lightdm-webkit2-greeter/debian/README.Debian b/lightdm-webkit2-greeter/debian/README.Debian new file mode 100644 index 0000000..b45b89e --- /dev/null +++ b/lightdm-webkit2-greeter/debian/README.Debian @@ -0,0 +1,5 @@ +web-greeter for Devuan + +Adapted from the defunct Antergos/web-greeter utility. Packaged primarily for Chicago95 theme support for the greeter. + + -- B Stack Wed, 11 Sep 2019 10:36:32 -0400 diff --git a/lightdm-webkit2-greeter/debian/changelog b/lightdm-webkit2-greeter/debian/changelog new file mode 100644 index 0000000..87a3686 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/changelog @@ -0,0 +1,65 @@ +lightdm-webkit2-greeter (2.2.5-1+devuan-1) obs; urgency=low + + * Initial release for devuan + + -- B Stack Wed, 11 Sep 2019 10:36:32 -0400 + +lightdm-webkit2-greeter (2.2.5-1) stable; urgency=low + + * Release Notes: https://goo.gl/P963kv + + -- Antergos Developers Sat, 06 Jan 2018 17:49:31 -0500 + +lightdm-webkit2-greeter (2.2.2-1) stable; urgency=low + + * Release Notes: https://goo.gl/Hdy442 + + -- Antergos Developers Wed, 18 Jan 2017 22:47:10 -0500 + +lightdm-webkit2-greeter (2.2.1-1) stable; urgency=low + + * Release Notes: https://goo.gl/0K3BBG + + -- Antergos Developers Mon, 26 Dec 2016 13:34:21 -0500 + +lightdm-webkit2-greeter (2.2-1) stable; urgency=low + + * Release Notes: https://goo.gl/iUIDK8 + + -- Antergos Developers Fri, 23 Dec 2016 12:00:18 -0500 + +lightdm-webkit2-greeter (2.1.6-1) stable; urgency=low + + * Release Notes: https://goo.gl/J28Zea + + -- Antergos Developers Mon, 17 Oct 2016 10:10:45 -0500 + +lightdm-webkit2-greeter (2.1.5-1) stable; urgency=low + + * Release Notes: https://goo.gl/cUJLnI + + -- Antergos Developers Fri, 14 Oct 2016 02:10:35 -0500 + +lightdm-webkit2-greeter (2.1.4-1) stable; urgency=low + + * Release Notes: https://goo.gl/h1Sjeo + + -- Antergos Developers Fri, 29 Apr 2016 05:50:18 -0500 + +lightdm-webkit2-greeter (2.1.3-1) stable; urgency=low + + * Release Notes: https://goo.gl/ttffOJ + + -- Antergos Developers Sat, 16 Apr 2016 11:30:28 -0500 + +lightdm-webkit2-greeter (2.1.1-1) stable; urgency=low + + * Release Notes: https://goo.gl/Unjbwd + + -- Antergos Developers Mon, 11 Apr 2016 02:39:01 -0500 + +lightdm-webkit2-greeter (2.0.0-1) stable; urgency=low + + * Initial Release + + -- Antergos Developers Mon, 11 Jan 2016 10:50:38 -0500 diff --git a/lightdm-webkit2-greeter/debian/compat b/lightdm-webkit2-greeter/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/compat @@ -0,0 +1 @@ +11 diff --git a/lightdm-webkit2-greeter/debian/control b/lightdm-webkit2-greeter/debian/control new file mode 100644 index 0000000..c1c7b4b --- /dev/null +++ b/lightdm-webkit2-greeter/debian/control @@ -0,0 +1,22 @@ +Source: lightdm-webkit2-greeter +Section: x11 +Priority: optional +Maintainer: B Stack +Build-Depends: debhelper (>=11~), + gettext, + libdbus-glib-1-dev, + libgtk-3-dev, + liblightdm-gobject-dev, + libwebkit2gtk-4.0-dev, + meson, +Standards-Version: 4.1.4 +Homepage: https://github.com/Antergos/web-greeter + +Package: lightdm-webkit2-greeter +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Provides: lightdm-greeter +Replaces: lightdm-webkit-greeter +Breaks: lightdm-webkit-greeter +Description: LightDM greeter that uses WebKit2 for theming via HTML/JavaScript diff --git a/lightdm-webkit2-greeter/debian/copyright b/lightdm-webkit2-greeter/debian/copyright new file mode 100644 index 0000000..3395454 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/copyright @@ -0,0 +1,1253 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: web-greeter +Source: +# +# Please double check copyright with the licensecheck(1) command. + +Files: .coafile + .doclets.yml + .editorconfig + .gitignore + .tx/config + NEWS.md + README.md + build/.gitignore + build/ci/Dockerfile + build/utils.sh + circle.yml + data/lightdm-webkit2-greeter.conf + data/lightdm-webkit2-greeter.desktop + data/meson.build + man/lightdm-webkit2-greeter.1 + man/meson.build + meson.build + meson_options.txt + po/LINGUAS + po/POTFILES + po/meson.build + src/gresource/css/style.css + src/gresource/js/_vendor/moment-with-locales.min.js + src/meson.build + themes/_vendor/fonts/TTF/OpenSans-Light.ttf + themes/_vendor/fonts/TTF/OpenSans-Regular.ttf + themes/_vendor/fonts/font-awesome/font-awesome.min.css + themes/_vendor/fonts/font-awesome/fontawesome-webfont.woff + themes/_vendor/fonts/font-awesome/fontawesome-webfont.woff2 + themes/_vendor/js/jquery.min.js + themes/_vendor/js/js.cookie.min.js + themes/antergos/.tx/config + themes/antergos/README.md + themes/antergos/i18n/af.json + themes/antergos/i18n/ar.json + themes/antergos/i18n/az.json + themes/antergos/i18n/be.json + themes/antergos/i18n/bg.json + themes/antergos/i18n/ca.json + themes/antergos/i18n/cs.json + themes/antergos/i18n/da.json + themes/antergos/i18n/de.json + themes/antergos/i18n/el.json + themes/antergos/i18n/en.json + themes/antergos/i18n/eo.json + themes/antergos/i18n/es.json + themes/antergos/i18n/et.json + themes/antergos/i18n/eu.json + themes/antergos/i18n/fa.json + themes/antergos/i18n/fi.json + themes/antergos/i18n/fr.json + themes/antergos/i18n/gl.json + themes/antergos/i18n/gu.json + themes/antergos/i18n/he.json + themes/antergos/i18n/hi.json + themes/antergos/i18n/hr.json + themes/antergos/i18n/hu.json + themes/antergos/i18n/id.json + themes/antergos/i18n/it.json + themes/antergos/i18n/ja.json + themes/antergos/i18n/ka.json + themes/antergos/i18n/ko.json + themes/antergos/i18n/lt.json + themes/antergos/i18n/mk.json + themes/antergos/i18n/mr.json + themes/antergos/i18n/ms.json + themes/antergos/i18n/nb.json + themes/antergos/i18n/nl.json + themes/antergos/i18n/pa.json + themes/antergos/i18n/pl.json + themes/antergos/i18n/pt.json + themes/antergos/i18n/ro.json + themes/antergos/i18n/ru.json + themes/antergos/i18n/sk.json + themes/antergos/i18n/sl.json + themes/antergos/i18n/sr.json + themes/antergos/i18n/sv.json + themes/antergos/i18n/ta.json + themes/antergos/i18n/tg.json + themes/antergos/i18n/tl.json + themes/antergos/i18n/tr.json + themes/antergos/i18n/translations.json + themes/antergos/i18n/uk.json + themes/antergos/i18n/vi.json + themes/antergos/i18n/xh.json + themes/antergos/i18n/zh.json + themes/antergos/i18n/zu.json + themes/antergos/img/antergos-logo-user.png + themes/antergos/img/antergos.png + themes/antergos/img/fallback_bg.jpg + themes/antergos/img/screenshot1.jpg + themes/antergos/img/screenshot2.jpg + themes/antergos/img/screenshot3.jpg + themes/antergos/index.theme + themes/antergos/js/translations.js + themes/meson.build + themes/simple/index.theme + themes/simple/power_button.png +Copyright: __NO_COPYRIGHT_NOR_LICENSE__ +License: __NO_COPYRIGHT_NOR_LICENSE__ + +Files: po/af.po + po/ar.po + po/ar_SA.po + po/as.po + po/ast.po + po/az.po + po/az@latin.po + po/az_IR.po + po/be.po + po/bg.po + po/bn.po + po/ca.po + po/ca@valencia.po + po/cs.po + po/da.po + po/de.po + po/el.po + po/en_GB.po + po/eo.po + po/es.po + po/es_AR.po + po/es_CL.po + po/es_ES.po + po/es_MX.po + po/es_VE.po + po/et.po + po/eu.po + po/fa.po + po/fi.po + po/fr.po + po/fr_BE.po + po/gl.po + po/gu.po + po/he.po + po/hi.po + po/hr.po + po/hu.po + po/hy.po + po/id.po + po/it.po + po/it_CH.po + po/it_IT.po + po/ja.po + po/ka.po + po/kn.po + po/ko.po + po/ky.po + po/lightdm-webkit2-greeter.pot + po/lt.po + po/lv.po + po/mk.po + po/mn.po + po/mr.po + po/ms.po + po/nb.po + po/ne.po + po/nl.po + po/pa.po + po/pl.po + po/pt.po + po/pt_BR.po + po/ro.po + po/ru.po + po/sk.po + po/sl.po + po/sq.po + po/sr.po + po/sv.po + po/szl.po + po/ta.po + po/te.po + po/tg.po + po/th.po + po/tl.po + po/tr.po + po/uk.po + po/ur.po + po/vi.po + po/wa.po + po/xh.po + po/zh.po + po/zh_CN.po + po/zh_TW.po + po/zu.po +Copyright: __NO_COPYRIGHT__ in: po/af.po + __NO_COPYRIGHT__ in: po/ar.po + __NO_COPYRIGHT__ in: po/ar_SA.po + __NO_COPYRIGHT__ in: po/as.po + __NO_COPYRIGHT__ in: po/ast.po + __NO_COPYRIGHT__ in: po/az.po + __NO_COPYRIGHT__ in: po/az@latin.po + __NO_COPYRIGHT__ in: po/az_IR.po + __NO_COPYRIGHT__ in: po/be.po + __NO_COPYRIGHT__ in: po/bg.po + __NO_COPYRIGHT__ in: po/bn.po + __NO_COPYRIGHT__ in: po/ca.po + __NO_COPYRIGHT__ in: po/ca@valencia.po + __NO_COPYRIGHT__ in: po/cs.po + __NO_COPYRIGHT__ in: po/da.po + __NO_COPYRIGHT__ in: po/de.po + __NO_COPYRIGHT__ in: po/el.po + __NO_COPYRIGHT__ in: po/en_GB.po + __NO_COPYRIGHT__ in: po/eo.po + __NO_COPYRIGHT__ in: po/es.po + __NO_COPYRIGHT__ in: po/es_AR.po + __NO_COPYRIGHT__ in: po/es_CL.po + __NO_COPYRIGHT__ in: po/es_ES.po + __NO_COPYRIGHT__ in: po/es_MX.po + __NO_COPYRIGHT__ in: po/es_VE.po + __NO_COPYRIGHT__ in: po/et.po + __NO_COPYRIGHT__ in: po/eu.po + __NO_COPYRIGHT__ in: po/fa.po + __NO_COPYRIGHT__ in: po/fi.po + __NO_COPYRIGHT__ in: po/fr.po + __NO_COPYRIGHT__ in: po/fr_BE.po + __NO_COPYRIGHT__ in: po/gl.po + __NO_COPYRIGHT__ in: po/gu.po + __NO_COPYRIGHT__ in: po/he.po + __NO_COPYRIGHT__ in: po/hi.po + __NO_COPYRIGHT__ in: po/hr.po + __NO_COPYRIGHT__ in: po/hu.po + __NO_COPYRIGHT__ in: po/hy.po + __NO_COPYRIGHT__ in: po/id.po + __NO_COPYRIGHT__ in: po/it.po + __NO_COPYRIGHT__ in: po/it_CH.po + __NO_COPYRIGHT__ in: po/it_IT.po + __NO_COPYRIGHT__ in: po/ja.po + __NO_COPYRIGHT__ in: po/ka.po + __NO_COPYRIGHT__ in: po/kn.po + __NO_COPYRIGHT__ in: po/ko.po + __NO_COPYRIGHT__ in: po/ky.po + __NO_COPYRIGHT__ in: po/lightdm-webkit2-greeter.pot + __NO_COPYRIGHT__ in: po/lt.po + __NO_COPYRIGHT__ in: po/lv.po + __NO_COPYRIGHT__ in: po/mk.po + __NO_COPYRIGHT__ in: po/mn.po + __NO_COPYRIGHT__ in: po/mr.po + __NO_COPYRIGHT__ in: po/ms.po + __NO_COPYRIGHT__ in: po/nb.po + __NO_COPYRIGHT__ in: po/ne.po + __NO_COPYRIGHT__ in: po/nl.po + __NO_COPYRIGHT__ in: po/pa.po + __NO_COPYRIGHT__ in: po/pl.po + __NO_COPYRIGHT__ in: po/pt.po + __NO_COPYRIGHT__ in: po/pt_BR.po + __NO_COPYRIGHT__ in: po/ro.po + __NO_COPYRIGHT__ in: po/ru.po + __NO_COPYRIGHT__ in: po/sk.po + __NO_COPYRIGHT__ in: po/sl.po + __NO_COPYRIGHT__ in: po/sq.po + __NO_COPYRIGHT__ in: po/sr.po + __NO_COPYRIGHT__ in: po/sv.po + __NO_COPYRIGHT__ in: po/szl.po + __NO_COPYRIGHT__ in: po/ta.po + __NO_COPYRIGHT__ in: po/te.po + __NO_COPYRIGHT__ in: po/tg.po + __NO_COPYRIGHT__ in: po/th.po + __NO_COPYRIGHT__ in: po/tl.po + __NO_COPYRIGHT__ in: po/tr.po + __NO_COPYRIGHT__ in: po/uk.po + __NO_COPYRIGHT__ in: po/ur.po + __NO_COPYRIGHT__ in: po/vi.po + __NO_COPYRIGHT__ in: po/wa.po + __NO_COPYRIGHT__ in: po/xh.po + __NO_COPYRIGHT__ in: po/zh.po + __NO_COPYRIGHT__ in: po/zh_CN.po + __NO_COPYRIGHT__ in: po/zh_TW.po + __NO_COPYRIGHT__ in: po/zu.po +License: _SAME_ + This file is distributed under the same license as the lightdm-webkit2-greeter package. + +Files: src/gresource/js/GreeterConfig.js + src/gresource/js/ThemeUtils.js +Copyright: 2016 Antergos Developers +License: GPL-3.0+ + This file is part of lightdm-webkit2-greeter. + . + lightdm-webkit2-greeter is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with lightdm-webkit2-greeter; If not, see . + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: src/greeter.c +Copyright: 2014-2016 Antergos Developers +License: GPL-3.0+ + Includes Code Contributed By: + Copyright © 2016 Scott Balneaves + . + Based on code from lightdm-webkit-greeter: + Copyright © 2010-2015 Robert Ancell + . + This file is part of lightdm-webkit2-greeter. + . + lightdm-webkit2-greeter is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with lightdm-webkit2-greeter; If not, see . + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: src/webkit2-extension.c +Copyright: 2014-2016 Antergos Developers +License: GPL-3.0+ + Includes Code Contributed By: + Copyright © 2016 Scott Balneaves + . + Based on code from lightdm-webkit-greeter: + Copyright © 2010-2014 Robert Ancell + . + This file is part of lightdm-webkit2-greeter. + . + lightdm-webkit2-greeter is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with lightdm-webkit2-greeter; If not, see . + . + WebKitWebExtension + This extension runs inside the web process allowing us to interact directly with + the web page including the DOM and JavaScriptWorld. + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: themes/antergos/css/style.css +Copyright: 2015-2016 Antergos +License: GPL-3.0+ + style.css + . + This file is part of lightdm-webkit2-greeter + . + lightdm-webkit2-greeter is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, + or any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + Global Styles + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: themes/antergos/js/greeter.js +Copyright: 2015-2016 Antergos +License: GPL-3.0+ + This file is part of lightdm-webkit2-greeter + . + lightdm-webkit2-greeter is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, + or any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + This is used to access our classes from within jQuery callbacks. + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: src/gresource/js/Greeter.js +Copyright: 2016 Antergos Developers +License: GPL-3.0+ + This file is part of lightdm-webkit2-greeter. + . + lightdm-webkit2-greeter is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with lightdm-webkit2-greeter; If not, see . + . + Base class for the greeter's Theme JavaScript API. Greeter themes will interact + directly with an object derived from this class to facilitate the user log-in process. + The greeter will automatically create an instance when it starts. + The instance can be accessed using the global variable: [`lightdm`](#dl-window-lightdm). + . + @memberOf LightDM + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: themes/_vendor/js/mock.js +Copyright: 2015-2016 Antergos +License: GPL-3.0+ + mock.js + . + This file is part of lightdm-webkit2-greeter + . + lightdm-webkit2-greeter is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, + or any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + @ignore + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: src/gresource/js/LightDMObjects.js +Copyright: 2015-2016 Antergos +License: GPL-3.0+ + LightDMObjects.js + . + This file is part of lightdm-webkit2-greeter + . + lightdm-webkit2-greeter is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, + or any later version. + . + lightdm-webkit2-greeter is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + The following additional terms are in effect as per Section 7 of the license: + . + The preservation of all legal notices and author attributions in + the material or in the Appropriate Legal Notices displayed + by works containing it is required. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + The global window object. + . + @name window + @type {object} + @global + . + The greeter's Theme JavaScript API. + . + @namespace LightDM + . + Interface for object that holds info about a session. Session objects are not + created by the theme's code, but rather by the [`LightDM.Greeter`](#dl-LightDM-Greeter) class. + . + @memberOf LightDM + . + On Debian systems, the complete text of the GNU General Public License + Version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +Files: themes/_vendor/css/bootstrap.min.css +Copyright: 2011-2016 Twitter, Inc. +License: __UNKNOWN__ + Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + //*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css + +Files: themes/_vendor/css/bootswatch-paper.bootstrap.min.css +Copyright: 2012-2016 Thomas Park +License: __UNKNOWN__ + Licensed under MIT + Based on Bootstrap + +Files: themes/_vendor/js/bootstrap.min.js +Copyright: 2011-2016 Twitter, Inc. +License: __UNKNOWN__ + Licensed under the MIT license + +Files: themes/antergos/.tx/combine_translations.js +Copyright: 2015-2016 Antergos +License: __NO_LICENSE__ + +#---------------------------------------------------------------------------- +# xml and html files (skipped): +# lightdm-webkit2-greeter.doap +# src/gresource/greeter-resources.gresource.xml +# themes/simple/index.html +# themes/antergos/index.html + +#---------------------------------------------------------------------------- +# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following +# license/copyright files. + +#---------------------------------------------------------------------------- +# License file: COPYING + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + . + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + . + Preamble + . + The GNU General Public License is a free, copyleft license for + software and other kinds of works. + . + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains free + software for all its users. We, the Free Software Foundation, use the + GNU General Public License for most of our software; it applies also to + any other work released this way by its authors. You can apply it to + your programs, too. + . + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + . + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or if + you modify it: responsibilities to respect the freedom of others. + . + For example, if you distribute copies of such a program, whether + gratis or for a fee, you must pass on to the recipients the same + freedoms that you received. You must make sure that they, too, receive + or can get the source code. And you must show them these terms so they + know their rights. + . + Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License + giving you legal permission to copy, distribute and/or modify it. + . + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + . + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the manufacturer + can do so. This is fundamentally incompatible with the aim of + protecting users' freedom to change the software. The systematic + pattern of such abuse occurs in the area of products for individuals to + use, which is precisely where it is most unacceptable. Therefore, we + have designed this version of the GPL to prohibit the practice for those + products. If such problems arise substantially in other domains, we + stand ready to extend this provision to those domains in future versions + of the GPL, as needed to protect the freedom of users. + . + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + . + The precise terms and conditions for copying, distribution and + modification follow. + . + TERMS AND CONDITIONS + . + 0. Definitions. + . + "This License" refers to version 3 of the GNU General Public License. + . + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + . + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + . + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a "modified version" of the + earlier work or a work "based on" the earlier work. + . + A "covered work" means either the unmodified Program or a work based + on the Program. + . + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + . + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + . + An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + . + 1. Source Code. + . + The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work. + . + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that + is widely used among developers working in that language. + . + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to + produce the work, or an object code interpreter used to run it. + . + The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + . + The Corresponding Source need not include anything that users + can regenerate automatically from other parts of the Corresponding + Source. + . + The Corresponding Source for a work in source code form is that + same work. + . + 2. Basic Permissions. + . + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + . + You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise remains + in force. You may convey covered works to others for the sole purpose + of having them make modifications exclusively for you, or provide you + with facilities for running those works, provided that you comply with + the terms of this License in conveying all material for which you do + not control copyright. Those thus making or running the covered works + for you must do so exclusively on your behalf, under your direction + and control, on terms that prohibit them from making any copies of + your copyrighted material outside their relationship with you. + . + Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section 10 + makes it unnecessary. + . + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + . + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or + similar laws prohibiting or restricting circumvention of such + measures. + . + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to + the covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work's + users, your or third parties' legal rights to forbid circumvention of + technological measures. + . + 4. Conveying Verbatim Copies. + . + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + . + You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee. + . + 5. Conveying Modified Source Versions. + . + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these conditions: + . + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + . + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + . + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + . + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + . + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not + used to limit the access or legal rights of the compilation's users + beyond what the individual works permit. Inclusion of a covered work + in an aggregate does not cause this License to apply to the other + parts of the aggregate. + . + 6. Conveying Non-Source Forms. + . + You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, + in one of these ways: + . + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + . + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + . + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + . + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + . + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + . + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be + included in conveying the object code work. + . + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for incorporation + into a dwelling. In determining whether a product is a consumer product, + doubtful cases shall be resolved in favor of coverage. For a particular + product received by a particular user, "normally used" refers to a + typical or common use of that class of product, regardless of the status + of the particular user or of the way in which the particular user + actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial + commercial, industrial or non-consumer uses, unless such uses represent + the only significant mode of use of the product. + . + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to install + and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must + suffice to ensure that the continued functioning of the modified object + code is in no case prevented or interfered with solely because + modification has been made. + . + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied + by the Installation Information. But this requirement does not apply + if neither you nor any third party retains the ability to install + modified object code on the User Product (for example, the work has + been installed in ROM). + . + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates + for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a + network may be denied when the modification itself materially and + adversely affects the operation of the network or violates the rules and + protocols for communication across the network. + . + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + . + 7. Additional Terms. + . + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + . + When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part of + it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission. + . + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders of + that material) supplement the terms of this License with terms: + . + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + . + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + . + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + . + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + . + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + . + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + . + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + . + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + . + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; + the above requirements apply either way. + . + 8. Termination. + . + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + . + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the copyright + holder fails to notify you of the violation by some reasonable means + prior to 60 days after the cessation. + . + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice. + . + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + . + 9. Acceptance Not Required for Having Copies. + . + You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so. + . + 10. Automatic Licensing of Downstream Recipients. + . + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + . + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts. + . + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + . + 11. Patents. + . + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + . + A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, "control" includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License. + . + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + . + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + . + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + . + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + . + A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that are + specifically granted under this License. You may not convey a covered + work if you are a party to an arrangement with a third party that is + in the business of distributing software, under which you make payment + to the third party based on the extent of your activity of conveying + the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory + patent license (a) in connection with copies of the covered work + conveyed by you (or copies made from those copies), or (b) primarily + for and in connection with specific products or compilations that + contain the covered work, unless you entered into that arrangement, + or that patent license was granted, prior to 28 March 2007. + . + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + . + 12. No Surrender of Others' Freedom. + . + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate you + to collect a royalty for further conveying from those to whom you convey + the Program, the only way you could satisfy both those terms and this + License would be to refrain entirely from conveying the Program. + . + 13. Use with the GNU Affero General Public License. + . + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + . + 14. Revised Versions of this License. + . + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + . + Each version is given a distinguishing version number. If the + Program specifies that a certain numbered version of the GNU General + Public License "or any later version" applies to it, you have the + option of following the terms and conditions either of that numbered + version or of any later version published by the Free Software + Foundation. If the Program does not specify a version number of the + GNU General Public License, you may choose any version ever published + by the Free Software Foundation. + . + If the Program specifies that a proxy can decide which future + versions of the GNU General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + . + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + . + 15. Disclaimer of Warranty. + . + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + . + 16. Limitation of Liability. + . + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + . + 17. Interpretation of Sections 15 and 16. + . + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + . + END OF TERMS AND CONDITIONS + . + How to Apply These Terms to Your New Programs + . + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + . + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + . + + Copyright (C) + . + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + Also add information on how to contact you by electronic and paper mail. + . + If the program does terminal interaction, make it output a short + notice like this when it starts in an interactive mode: + . + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + . + The hypothetical commands `show w' and `show c' should show the appropriate + parts of the General Public License. Of course, your program's commands + might be different; for a GUI interface, you would use an "about box". + . + You should also get your employer (if you work as a programmer) or school, + if any, to sign a "copyright disclaimer" for the program, if necessary. + For more information on this, and how to apply and follow the GNU GPL, see + . + . + The GNU General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications with + the library. If this is what you want to do, use the GNU Lesser General + Public License instead of this License. But first, please read + . diff --git a/lightdm-webkit2-greeter/debian/patches/series b/lightdm-webkit2-greeter/debian/patches/series new file mode 100644 index 0000000..4a97dfa --- /dev/null +++ b/lightdm-webkit2-greeter/debian/patches/series @@ -0,0 +1 @@ +# You must remove unused comment lines for the released package. diff --git a/lightdm-webkit2-greeter/debian/rules b/lightdm-webkit2-greeter/debian/rules new file mode 100755 index 0000000..b799307 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +export DESTROOT=$(CURDIR)/debian/lightdm-webkit2-greeter +export CONFIG_FILE=$(DESTROOT)/etc/lightdm/lightdm-webkit2-greeter.conf + +override_dh_auto_configure: + cd build && meson --prefix=/usr .. + +override_dh_auto_install: + cd build && ninja && export DESTDIR=$(DESTROOT) && ninja install + sed -i 's|lightdm-webkit/themes/antergos/img/antergos.png|help/C/ubuntu-help/figures/ubuntu-logo.png|g' $(CONFIG_FILE) + sed -i 's|lightdm-webkit/themes/antergos/img/antergos-logo-user.png|pixmaps/faces/sunset.jpg|g' $(CONFIG_FILE) + + dh_auto_install + +%: + dh $@ + +override_dh_auto_clean: + dh_auto_clean + rm -rf src/gresource/js/bundle.js build/.ninja_* build/meson-* build/man build/build.ninja \ + build/compile_commands.json build/data build/src build/themes build/po diff --git a/lightdm-webkit2-greeter/debian/source/format b/lightdm-webkit2-greeter/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/lightdm-webkit2-greeter/debian/source/local-options b/lightdm-webkit2-greeter/debian/source/local-options new file mode 100644 index 0000000..00131ee --- /dev/null +++ b/lightdm-webkit2-greeter/debian/source/local-options @@ -0,0 +1,2 @@ +#abort-on-upstream-changes +#unapply-patches diff --git a/lightdm-webkit2-greeter/debian/watch b/lightdm-webkit2-greeter/debian/watch new file mode 100644 index 0000000..76575dc --- /dev/null +++ b/lightdm-webkit2-greeter/debian/watch @@ -0,0 +1,2 @@ +# You must remove unused comment lines for the released package. +version=3 -- cgit From 044bc9fb5e6dec7caec4d8cf188f8c6831033a4b Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 11 Sep 2019 11:40:56 -0400 Subject: minor improvements and first upload attempt to OBS However, with OBS Debian_Unstable down for now, I cannot confirm its success. I can build locally, however. --- lightdm-webkit2-greeter/debian/changelog | 2 +- lightdm-webkit2-greeter/debian/control | 2 +- lightdm-webkit2-greeter/debian/postinst | 14 ++++++++++++++ lightdm-webkit2-greeter/debian/prerm | 8 ++++++++ 4 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 lightdm-webkit2-greeter/debian/postinst create mode 100644 lightdm-webkit2-greeter/debian/prerm diff --git a/lightdm-webkit2-greeter/debian/changelog b/lightdm-webkit2-greeter/debian/changelog index 87a3686..c18ec28 100644 --- a/lightdm-webkit2-greeter/debian/changelog +++ b/lightdm-webkit2-greeter/debian/changelog @@ -1,4 +1,4 @@ -lightdm-webkit2-greeter (2.2.5-1+devuan-1) obs; urgency=low +lightdm-webkit2-greeter (2.2.5-1+devuan) obs; urgency=low * Initial release for devuan diff --git a/lightdm-webkit2-greeter/debian/control b/lightdm-webkit2-greeter/debian/control index c1c7b4b..5413d82 100644 --- a/lightdm-webkit2-greeter/debian/control +++ b/lightdm-webkit2-greeter/debian/control @@ -16,7 +16,7 @@ Package: lightdm-webkit2-greeter Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends} -Provides: lightdm-greeter +Provides: lightdm-greeter, web-greeter Replaces: lightdm-webkit-greeter Breaks: lightdm-webkit-greeter Description: LightDM greeter that uses WebKit2 for theming via HTML/JavaScript diff --git a/lightdm-webkit2-greeter/debian/postinst b/lightdm-webkit2-greeter/debian/postinst new file mode 100644 index 0000000..afded81 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e +case "$1" in + + configure|abort-upgrade|abort-remove|abort-deconfigure) + update-alternatives --install /usr/share/xgreeters/lightdm-default-greeter.desktop lightdm-default-greeter.desktop /usr/share/xgreeters/lightdm-webkit2-greeter.desktop 20 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; + +esac +exit 0 diff --git a/lightdm-webkit2-greeter/debian/prerm b/lightdm-webkit2-greeter/debian/prerm new file mode 100644 index 0000000..704ebf7 --- /dev/null +++ b/lightdm-webkit2-greeter/debian/prerm @@ -0,0 +1,8 @@ +#!/bin/sh -e +case "$1" in + + remove|deconfigure) + update-alternatives --remove lightdm-default-greeter.desktop /usr/share/xgreeters/lightdm-webkit2-greeter.desktop + ;; + +esac -- cgit From 97b8913565818b1b92b7ad24d9e807911eb8182a Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 11 Sep 2019 13:52:46 -0400 Subject: fix chicago95 version number --- chicago95/debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chicago95/debian/changelog b/chicago95/debian/changelog index 0b8a12b..23096d7 100644 --- a/chicago95/debian/changelog +++ b/chicago95/debian/changelog @@ -1,4 +1,4 @@ -chicago95 (0.0.1-1+devuan-1) obs; urgency=low +chicago95 (0.0.1-1+devuan) obs; urgency=low * Initial release. -- cgit From 27efba8df07f49a256418703ec6bfb5fd06f75b2 Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 11 Sep 2019 21:00:10 -0400 Subject: fix theme-plymouth.postinst case typo in update-alternatives --- chicago95/debian/chicago95-theme-plymouth.postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chicago95/debian/chicago95-theme-plymouth.postinst b/chicago95/debian/chicago95-theme-plymouth.postinst index 89f4ae8..43f31b1 100644 --- a/chicago95/debian/chicago95-theme-plymouth.postinst +++ b/chicago95/debian/chicago95-theme-plymouth.postinst @@ -4,7 +4,7 @@ set -e case "$1" in configure| abort-upgrade|abort-remove|abort-deconfigure) update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth 80 - update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Retrotux/Retrotux.plymouth 70 + update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/RetroTux/RetroTux.plymouth 70 ;; *) -- cgit From 332ade454c8fe66e08d7a2cddb5ac3718d55a11c Mon Sep 17 00:00:00 2001 From: B Stack Date: Fri, 13 Sep 2019 14:02:18 -0400 Subject: Better documentation for chicago95 --- chicago95/debian/README.Debian | 17 +++++++++++++---- chicago95/debian/changelog | 14 +++++++++++++- chicago95/debian/chicago95-theme-doc.install | 0 3 files changed, 26 insertions(+), 5 deletions(-) delete mode 100644 chicago95/debian/chicago95-theme-doc.install diff --git a/chicago95/debian/README.Debian b/chicago95/debian/README.Debian index e423f73..1912eab 100644 --- a/chicago95/debian/README.Debian +++ b/chicago95/debian/README.Debian @@ -1,8 +1,17 @@ chicago95 for Devuan - * Future improvements can include: - - KDE components - - lightdm-webkit2-greet (need to build package) - - Split into the various binary packages. + * What is not implemented + - KDE/SDDM components + - Everything from the Extras/ directory (except the Xfce4-terminal + theme and startup sound) + + * Additional dependencies for Devuan and Debian users + - You need to install an additional apt source to get some packages + not bundled in upstream Devuan and Debian. + +echo 'deb http://download.opensuse.org/repositories/home:/bgstack15/Debian_Unstable/ /' | sudo tee -a /etc/apt/sources.list.d/home:bgstack15.list +wget -nv https://download.opensuse.org/repositories/home:bgstack15/Debian_Unstable/ Release.key -O- | apt-key add - + + - Install plymouth and lightdm-webkit2-greeter -- B Stack Tue, 10 Sep 2019 20:42:20 -0400 diff --git a/chicago95/debian/changelog b/chicago95/debian/changelog index 23096d7..89f5368 100644 --- a/chicago95/debian/changelog +++ b/chicago95/debian/changelog @@ -1,5 +1,17 @@ chicago95 (0.0.1-1+devuan) obs; urgency=low - * Initial release. + * Initial release for Devuan. Features include: + - Cursor themes + - Xfce4-terminal color scheme + - Startup sound + - Fonts for terminal + - Icon themes + - Lightdm theme (lightdm-webkit2-greeter) + - Plymouth splash screens + - Gtk/metacity/xfce graphical themes + * Special dependencies not available in stock Devuan: + - lightdm-webkit2-greeter + - plymouth + - See README.Debian file for more info -- B Stack Tue, 10 Sep 2019 20:42:20 -0400 diff --git a/chicago95/debian/chicago95-theme-doc.install b/chicago95/debian/chicago95-theme-doc.install deleted file mode 100644 index e69de29..0000000 -- cgit