From owner-svn-ports-all@FreeBSD.ORG Sat Nov 22 11:47:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00BFC5AF; Sat, 22 Nov 2014 11:47:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF5A57B5; Sat, 22 Nov 2014 11:47:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAMBlBhw017631; Sat, 22 Nov 2014 11:47:11 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAMBlA1M017627; Sat, 22 Nov 2014 11:47:10 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201411221147.sAMBlA1M017627@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 22 Nov 2014 11:47:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373050 - head/x11-wm/sawfish X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Nov 2014 11:47:12 -0000 Author: danfe Date: Sat Nov 22 11:47:10 2014 New Revision: 373050 URL: https://svnweb.freebsd.org/changeset/ports/373050 QAT: https://qat.redports.org/buildarchive/r373050/ Log: - Update to release of Sawfish 1.11, codename "Apollo" - Make translations optional (with OPTIONS_DEFINE=NLS) - Kill bogus EOL whitespace in the port description - Cleanup pkg-plist from @dirrm* entries (no longer needed) - While here: sort USES, make COMMENT more descriptive Modified: head/x11-wm/sawfish/Makefile head/x11-wm/sawfish/distinfo head/x11-wm/sawfish/pkg-descr head/x11-wm/sawfish/pkg-plist Modified: head/x11-wm/sawfish/Makefile ============================================================================== --- head/x11-wm/sawfish/Makefile Sat Nov 22 11:40:08 2014 (r373049) +++ head/x11-wm/sawfish/Makefile Sat Nov 22 11:47:10 2014 (r373050) @@ -2,15 +2,14 @@ # $FreeBSD$ PORTNAME= sawfish -PORTVERSION= 1.10 -PORTREVISION= 1 +PORTVERSION= 1.11 PORTEPOCH= 3 CATEGORIES= x11-wm -MASTER_SITES= http://download.tuxfamily.org/sawfish/%SUBDIR%/ -MASTER_SITE_SUBDIR= . Archive +MASTER_SITES= http://download.tuxfamily.org/sawfish/ +DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= Lisp configurable window manager +COMMENT= Extensible window manager using Lisp-based scripting language LICENSE= ART20 GPLv2 LICENSE_COMB= multi @@ -19,7 +18,7 @@ BUILD_DEPENDS= rep-gtk2>=0.90:${PORTSDIR LIB_DEPENDS= librep.so:${PORTSDIR}/lang/librep RUN_DEPENDS= rep-gtk2>=0.90:${PORTSDIR}/x11-toolkits/rep-gtk2 -USES= gettext gmake makeinfo pathfix pkgconfig tar:xz libtool +USES= gmake libtool makeinfo pathfix pkgconfig tar:xz USE_XORG= ice sm x11 xft xinerama xrandr xtst USE_GNOME= cairo gnomehier gtk20 GNU_CONFIGURE= yes @@ -32,14 +31,21 @@ LDFLAGS+= -L${LOCALBASE}/lib INFO= sawfish +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_CONFIGURE_OFF= --without-nls + +post-extract: + @${RM} ${WRKSRC}/themes/StyleTab/Flat/.directory + post-patch: @${REINPLACE_CMD} -e \ '/dnsdomainname/d' ${WRKSRC}/build-info @${REINPLACE_CMD} -e \ '/KDEDIR/s|^|#|g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e \ - 's|/share/man/|/man/|g' ${WRKSRC}/man/Makefile.in - @${REINPLACE_CMD} -e \ 's|prog_name|program_name|g' ${WRKSRC}/src/main.c .include Modified: head/x11-wm/sawfish/distinfo ============================================================================== --- head/x11-wm/sawfish/distinfo Sat Nov 22 11:40:08 2014 (r373049) +++ head/x11-wm/sawfish/distinfo Sat Nov 22 11:47:10 2014 (r373050) @@ -1,2 +1,2 @@ -SHA256 (sawfish-1.10.tar.xz) = 916f57294d3c85d431c4b3b830d3e5f44576a66030634f93c907df52a3c97149 -SIZE (sawfish-1.10.tar.xz) = 2690556 +SHA256 (sawfish_1.11.tar.xz) = cf6f5641d79a6642f41a7aaef6f290b8d30ecb370b37b6b4cf4099812ea8e472 +SIZE (sawfish_1.11.tar.xz) = 2751904 Modified: head/x11-wm/sawfish/pkg-descr ============================================================================== --- head/x11-wm/sawfish/pkg-descr Sat Nov 22 11:40:08 2014 (r373049) +++ head/x11-wm/sawfish/pkg-descr Sat Nov 22 11:47:10 2014 (r373050) @@ -15,6 +15,5 @@ managers: of rules and automatically perform actions on them. * Flexible theming: Sawfish allows for very different themes to be created and a variety of third-party themes is readily available - WWW: http://sawfish.tuxfamily.org/ Modified: head/x11-wm/sawfish/pkg-plist ============================================================================== --- head/x11-wm/sawfish/pkg-plist Sat Nov 22 11:40:08 2014 (r373049) +++ head/x11-wm/sawfish/pkg-plist Sat Nov 22 11:47:10 2014 (r373050) @@ -2,6 +2,10 @@ bin/sawfish bin/sawfish-about bin/sawfish-client bin/sawfish-config +bin/sawfish-kde4-session +bin/sawfish-lumina-session +bin/sawfish-mate-session +bin/sawfish-xfce-session include/sawfish/build.h include/sawfish/keys.h include/sawfish/libclient.h @@ -31,63 +35,65 @@ man/man1/sawfish-client.1.gz man/man1/sawfish-config.1.gz man/man1/sawfish.1.gz share/applications/sawfish.desktop +share/applications/sawfish-config.desktop share/gnome/wm-properties/sawfish-wm.desktop share/icons/hicolor/32x32/apps/sawfish-config.png -share/locale/ak/LC_MESSAGES/sawfish.mo -share/locale/am/LC_MESSAGES/sawfish.mo -share/locale/ar/LC_MESSAGES/sawfish.mo -share/locale/az/LC_MESSAGES/sawfish.mo -share/locale/be/LC_MESSAGES/sawfish.mo -share/locale/bg/LC_MESSAGES/sawfish.mo -share/locale/bs/LC_MESSAGES/sawfish.mo -share/locale/ca/LC_MESSAGES/sawfish.mo -share/locale/cs/LC_MESSAGES/sawfish.mo -share/locale/da/LC_MESSAGES/sawfish.mo -share/locale/de/LC_MESSAGES/sawfish.mo -share/locale/dz/LC_MESSAGES/sawfish.mo -share/locale/el/LC_MESSAGES/sawfish.mo -share/locale/en_CA/LC_MESSAGES/sawfish.mo -share/locale/en_GB/LC_MESSAGES/sawfish.mo -share/locale/es/LC_MESSAGES/sawfish.mo -share/locale/et/LC_MESSAGES/sawfish.mo -share/locale/eu/LC_MESSAGES/sawfish.mo -share/locale/fi/LC_MESSAGES/sawfish.mo -share/locale/fr/LC_MESSAGES/sawfish.mo -share/locale/ga/LC_MESSAGES/sawfish.mo -share/locale/gl/LC_MESSAGES/sawfish.mo -share/locale/hi_IN/LC_MESSAGES/sawfish.mo -share/locale/hu/LC_MESSAGES/sawfish.mo -share/locale/id/LC_MESSAGES/sawfish.mo -share/locale/it/LC_MESSAGES/sawfish.mo -share/locale/ja/LC_MESSAGES/sawfish.mo -share/locale/ko/LC_MESSAGES/sawfish.mo -share/locale/lv/LC_MESSAGES/sawfish.mo -share/locale/mk/LC_MESSAGES/sawfish.mo -share/locale/ms/LC_MESSAGES/sawfish.mo -share/locale/nb/LC_MESSAGES/sawfish.mo -share/locale/ne/LC_MESSAGES/sawfish.mo -share/locale/nl/LC_MESSAGES/sawfish.mo -share/locale/nn/LC_MESSAGES/sawfish.mo -share/locale/no/LC_MESSAGES/sawfish.mo -share/locale/oc/LC_MESSAGES/sawfish.mo -share/locale/pa/LC_MESSAGES/sawfish.mo -share/locale/pl/LC_MESSAGES/sawfish.mo -share/locale/pt/LC_MESSAGES/sawfish.mo -share/locale/pt_BR/LC_MESSAGES/sawfish.mo -share/locale/ro/LC_MESSAGES/sawfish.mo -share/locale/ru/LC_MESSAGES/sawfish.mo -share/locale/rw/LC_MESSAGES/sawfish.mo -share/locale/sk/LC_MESSAGES/sawfish.mo -share/locale/sl/LC_MESSAGES/sawfish.mo -share/locale/sr/LC_MESSAGES/sawfish.mo -share/locale/sr@Latn/LC_MESSAGES/sawfish.mo -share/locale/sv/LC_MESSAGES/sawfish.mo -share/locale/tr/LC_MESSAGES/sawfish.mo -share/locale/uk/LC_MESSAGES/sawfish.mo -share/locale/vi/LC_MESSAGES/sawfish.mo -share/locale/wa/LC_MESSAGES/sawfish.mo -share/locale/zh_CN/LC_MESSAGES/sawfish.mo -share/locale/zh_TW/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ak/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/am/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ar/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/az/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/be/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/bg/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/bs/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ca/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/cs/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/da/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/de/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/dz/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/el/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/en_CA/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/es/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/et/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/eu/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/fi/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/fr/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ga/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/gl/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/hi_IN/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/hu/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/id/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/it/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ja/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ko/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/lv/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/mk/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ms/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/nb/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ne/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/nl/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/nn/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/no/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/oc/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/pa/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/pl/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/pt/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ro/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/ru/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/rw/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/sk/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/sl/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/sr/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/sr@Latn/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/sv/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/tr/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/uk/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/vi/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/wa/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/sawfish.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/sawfish.mo +%%DATADIR%%/images/cabinet-missing.png %%DATADIR%%/lisp/anim-outline.jl %%DATADIR%%/lisp/anim-outline.jlc %%DATADIR%%/lisp/apps-menu.jl @@ -100,6 +106,8 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/beos-window-menu.jlc %%DATADIR%%/lisp/compton.jl %%DATADIR%%/lisp/compton.jlc +%%DATADIR%%/lisp/conky.jl +%%DATADIR%%/lisp/conky.jlc %%DATADIR%%/lisp/custom.jl %%DATADIR%%/lisp/custom.jlc %%DATADIR%%/lisp/customize.jl @@ -110,6 +118,8 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/decode-events.jlc %%DATADIR%%/lisp/describe.jl %%DATADIR%%/lisp/describe.jlc +%%DATADIR%%/lisp/diodon.jl +%%DATADIR%%/lisp/diodon.jlc %%DATADIR%%/lisp/edge-actions.jl %%DATADIR%%/lisp/edge-actions.jlc %%DATADIR%%/lisp/edge-conf.jl @@ -140,12 +150,16 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/gtkrc.jlc %%DATADIR%%/lisp/hot-spots.jl %%DATADIR%%/lisp/hot-spots.jlc +%%DATADIR%%/lisp/idesk.jl +%%DATADIR%%/lisp/idesk.jlc %%DATADIR%%/lisp/kde-int.jl %%DATADIR%%/lisp/kde-int.jlc %%DATADIR%%/lisp/keymap.jl %%DATADIR%%/lisp/keymap.jlc %%DATADIR%%/lisp/launcher.jl %%DATADIR%%/lisp/launcher.jlc +%%DATADIR%%/lisp/lumina-int.jl +%%DATADIR%%/lisp/lumina-int.jlc %%DATADIR%%/lisp/lxde-int.jl %%DATADIR%%/lisp/lxde-int.jlc %%DATADIR%%/lisp/make-theme.jl @@ -162,6 +176,8 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/mousetrap.jlc %%DATADIR%%/lisp/move-resize.jl %%DATADIR%%/lisp/move-resize.jlc +%%DATADIR%%/lisp/nm-applet.jl +%%DATADIR%%/lisp/nm-applet.jlc %%DATADIR%%/lisp/old-window-menu.jl %%DATADIR%%/lisp/old-window-menu.jlc %%DATADIR%%/lisp/pancake.jl @@ -315,6 +331,8 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/sawfish/wm/ext/mousetrap.jlc %%DATADIR%%/lisp/sawfish/wm/ext/old-window-menu.jl %%DATADIR%%/lisp/sawfish/wm/ext/old-window-menu.jlc +%%DATADIR%%/lisp/sawfish/wm/ext/run-application.jl +%%DATADIR%%/lisp/sawfish/wm/ext/run-application.jlc %%DATADIR%%/lisp/sawfish/wm/ext/shade-hover.jl %%DATADIR%%/lisp/sawfish/wm/ext/shade-hover.jlc %%DATADIR%%/lisp/sawfish/wm/ext/shade-stack.jl @@ -334,10 +352,14 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/sawfish/wm/frames.jlc %%DATADIR%%/lisp/sawfish/wm/gaol.jl %%DATADIR%%/lisp/sawfish/wm/gaol.jlc +%%DATADIR%%/lisp/sawfish/wm/heads.jl +%%DATADIR%%/lisp/sawfish/wm/heads.jlc %%DATADIR%%/lisp/sawfish/wm/integration/gnome.jl %%DATADIR%%/lisp/sawfish/wm/integration/gnome.jlc %%DATADIR%%/lisp/sawfish/wm/integration/kde.jl %%DATADIR%%/lisp/sawfish/wm/integration/kde.jlc +%%DATADIR%%/lisp/sawfish/wm/integration/lumina.jl +%%DATADIR%%/lisp/sawfish/wm/integration/lumina.jlc %%DATADIR%%/lisp/sawfish/wm/integration/lxde.jl %%DATADIR%%/lisp/sawfish/wm/integration/lxde.jlc %%DATADIR%%/lisp/sawfish/wm/integration/mate.jl @@ -364,8 +386,16 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/lisp/sawfish/wm/placement/top-left.jlc %%DATADIR%%/lisp/sawfish/wm/prg/compton.jl %%DATADIR%%/lisp/sawfish/wm/prg/compton.jlc +%%DATADIR%%/lisp/sawfish/wm/prg/conky.jl +%%DATADIR%%/lisp/sawfish/wm/prg/conky.jlc +%%DATADIR%%/lisp/sawfish/wm/prg/diodon.jl +%%DATADIR%%/lisp/sawfish/wm/prg/diodon.jlc %%DATADIR%%/lisp/sawfish/wm/prg/fehlstart.jl %%DATADIR%%/lisp/sawfish/wm/prg/fehlstart.jlc +%%DATADIR%%/lisp/sawfish/wm/prg/idesk.jl +%%DATADIR%%/lisp/sawfish/wm/prg/idesk.jlc +%%DATADIR%%/lisp/sawfish/wm/prg/nm-applet.jl +%%DATADIR%%/lisp/sawfish/wm/prg/nm-applet.jlc %%DATADIR%%/lisp/sawfish/wm/prg/pancake.jl %%DATADIR%%/lisp/sawfish/wm/prg/pancake.jlc %%DATADIR%%/lisp/sawfish/wm/prg/trayer.jl @@ -550,140 +580,12 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/bottom-frame-bottom-right-corner-i.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-bottom-right-corner-shaped-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-bottom-right-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-close-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-frame-type-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-iconify-button-ih.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-left-border-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-left-border-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-lock-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-maximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-menu-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-move-resize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-next-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-ontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-prev-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-raise-lower-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-rename-button-ih.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-right-border-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-right-border-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-shade-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-sticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-left-icon-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-tab-right-marked-ih.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-cursor-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-cursor-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-i.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-nocursor-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-title-nocursor-i.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-top-border-f.png @@ -692,44 +594,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/bottom-frame-top-left-corner-i.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-top-right-corner-f.png %%DATADIR%%/themes/StyleTab/Default/bottom-frame-top-right-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unlock-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unmaximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unshade-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-c.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-f.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-h.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-i.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/bottom-frame-unsticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-border-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-border-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-left-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-left-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-left-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-bottom-right-corner-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-button-c.png %%DATADIR%%/themes/StyleTab/Default/left-frame-button-f.png %%DATADIR%%/themes/StyleTab/Default/left-frame-button-h.png @@ -818,8 +682,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/left-frame-rename-button-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-rename-button-ic.png %%DATADIR%%/themes/StyleTab/Default/left-frame-rename-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-right-border-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-right-border-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-shade-button-c.png %%DATADIR%%/themes/StyleTab/Default/left-frame-shade-button-f.png %%DATADIR%%/themes/StyleTab/Default/left-frame-shade-button-h.png @@ -832,44 +694,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/left-frame-sticky-button-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-sticky-button-ic.png %%DATADIR%%/themes/StyleTab/Default/left-frame-sticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-bottom-icon-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-tab-top-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-cursor-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-cursor-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-nocursor-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-title-nocursor-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-border-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-border-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-left-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-left-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-left-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/left-frame-top-right-corner-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-unlock-button-c.png %%DATADIR%%/themes/StyleTab/Default/left-frame-unlock-button-f.png %%DATADIR%%/themes/StyleTab/Default/left-frame-unlock-button-h.png @@ -900,190 +724,8 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/left-frame-unsticky-button-i.png %%DATADIR%%/themes/StyleTab/Default/left-frame-unsticky-button-ic.png %%DATADIR%%/themes/StyleTab/Default/left-frame-unsticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-border-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-border-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-left-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-right-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-right-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-bottom-right-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-close-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-frame-type-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-iconify-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-left-border-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-left-border-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-lock-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-maximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-menu-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-move-resize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-next-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-ontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-prev-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-raise-lower-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-rename-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-shade-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-sticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-bottom-icon-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-marked-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-marked-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-marked-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-tab-top-marked-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-cursor-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-cursor-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-nocursor-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-title-nocursor-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-border-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-border-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-left-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-right-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-right-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-top-right-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unlock-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unmaximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unshade-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-c.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-f.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-h.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-i.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Default/right-frame-unsticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-border-f.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-border-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-left-corner-f.png %%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-bottom-right-corner-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-button-c.png %%DATADIR%%/themes/StyleTab/Default/top-frame-button-f.png %%DATADIR%%/themes/StyleTab/Default/top-frame-button-h.png @@ -1176,8 +818,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/top-frame-rename-button-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-rename-button-ic.png %%DATADIR%%/themes/StyleTab/Default/top-frame-rename-button-ih.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-right-border-f.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-right-border-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-shade-button-c.png %%DATADIR%%/themes/StyleTab/Default/top-frame-shade-button-f.png %%DATADIR%%/themes/StyleTab/Default/top-frame-shade-button-h.png @@ -1226,10 +866,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/top-frame-top-left-corner-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-top-left-corner-shaped-f.png %%DATADIR%%/themes/StyleTab/Default/top-frame-top-left-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-top-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-top-right-corner-i.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-top-right-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Default/top-frame-top-right-corner-shaped-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-unlock-button-c.png %%DATADIR%%/themes/StyleTab/Default/top-frame-unlock-button-f.png %%DATADIR%%/themes/StyleTab/Default/top-frame-unlock-button-h.png @@ -1260,6 +896,29 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Default/top-frame-unsticky-button-i.png %%DATADIR%%/themes/StyleTab/Default/top-frame-unsticky-button-ic.png %%DATADIR%%/themes/StyleTab/Default/top-frame-unsticky-button-ih.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-close-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-frame-type-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-icon-title-images-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-icon-title-images-i.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-iconify-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-lock-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-maximize-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-menu-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-move-resize-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-next-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-next-last-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-ontop-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-prev-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-prev-last-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-raise-lower-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-rename-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-shade-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-sticky-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-unlock-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-unmaximize-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-unontop-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-unshade-button-f.png +%%DATADIR%%/themes/StyleTab/Flat/top-frame-unsticky-button-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-left-corner-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-left-corner-i.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-left-corner-shaped-f.png @@ -1268,140 +927,12 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-right-corner-i.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-right-corner-shaped-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-bottom-right-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-close-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-frame-type-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-iconify-button-ih.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-left-border-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-left-border-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-lock-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-maximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-menu-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-move-resize-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-next-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-ontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-prev-last-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-raise-lower-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-rename-button-ih.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-right-border-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-right-border-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-shade-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-sticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-left-icon-marked-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-marked-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-tab-right-marked-ih.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-cursor-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-cursor-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-i.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-nocursor-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-title-nocursor-i.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-top-border-f.png @@ -1410,44 +941,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-top-left-corner-i.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-top-right-corner-f.png %%DATADIR%%/themes/StyleTab/Glass/bottom-frame-top-right-corner-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unlock-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unmaximize-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unontop-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unshade-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-c.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-f.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-h.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-i.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-ic.png -%%DATADIR%%/themes/StyleTab/Glass/bottom-frame-unsticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-border-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-border-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-left-corner-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-left-corner-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-left-corner-shaped-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-left-corner-shaped-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-right-corner-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-bottom-right-corner-i.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-button-c.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-button-f.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-button-h.png @@ -1536,8 +1029,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Glass/left-frame-rename-button-i.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-rename-button-ic.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-rename-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-right-border-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-right-border-i.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-shade-button-c.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-shade-button-f.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-shade-button-h.png @@ -1550,44 +1041,6 @@ share/locale/zh_TW/LC_MESSAGES/sawfish.m %%DATADIR%%/themes/StyleTab/Glass/left-frame-sticky-button-i.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-sticky-button-ic.png %%DATADIR%%/themes/StyleTab/Glass/left-frame-sticky-button-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-bottom-icon-marked-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-marked-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-marked-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-marked-h.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-marked-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-tab-top-marked-ih.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-cursor-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-cursor-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-i.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-nocursor-f.png -%%DATADIR%%/themes/StyleTab/Glass/left-frame-title-nocursor-i.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***