├── .gdbinit ├── .gitattributes ├── .gitignore ├── .tx └── config ├── AUTHORS ├── CONTRIBUTING ├── COPYING ├── COPYING.SOUNDS ├── ChangeLog ├── INSTALL ├── MAINTAINERS ├── Makedefs.in ├── Makefile.in ├── README ├── README.IMPORTANT ├── TODO ├── autogen.sh ├── config.guess ├── config.sub ├── configure.ac ├── data ├── sawfish-config.desktop ├── sawfish-gnome2.desktop ├── sawfish-kde4-session ├── sawfish-kde4.desktop ├── sawfish-kde5-session ├── sawfish-kde5.desktop ├── sawfish-ksm.desktop ├── sawfish-lumina-session ├── sawfish-lumina.desktop ├── sawfish-mate-session ├── sawfish-mate.desktop ├── sawfish-xfce-session ├── sawfish-xfce.desktop ├── sawfish.desktop ├── sawfish.ebuild.in ├── sawfish.pc.in └── sawfish.spec.in ├── debian ├── NEWS.Debian ├── README.Debian ├── README.sawfish-data ├── README.source ├── README.themes ├── changelog ├── clean ├── compat ├── control ├── copyright ├── debian-sawfish-policy ├── patches │ └── series ├── postinst ├── preinst ├── prerm ├── rules ├── sawfish-data.dirs ├── sawfish-data.emacsen-install ├── sawfish-data.emacsen-remove ├── sawfish-data.emacsen-startup ├── sawfish-data.info ├── sawfish-data.install.in ├── sawfish-data.lintian-overrides ├── sawfish-data.postinst ├── sawfish-kde4-session.install ├── sawfish-kde5-session.install ├── sawfish-lisp-source.lintian ├── sawfish-lisp-source.lintian-overrides ├── sawfish-lisp-source.maintscript ├── sawfish-lumina-session.install ├── sawfish-mate-session.install ├── sawfish-xfce-session.install ├── sawfish.emacsen-install ├── sawfish.emacsen-remove ├── sawfish.emacsen-startup ├── sawfish.install ├── sawfish.maintscript ├── sawfish.postinst ├── sawfish.prerm ├── source │ └── format └── watch ├── doc ├── AUTOSTART ├── KEYBINDINGS ├── OPTIONS └── XSettings ├── install-sh ├── lisp ├── Makefile.in └── sawfish │ ├── cfg │ ├── Makefile.in │ ├── README │ ├── WIDGETS-LIST │ ├── apply.jl │ ├── config.jl │ ├── group.jl │ ├── i18n.jl │ ├── layout.jl │ ├── layouts │ │ └── keymaps.jl │ ├── main.jl.in │ ├── sawfish-config.png │ ├── shell.jl │ ├── slot.jl │ └── wm.jl │ ├── gtk │ ├── Makefile.in │ ├── README │ ├── widget.jl │ └── widgets │ │ ├── alist.jl │ │ ├── color.jl │ │ ├── command.jl │ │ ├── event.jl │ │ ├── file.jl │ │ ├── font.jl.in │ │ ├── frame-style.jl │ │ ├── image.jl │ │ ├── keymap.jl │ │ ├── list.jl │ │ ├── match-window.jl │ │ ├── modifier-list.jl │ │ ├── pair.jl │ │ ├── scheme-boolean.jl │ │ └── simple-dialog.jl │ ├── wm.jl │ └── wm │ ├── animation │ ├── main.jl │ ├── modes.jl │ └── setup.jl │ ├── autoload.jl │ ├── commands.jl │ ├── commands │ ├── cycle.jl │ ├── describe.jl │ ├── groups.jl │ ├── grow-pack.jl │ ├── help.jl │ ├── jump-or-exec.jl │ ├── launcher.jl │ ├── move-cursor.jl │ ├── move-resize.jl │ ├── poweroff.jl │ ├── raise-commands.jl │ ├── shrink-yank.jl │ ├── size-window.jl │ ├── slide-window.jl │ ├── viewport-extras.jl │ ├── viewport-linear.jl │ └── x-cycle.jl │ ├── cursors.jl │ ├── custom-defaults.jl │ ├── custom.jl │ ├── customize.jl │ ├── edge │ ├── actions.jl │ ├── conf.jl │ ├── expand.jl │ ├── flip.jl │ ├── hot-spots.jl │ ├── misc.jl │ ├── util.jl │ └── viewport-drag.jl │ ├── ext │ ├── apps-menu.jl │ ├── audio-events.jl │ ├── auto-raise.jl │ ├── beos-window-menu.jl │ ├── cabinet.jl │ ├── error-handler.jl │ ├── hide-dialogs.jl │ ├── match-window.jl │ ├── mousetrap.jl │ ├── old-window-menu.jl │ ├── run-application.jl │ ├── shade-hover.jl │ ├── shade-stack.jl │ ├── single-window-mode.jl │ ├── tooltips.jl │ ├── wallpaper.jl │ ├── window-history.jl │ └── workspace-grid.jl │ ├── focus.jl │ ├── frames.jl │ ├── gaol.jl │ ├── heads.jl │ ├── integration │ ├── gnome.jl │ ├── kde.jl │ ├── lumina.jl │ ├── lxde.jl │ ├── mate.jl │ └── xfce.jl │ ├── keymaps.jl │ ├── menus.jl │ ├── misc.jl │ ├── placement.jl │ ├── placement │ ├── off-center.jl │ ├── smart.jl │ ├── stagger.jl │ └── top-left.jl │ ├── prg │ ├── compton.jl │ ├── conky.jl │ ├── trayer.jl │ ├── xgamma.jl │ ├── xmobar.jl │ ├── xmodmap.jl │ └── xsettingsd.jl │ ├── server.jl │ ├── session │ ├── init.jl │ ├── load.jl │ └── save.jl │ ├── stacking.jl │ ├── state │ ├── configure.jl │ ├── iconify.jl │ ├── ignored.jl │ ├── maximize.jl │ ├── mwm.jl │ ├── open-look.jl │ ├── shading.jl │ ├── transient.jl │ └── wm-spec.jl │ ├── swapper.jl │ ├── tabs │ ├── tab.jl │ └── tabgroup.jl │ ├── theming │ ├── make-theme-preview.jl │ └── make-theme.jl │ ├── tile │ ├── col.jl │ ├── readme.org │ ├── tall.jl │ ├── tile.jl │ ├── tiler.jl │ └── utils.jl │ ├── user.jl │ ├── util │ ├── compat.jl │ ├── decode-events.jl │ ├── display-window.jl │ ├── display-wininfo.jl │ ├── edges.jl │ ├── events.jl │ ├── font.jl │ ├── groups.jl │ ├── gtkrc.jl │ ├── keymap-diff.jl │ ├── keymap.jl │ ├── nokogiri.jl │ ├── ping.jl │ ├── play-audio.jl │ ├── prompt-extras.jl │ ├── prompt-wm.jl │ ├── prompt.jl │ ├── recolor-image.jl │ ├── rects.jl │ ├── stacking.jl │ ├── window-order.jl │ ├── with-output.jl │ └── workarea.jl │ ├── viewport.jl │ ├── windows.jl │ └── workspace.jl ├── man ├── Makefile.in ├── faq.texi ├── news.texi ├── sawfish-client.1 ├── sawfish-config.1 ├── sawfish.1 ├── sawfish.texi └── user-doc.texi ├── mkinstalldirs ├── moved ├── next-lisp ├── Undo-viewport.jl ├── undo.jl └── uptimes.jl ├── po ├── LINGUAS ├── Makefile.in ├── POTFILES.in ├── README ├── ak.po ├── am.po ├── ar.po ├── az.po ├── be.po ├── bg.po ├── bs.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_CA.po ├── en_GB.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── ga.po ├── gl.po ├── hi_IN.po ├── hu.po ├── id.po ├── it.po ├── ja.po ├── ko.po ├── lv.po ├── make-pot ├── mk.po ├── ms.po ├── nb.po ├── ne.po ├── nl.po ├── nn.po ├── no.po ├── oc.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sawfish-xgettext ├── sawfish.pot ├── sk.po ├── sl.po ├── sr.po ├── sr@Latn.po ├── sv.po ├── tr.po ├── uk.po ├── update.sh ├── vi.po ├── wa.po ├── zh_CN.po └── zh_TW.po ├── sawfish.el ├── screenshotter ├── Makefile ├── README ├── apps.sh ├── bkgd.jpg ├── make_screenshot.sh ├── make_screenshots.sh ├── normal-window.sh └── prep_config.sh ├── scripts ├── Makefile.in ├── cabinet-missing.png ├── make-changelog ├── sawfish-about.jl.in ├── sawfish-client.jl ├── sawfish-menu.jl └── sawfish.png ├── sounds ├── Makefile.in ├── focused.wav ├── iconify.wav ├── map-transient.wav ├── map.wav ├── maximize.wav ├── move-viewport.wav ├── shade.wav ├── switch-workspace.wav ├── unfocused.wav ├── uniconify.wav ├── unmap-transient.wav ├── unmap.wav ├── unmaximize.wav └── unshade.wav ├── src ├── Makefile.in ├── client.c ├── colors.c ├── cursors.c ├── display.c ├── events.c ├── fake-libexec ├── flippers.c ├── fonts.c ├── frames.c ├── functions.c ├── gradient.c ├── gtk-style.c ├── images.c ├── keys.c ├── keys.h ├── libclient.c ├── libclient.h ├── main.c ├── multihead.c ├── pixmap-cache.c ├── property-cache.c ├── sawfish.h ├── sawfish_subrs.h ├── selection.c ├── server.c ├── server.h ├── session.c ├── stacking-list.c ├── windows.c └── x.c ├── themes ├── Crux │ ├── README │ ├── README.gl │ ├── active:bottom-left-border.png │ ├── active:bottom-left-corner.png │ ├── active:bottom-right-border.png │ ├── active:bottom-right-corner.png │ ├── active:button-hilight.png │ ├── active:button-pressed.png │ ├── active:button.png │ ├── active:close-button.png │ ├── active:left-border.png │ ├── active:left-top-border-shaped.png │ ├── active:left-top-border.png │ ├── active:maximize-button.png │ ├── active:menu-button-hilight.png │ ├── active:menu-button-pressed.png │ ├── active:menu-button.png │ ├── active:minimize-button.png │ ├── active:right-border.png │ ├── active:right-top-border-shaped.png │ ├── active:right-top-border.png │ ├── active:shade-button.png │ ├── active:top-center-left-border.png │ ├── active:top-center-left.png │ ├── active:top-center-mid.png │ ├── active:top-center-right-border.png │ ├── active:top-center-right.png │ ├── active:top-left-border.png │ ├── active:top-right-border.png │ ├── inactive:bottom-left-border.png │ ├── inactive:bottom-left-corner.png │ ├── inactive:bottom-right-border.png │ ├── inactive:bottom-right-corner.png │ ├── inactive:button-hilight.png │ ├── inactive:button-pressed.png │ ├── inactive:button.png │ ├── inactive:close-button.png │ ├── inactive:left-border.png │ ├── inactive:left-top-border-shaped.png │ ├── inactive:left-top-border.png │ ├── inactive:maximize-button.png │ ├── inactive:menu-button-hilight.png │ ├── inactive:menu-button-pressed.png │ ├── inactive:menu-button.png │ ├── inactive:minimize-button.png │ ├── inactive:right-border.png │ ├── inactive:right-top-border-shaped.png │ ├── inactive:right-top-border.png │ ├── inactive:shade-button.png │ ├── inactive:top-center-left-border.png │ ├── inactive:top-center-left.png │ ├── inactive:top-center-mid.png │ ├── inactive:top-center-right-border.png │ ├── inactive:top-center-right.png │ ├── inactive:top-left-border.png │ ├── inactive:top-right-border.png │ └── theme.jl ├── Elberg-tabbed │ ├── a-bot.png │ ├── a-ll.png │ ├── a-lr.png │ ├── a-ls.png │ ├── a-rs.png │ ├── a-t0.png │ ├── a-t1.png │ ├── a-t2.png │ ├── a-t3.png │ ├── a-tbot.png │ ├── a-th.png │ ├── a-ti.png │ ├── a-tll.png │ ├── a-tlr.png │ ├── a-tlrs.png │ ├── a-tls.png │ ├── a-tm.png │ ├── a-tt0.png │ ├── a-ttop.png │ ├── a-ttx.png │ ├── a-tul.png │ ├── a-tur.png │ ├── a-turs.png │ ├── a-tx.png │ ├── a-ul.png │ ├── a-uls.png │ ├── a-ur.png │ ├── a-urs.png │ ├── c-th.png │ ├── c-ti.png │ ├── c-tm.png │ ├── c-ttx.png │ ├── c-tx.png │ ├── i-bot.png │ ├── i-ll.png │ ├── i-lr.png │ ├── i-ls.png │ ├── i-rs.png │ ├── i-t0.png │ ├── i-t1.png │ ├── i-t2.png │ ├── i-t3.png │ ├── i-tbot.png │ ├── i-th.png │ ├── i-ti.png │ ├── i-tll.png │ ├── i-tlr.png │ ├── i-tlrs.png │ ├── i-tls.png │ ├── i-tm.png │ ├── i-tt0.png │ ├── i-ttop.png │ ├── i-ttx.png │ ├── i-tul.png │ ├── i-tur.png │ ├── i-turs.png │ ├── i-tx.png │ ├── i-ul.png │ ├── i-uls.png │ ├── i-ur.png │ ├── i-urs.png │ ├── p-th.png │ ├── p-ti.png │ ├── p-tm.png │ ├── p-ttx.png │ ├── p-tx.png │ └── theme.jl ├── Makefile.in ├── StyleTab │ ├── Default │ │ ├── bottom-frame-bottom-left-corner-f.png │ │ ├── bottom-frame-bottom-left-corner-i.png │ │ ├── bottom-frame-bottom-left-corner-shaped-f.png │ │ ├── bottom-frame-bottom-left-corner-shaped-i.png │ │ ├── bottom-frame-bottom-right-corner-f.png │ │ ├── bottom-frame-bottom-right-corner-i.png │ │ ├── bottom-frame-bottom-right-corner-shaped-f.png │ │ ├── bottom-frame-bottom-right-corner-shaped-i.png │ │ ├── bottom-frame-left-border-f.png │ │ ├── bottom-frame-left-border-i.png │ │ ├── bottom-frame-right-border-f.png │ │ ├── bottom-frame-right-border-i.png │ │ ├── bottom-frame-title-cursor-f.png │ │ ├── bottom-frame-title-cursor-i.png │ │ ├── bottom-frame-title-nocursor-f.png │ │ ├── bottom-frame-title-nocursor-i.png │ │ ├── bottom-frame-top-border-f.png │ │ ├── bottom-frame-top-border-i.png │ │ ├── bottom-frame-top-left-corner-f.png │ │ ├── bottom-frame-top-left-corner-i.png │ │ ├── bottom-frame-top-right-corner-f.png │ │ ├── bottom-frame-top-right-corner-i.png │ │ ├── left-frame-button-c.png │ │ ├── left-frame-button-f.png │ │ ├── left-frame-button-h.png │ │ ├── left-frame-button-i.png │ │ ├── left-frame-close-button-c.png │ │ ├── left-frame-close-button-f.png │ │ ├── left-frame-close-button-h.png │ │ ├── left-frame-close-button-i.png │ │ ├── left-frame-close-button-ic.png │ │ ├── left-frame-close-button-ih.png │ │ ├── left-frame-frame-type-button-c.png │ │ ├── left-frame-frame-type-button-f.png │ │ ├── left-frame-frame-type-button-h.png │ │ ├── left-frame-frame-type-button-i.png │ │ ├── left-frame-frame-type-button-ic.png │ │ ├── left-frame-frame-type-button-ih.png │ │ ├── left-frame-iconify-button-c.png │ │ ├── left-frame-iconify-button-f.png │ │ ├── left-frame-iconify-button-h.png │ │ ├── left-frame-iconify-button-i.png │ │ ├── left-frame-iconify-button-ic.png │ │ ├── left-frame-iconify-button-ih.png │ │ ├── left-frame-lock-button-c.png │ │ ├── left-frame-lock-button-f.png │ │ ├── left-frame-lock-button-h.png │ │ ├── left-frame-lock-button-i.png │ │ ├── left-frame-lock-button-ic.png │ │ ├── left-frame-lock-button-ih.png │ │ ├── left-frame-maximize-button-c.png │ │ ├── left-frame-maximize-button-f.png │ │ ├── left-frame-maximize-button-h.png │ │ ├── left-frame-maximize-button-i.png │ │ ├── left-frame-maximize-button-ic.png │ │ ├── left-frame-maximize-button-ih.png │ │ ├── left-frame-menu-button-c.png │ │ ├── left-frame-menu-button-f.png │ │ ├── left-frame-menu-button-h.png │ │ ├── left-frame-menu-button-i.png │ │ ├── left-frame-menu-button-ic.png │ │ ├── left-frame-menu-button-ih.png │ │ ├── left-frame-move-resize-button-c.png │ │ ├── left-frame-move-resize-button-f.png │ │ ├── left-frame-move-resize-button-h.png │ │ ├── left-frame-move-resize-button-i.png │ │ ├── left-frame-move-resize-button-ic.png │ │ ├── left-frame-move-resize-button-ih.png │ │ ├── left-frame-next-button-c.png │ │ ├── left-frame-next-button-f.png │ │ ├── left-frame-next-button-h.png │ │ ├── left-frame-next-button-i.png │ │ ├── left-frame-next-button-ic.png │ │ ├── left-frame-next-button-ih.png │ │ ├── left-frame-next-last-button-c.png │ │ ├── left-frame-next-last-button-f.png │ │ ├── left-frame-next-last-button-h.png │ │ ├── left-frame-next-last-button-i.png │ │ ├── left-frame-next-last-button-ic.png │ │ ├── left-frame-next-last-button-ih.png │ │ ├── left-frame-ontop-button-c.png │ │ ├── left-frame-ontop-button-f.png │ │ ├── left-frame-ontop-button-h.png │ │ ├── left-frame-ontop-button-i.png │ │ ├── left-frame-ontop-button-ic.png │ │ ├── left-frame-ontop-button-ih.png │ │ ├── left-frame-prev-button-c.png │ │ ├── left-frame-prev-button-f.png │ │ ├── left-frame-prev-button-h.png │ │ ├── left-frame-prev-button-i.png │ │ ├── left-frame-prev-button-ic.png │ │ ├── left-frame-prev-button-ih.png │ │ ├── left-frame-prev-last-button-c.png │ │ ├── left-frame-prev-last-button-f.png │ │ ├── left-frame-prev-last-button-h.png │ │ ├── left-frame-prev-last-button-i.png │ │ ├── left-frame-prev-last-button-ic.png │ │ ├── left-frame-prev-last-button-ih.png │ │ ├── left-frame-raise-lower-button-c.png │ │ ├── left-frame-raise-lower-button-f.png │ │ ├── left-frame-raise-lower-button-h.png │ │ ├── left-frame-raise-lower-button-i.png │ │ ├── left-frame-raise-lower-button-ic.png │ │ ├── left-frame-raise-lower-button-ih.png │ │ ├── left-frame-rename-button-c.png │ │ ├── left-frame-rename-button-f.png │ │ ├── left-frame-rename-button-h.png │ │ ├── left-frame-rename-button-i.png │ │ ├── left-frame-rename-button-ic.png │ │ ├── left-frame-rename-button-ih.png │ │ ├── left-frame-shade-button-c.png │ │ ├── left-frame-shade-button-f.png │ │ ├── left-frame-shade-button-h.png │ │ ├── left-frame-shade-button-i.png │ │ ├── left-frame-shade-button-ic.png │ │ ├── left-frame-shade-button-ih.png │ │ ├── left-frame-sticky-button-c.png │ │ ├── left-frame-sticky-button-f.png │ │ ├── left-frame-sticky-button-h.png │ │ ├── left-frame-sticky-button-i.png │ │ ├── left-frame-sticky-button-ic.png │ │ ├── left-frame-sticky-button-ih.png │ │ ├── left-frame-unlock-button-c.png │ │ ├── left-frame-unlock-button-f.png │ │ ├── left-frame-unlock-button-h.png │ │ ├── left-frame-unlock-button-i.png │ │ ├── left-frame-unlock-button-ic.png │ │ ├── left-frame-unlock-button-ih.png │ │ ├── left-frame-unmaximize-button-c.png │ │ ├── left-frame-unmaximize-button-f.png │ │ ├── left-frame-unmaximize-button-h.png │ │ ├── left-frame-unmaximize-button-i.png │ │ ├── left-frame-unmaximize-button-ic.png │ │ ├── left-frame-unmaximize-button-ih.png │ │ ├── left-frame-unontop-button-c.png │ │ ├── left-frame-unontop-button-f.png │ │ ├── left-frame-unontop-button-h.png │ │ ├── left-frame-unontop-button-i.png │ │ ├── left-frame-unontop-button-ic.png │ │ ├── left-frame-unontop-button-ih.png │ │ ├── left-frame-unshade-button-c.png │ │ ├── left-frame-unshade-button-f.png │ │ ├── left-frame-unshade-button-h.png │ │ ├── left-frame-unshade-button-i.png │ │ ├── left-frame-unshade-button-ic.png │ │ ├── left-frame-unshade-button-ih.png │ │ ├── left-frame-unsticky-button-c.png │ │ ├── left-frame-unsticky-button-f.png │ │ ├── left-frame-unsticky-button-h.png │ │ ├── left-frame-unsticky-button-i.png │ │ ├── left-frame-unsticky-button-ic.png │ │ ├── left-frame-unsticky-button-ih.png │ │ ├── top-frame-bottom-left-corner-f.png │ │ ├── top-frame-bottom-left-corner-i.png │ │ ├── top-frame-button-c.png │ │ ├── top-frame-button-f.png │ │ ├── top-frame-button-h.png │ │ ├── top-frame-button-i.png │ │ ├── top-frame-close-button-c.png │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-close-button-h.png │ │ ├── top-frame-close-button-i.png │ │ ├── top-frame-close-button-ic.png │ │ ├── top-frame-close-button-ih.png │ │ ├── top-frame-frame-type-button-c.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-frame-type-button-h.png │ │ ├── top-frame-frame-type-button-i.png │ │ ├── top-frame-frame-type-button-ic.png │ │ ├── top-frame-frame-type-button-ih.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-c.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-iconify-button-h.png │ │ ├── top-frame-iconify-button-i.png │ │ ├── top-frame-iconify-button-ic.png │ │ ├── top-frame-iconify-button-ih.png │ │ ├── top-frame-left-border-f.png │ │ ├── top-frame-left-border-i.png │ │ ├── top-frame-lock-button-c.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-lock-button-h.png │ │ ├── top-frame-lock-button-i.png │ │ ├── top-frame-lock-button-ic.png │ │ ├── top-frame-lock-button-ih.png │ │ ├── top-frame-maximize-button-c.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-maximize-button-h.png │ │ ├── top-frame-maximize-button-i.png │ │ ├── top-frame-maximize-button-ic.png │ │ ├── top-frame-maximize-button-ih.png │ │ ├── top-frame-menu-button-c.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-menu-button-h.png │ │ ├── top-frame-menu-button-i.png │ │ ├── top-frame-menu-button-ic.png │ │ ├── top-frame-menu-button-ih.png │ │ ├── top-frame-move-resize-button-c.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-move-resize-button-h.png │ │ ├── top-frame-move-resize-button-i.png │ │ ├── top-frame-move-resize-button-ic.png │ │ ├── top-frame-move-resize-button-ih.png │ │ ├── top-frame-next-button-c.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-button-h.png │ │ ├── top-frame-next-button-i.png │ │ ├── top-frame-next-button-ic.png │ │ ├── top-frame-next-button-ih.png │ │ ├── top-frame-next-last-button-c.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-next-last-button-h.png │ │ ├── top-frame-next-last-button-i.png │ │ ├── top-frame-next-last-button-ic.png │ │ ├── top-frame-next-last-button-ih.png │ │ ├── top-frame-ontop-button-c.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-ontop-button-h.png │ │ ├── top-frame-ontop-button-i.png │ │ ├── top-frame-ontop-button-ic.png │ │ ├── top-frame-ontop-button-ih.png │ │ ├── top-frame-prev-button-c.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-button-h.png │ │ ├── top-frame-prev-button-i.png │ │ ├── top-frame-prev-button-ic.png │ │ ├── top-frame-prev-button-ih.png │ │ ├── top-frame-prev-last-button-c.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-prev-last-button-h.png │ │ ├── top-frame-prev-last-button-i.png │ │ ├── top-frame-prev-last-button-ic.png │ │ ├── top-frame-prev-last-button-ih.png │ │ ├── top-frame-raise-lower-button-c.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-raise-lower-button-h.png │ │ ├── top-frame-raise-lower-button-i.png │ │ ├── top-frame-raise-lower-button-ic.png │ │ ├── top-frame-raise-lower-button-ih.png │ │ ├── top-frame-rename-button-c.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-rename-button-h.png │ │ ├── top-frame-rename-button-i.png │ │ ├── top-frame-rename-button-ic.png │ │ ├── top-frame-rename-button-ih.png │ │ ├── top-frame-shade-button-c.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-shade-button-h.png │ │ ├── top-frame-shade-button-i.png │ │ ├── top-frame-shade-button-ic.png │ │ ├── top-frame-shade-button-ih.png │ │ ├── top-frame-sticky-button-c.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-sticky-button-h.png │ │ ├── top-frame-sticky-button-i.png │ │ ├── top-frame-sticky-button-ic.png │ │ ├── top-frame-sticky-button-ih.png │ │ ├── top-frame-tab-f.png │ │ ├── top-frame-tab-h.png │ │ ├── top-frame-tab-i.png │ │ ├── top-frame-tab-ih.png │ │ ├── top-frame-tab-left-f.png │ │ ├── top-frame-tab-left-i.png │ │ ├── top-frame-tab-left-icon-f.png │ │ ├── top-frame-tab-left-icon-h.png │ │ ├── top-frame-tab-left-icon-i.png │ │ ├── top-frame-tab-left-icon-ih.png │ │ ├── top-frame-tab-left-icon-marked-f.png │ │ ├── top-frame-tab-left-icon-marked-h.png │ │ ├── top-frame-tab-left-icon-marked-i.png │ │ ├── top-frame-tab-left-icon-marked-ih.png │ │ ├── top-frame-tab-marked-f.png │ │ ├── top-frame-tab-marked-h.png │ │ ├── top-frame-tab-marked-i.png │ │ ├── top-frame-tab-marked-ih.png │ │ ├── top-frame-tab-right-f.png │ │ ├── top-frame-tab-right-h.png │ │ ├── top-frame-tab-right-i.png │ │ ├── top-frame-tab-right-ih.png │ │ ├── top-frame-tab-right-marked-f.png │ │ ├── top-frame-tab-right-marked-h.png │ │ ├── top-frame-tab-right-marked-i.png │ │ ├── top-frame-tab-right-marked-ih.png │ │ ├── top-frame-title-cursor-f.png │ │ ├── top-frame-title-cursor-i.png │ │ ├── top-frame-title-f.png │ │ ├── top-frame-title-i.png │ │ ├── top-frame-title-nocursor-f.png │ │ ├── top-frame-title-nocursor-i.png │ │ ├── top-frame-top-left-corner-f.png │ │ ├── top-frame-top-left-corner-i.png │ │ ├── top-frame-top-left-corner-shaped-f.png │ │ ├── top-frame-top-left-corner-shaped-i.png │ │ ├── top-frame-unlock-button-c.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unlock-button-h.png │ │ ├── top-frame-unlock-button-i.png │ │ ├── top-frame-unlock-button-ic.png │ │ ├── top-frame-unlock-button-ih.png │ │ ├── top-frame-unmaximize-button-c.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unmaximize-button-h.png │ │ ├── top-frame-unmaximize-button-i.png │ │ ├── top-frame-unmaximize-button-ic.png │ │ ├── top-frame-unmaximize-button-ih.png │ │ ├── top-frame-unontop-button-c.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unontop-button-h.png │ │ ├── top-frame-unontop-button-i.png │ │ ├── top-frame-unontop-button-ic.png │ │ ├── top-frame-unontop-button-ih.png │ │ ├── top-frame-unshade-button-c.png │ │ ├── top-frame-unshade-button-f.png │ │ ├── top-frame-unshade-button-h.png │ │ ├── top-frame-unshade-button-i.png │ │ ├── top-frame-unshade-button-ic.png │ │ ├── top-frame-unshade-button-ih.png │ │ ├── top-frame-unsticky-button-c.png │ │ ├── top-frame-unsticky-button-f.png │ │ ├── top-frame-unsticky-button-h.png │ │ ├── top-frame-unsticky-button-i.png │ │ ├── top-frame-unsticky-button-ic.png │ │ └── top-frame-unsticky-button-ih.png │ ├── Flat │ │ ├── .directory │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unshade-button-f.png │ │ └── top-frame-unsticky-button-f.png │ ├── Glass │ │ ├── bottom-frame-bottom-left-corner-f.png │ │ ├── bottom-frame-bottom-left-corner-i.png │ │ ├── bottom-frame-bottom-left-corner-shaped-f.png │ │ ├── bottom-frame-bottom-left-corner-shaped-i.png │ │ ├── bottom-frame-bottom-right-corner-f.png │ │ ├── bottom-frame-bottom-right-corner-i.png │ │ ├── bottom-frame-bottom-right-corner-shaped-f.png │ │ ├── bottom-frame-bottom-right-corner-shaped-i.png │ │ ├── bottom-frame-left-border-f.png │ │ ├── bottom-frame-left-border-i.png │ │ ├── bottom-frame-right-border-f.png │ │ ├── bottom-frame-right-border-i.png │ │ ├── bottom-frame-title-cursor-f.png │ │ ├── bottom-frame-title-cursor-i.png │ │ ├── bottom-frame-title-nocursor-f.png │ │ ├── bottom-frame-title-nocursor-i.png │ │ ├── bottom-frame-top-border-f.png │ │ ├── bottom-frame-top-border-i.png │ │ ├── bottom-frame-top-left-corner-f.png │ │ ├── bottom-frame-top-left-corner-i.png │ │ ├── bottom-frame-top-right-corner-f.png │ │ ├── bottom-frame-top-right-corner-i.png │ │ ├── left-frame-button-c.png │ │ ├── left-frame-button-f.png │ │ ├── left-frame-button-h.png │ │ ├── left-frame-button-i.png │ │ ├── left-frame-close-button-c.png │ │ ├── left-frame-close-button-f.png │ │ ├── left-frame-close-button-h.png │ │ ├── left-frame-close-button-i.png │ │ ├── left-frame-close-button-ic.png │ │ ├── left-frame-close-button-ih.png │ │ ├── left-frame-frame-type-button-c.png │ │ ├── left-frame-frame-type-button-f.png │ │ ├── left-frame-frame-type-button-h.png │ │ ├── left-frame-frame-type-button-i.png │ │ ├── left-frame-frame-type-button-ic.png │ │ ├── left-frame-frame-type-button-ih.png │ │ ├── left-frame-iconify-button-c.png │ │ ├── left-frame-iconify-button-f.png │ │ ├── left-frame-iconify-button-h.png │ │ ├── left-frame-iconify-button-i.png │ │ ├── left-frame-iconify-button-ic.png │ │ ├── left-frame-iconify-button-ih.png │ │ ├── left-frame-lock-button-c.png │ │ ├── left-frame-lock-button-f.png │ │ ├── left-frame-lock-button-h.png │ │ ├── left-frame-lock-button-i.png │ │ ├── left-frame-lock-button-ic.png │ │ ├── left-frame-lock-button-ih.png │ │ ├── left-frame-maximize-button-c.png │ │ ├── left-frame-maximize-button-f.png │ │ ├── left-frame-maximize-button-h.png │ │ ├── left-frame-maximize-button-i.png │ │ ├── left-frame-maximize-button-ic.png │ │ ├── left-frame-maximize-button-ih.png │ │ ├── left-frame-menu-button-c.png │ │ ├── left-frame-menu-button-f.png │ │ ├── left-frame-menu-button-h.png │ │ ├── left-frame-menu-button-i.png │ │ ├── left-frame-menu-button-ic.png │ │ ├── left-frame-menu-button-ih.png │ │ ├── left-frame-move-resize-button-c.png │ │ ├── left-frame-move-resize-button-f.png │ │ ├── left-frame-move-resize-button-h.png │ │ ├── left-frame-move-resize-button-i.png │ │ ├── left-frame-move-resize-button-ic.png │ │ ├── left-frame-move-resize-button-ih.png │ │ ├── left-frame-next-button-c.png │ │ ├── left-frame-next-button-f.png │ │ ├── left-frame-next-button-h.png │ │ ├── left-frame-next-button-i.png │ │ ├── left-frame-next-button-ic.png │ │ ├── left-frame-next-button-ih.png │ │ ├── left-frame-next-last-button-c.png │ │ ├── left-frame-next-last-button-f.png │ │ ├── left-frame-next-last-button-h.png │ │ ├── left-frame-next-last-button-i.png │ │ ├── left-frame-next-last-button-ic.png │ │ ├── left-frame-next-last-button-ih.png │ │ ├── left-frame-ontop-button-c.png │ │ ├── left-frame-ontop-button-f.png │ │ ├── left-frame-ontop-button-h.png │ │ ├── left-frame-ontop-button-i.png │ │ ├── left-frame-ontop-button-ic.png │ │ ├── left-frame-ontop-button-ih.png │ │ ├── left-frame-prev-button-c.png │ │ ├── left-frame-prev-button-f.png │ │ ├── left-frame-prev-button-h.png │ │ ├── left-frame-prev-button-i.png │ │ ├── left-frame-prev-button-ic.png │ │ ├── left-frame-prev-button-ih.png │ │ ├── left-frame-prev-last-button-c.png │ │ ├── left-frame-prev-last-button-f.png │ │ ├── left-frame-prev-last-button-h.png │ │ ├── left-frame-prev-last-button-i.png │ │ ├── left-frame-prev-last-button-ic.png │ │ ├── left-frame-prev-last-button-ih.png │ │ ├── left-frame-raise-lower-button-c.png │ │ ├── left-frame-raise-lower-button-f.png │ │ ├── left-frame-raise-lower-button-h.png │ │ ├── left-frame-raise-lower-button-i.png │ │ ├── left-frame-raise-lower-button-ic.png │ │ ├── left-frame-raise-lower-button-ih.png │ │ ├── left-frame-rename-button-c.png │ │ ├── left-frame-rename-button-f.png │ │ ├── left-frame-rename-button-h.png │ │ ├── left-frame-rename-button-i.png │ │ ├── left-frame-rename-button-ic.png │ │ ├── left-frame-rename-button-ih.png │ │ ├── left-frame-shade-button-c.png │ │ ├── left-frame-shade-button-f.png │ │ ├── left-frame-shade-button-h.png │ │ ├── left-frame-shade-button-i.png │ │ ├── left-frame-shade-button-ic.png │ │ ├── left-frame-shade-button-ih.png │ │ ├── left-frame-sticky-button-c.png │ │ ├── left-frame-sticky-button-f.png │ │ ├── left-frame-sticky-button-h.png │ │ ├── left-frame-sticky-button-i.png │ │ ├── left-frame-sticky-button-ic.png │ │ ├── left-frame-sticky-button-ih.png │ │ ├── left-frame-unlock-button-c.png │ │ ├── left-frame-unlock-button-f.png │ │ ├── left-frame-unlock-button-h.png │ │ ├── left-frame-unlock-button-i.png │ │ ├── left-frame-unlock-button-ic.png │ │ ├── left-frame-unlock-button-ih.png │ │ ├── left-frame-unmaximize-button-c.png │ │ ├── left-frame-unmaximize-button-f.png │ │ ├── left-frame-unmaximize-button-h.png │ │ ├── left-frame-unmaximize-button-i.png │ │ ├── left-frame-unmaximize-button-ic.png │ │ ├── left-frame-unmaximize-button-ih.png │ │ ├── left-frame-unontop-button-c.png │ │ ├── left-frame-unontop-button-f.png │ │ ├── left-frame-unontop-button-h.png │ │ ├── left-frame-unontop-button-i.png │ │ ├── left-frame-unontop-button-ic.png │ │ ├── left-frame-unontop-button-ih.png │ │ ├── left-frame-unshade-button-c.png │ │ ├── left-frame-unshade-button-f.png │ │ ├── left-frame-unshade-button-h.png │ │ ├── left-frame-unshade-button-i.png │ │ ├── left-frame-unshade-button-ic.png │ │ ├── left-frame-unshade-button-ih.png │ │ ├── left-frame-unsticky-button-c.png │ │ ├── left-frame-unsticky-button-f.png │ │ ├── left-frame-unsticky-button-h.png │ │ ├── left-frame-unsticky-button-i.png │ │ ├── left-frame-unsticky-button-ic.png │ │ ├── left-frame-unsticky-button-ih.png │ │ ├── top-frame-bottom-left-corner-f.png │ │ ├── top-frame-bottom-left-corner-i.png │ │ ├── top-frame-button-c.png │ │ ├── top-frame-button-f.png │ │ ├── top-frame-button-h.png │ │ ├── top-frame-button-i.png │ │ ├── top-frame-close-button-c.png │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-close-button-h.png │ │ ├── top-frame-close-button-i.png │ │ ├── top-frame-close-button-ic.png │ │ ├── top-frame-close-button-ih.png │ │ ├── top-frame-frame-type-button-c.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-frame-type-button-h.png │ │ ├── top-frame-frame-type-button-i.png │ │ ├── top-frame-frame-type-button-ic.png │ │ ├── top-frame-frame-type-button-ih.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-c.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-iconify-button-h.png │ │ ├── top-frame-iconify-button-i.png │ │ ├── top-frame-iconify-button-ic.png │ │ ├── top-frame-iconify-button-ih.png │ │ ├── top-frame-left-border-f.png │ │ ├── top-frame-left-border-i.png │ │ ├── top-frame-lock-button-c.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-lock-button-h.png │ │ ├── top-frame-lock-button-i.png │ │ ├── top-frame-lock-button-ic.png │ │ ├── top-frame-lock-button-ih.png │ │ ├── top-frame-maximize-button-c.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-maximize-button-h.png │ │ ├── top-frame-maximize-button-i.png │ │ ├── top-frame-maximize-button-ic.png │ │ ├── top-frame-maximize-button-ih.png │ │ ├── top-frame-menu-button-c.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-menu-button-h.png │ │ ├── top-frame-menu-button-i.png │ │ ├── top-frame-menu-button-ic.png │ │ ├── top-frame-menu-button-ih.png │ │ ├── top-frame-move-resize-button-c.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-move-resize-button-h.png │ │ ├── top-frame-move-resize-button-i.png │ │ ├── top-frame-move-resize-button-ic.png │ │ ├── top-frame-move-resize-button-ih.png │ │ ├── top-frame-next-button-c.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-button-h.png │ │ ├── top-frame-next-button-i.png │ │ ├── top-frame-next-button-ic.png │ │ ├── top-frame-next-button-ih.png │ │ ├── top-frame-next-last-button-c.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-next-last-button-h.png │ │ ├── top-frame-next-last-button-i.png │ │ ├── top-frame-next-last-button-ic.png │ │ ├── top-frame-next-last-button-ih.png │ │ ├── top-frame-ontop-button-c.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-ontop-button-h.png │ │ ├── top-frame-ontop-button-i.png │ │ ├── top-frame-ontop-button-ic.png │ │ ├── top-frame-ontop-button-ih.png │ │ ├── top-frame-prev-button-c.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-button-h.png │ │ ├── top-frame-prev-button-i.png │ │ ├── top-frame-prev-button-ic.png │ │ ├── top-frame-prev-button-ih.png │ │ ├── top-frame-prev-last-button-c.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-prev-last-button-h.png │ │ ├── top-frame-prev-last-button-i.png │ │ ├── top-frame-prev-last-button-ic.png │ │ ├── top-frame-prev-last-button-ih.png │ │ ├── top-frame-raise-lower-button-c.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-raise-lower-button-h.png │ │ ├── top-frame-raise-lower-button-i.png │ │ ├── top-frame-raise-lower-button-ic.png │ │ ├── top-frame-raise-lower-button-ih.png │ │ ├── top-frame-rename-button-c.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-rename-button-h.png │ │ ├── top-frame-rename-button-i.png │ │ ├── top-frame-rename-button-ic.png │ │ ├── top-frame-rename-button-ih.png │ │ ├── top-frame-shade-button-c.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-shade-button-h.png │ │ ├── top-frame-shade-button-i.png │ │ ├── top-frame-shade-button-ic.png │ │ ├── top-frame-shade-button-ih.png │ │ ├── top-frame-sticky-button-c.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-sticky-button-h.png │ │ ├── top-frame-sticky-button-i.png │ │ ├── top-frame-sticky-button-ic.png │ │ ├── top-frame-sticky-button-ih.png │ │ ├── top-frame-tab-f.png │ │ ├── top-frame-tab-h.png │ │ ├── top-frame-tab-i.png │ │ ├── top-frame-tab-ih.png │ │ ├── top-frame-tab-left-f.png │ │ ├── top-frame-tab-left-i.png │ │ ├── top-frame-tab-left-icon-f.png │ │ ├── top-frame-tab-left-icon-h.png │ │ ├── top-frame-tab-left-icon-i.png │ │ ├── top-frame-tab-left-icon-ih.png │ │ ├── top-frame-tab-left-icon-marked-f.png │ │ ├── top-frame-tab-left-icon-marked-h.png │ │ ├── top-frame-tab-left-icon-marked-i.png │ │ ├── top-frame-tab-left-icon-marked-ih.png │ │ ├── top-frame-tab-marked-f.png │ │ ├── top-frame-tab-marked-h.png │ │ ├── top-frame-tab-marked-i.png │ │ ├── top-frame-tab-marked-ih.png │ │ ├── top-frame-tab-right-f.png │ │ ├── top-frame-tab-right-h.png │ │ ├── top-frame-tab-right-i.png │ │ ├── top-frame-tab-right-ih.png │ │ ├── top-frame-tab-right-marked-f.png │ │ ├── top-frame-tab-right-marked-h.png │ │ ├── top-frame-tab-right-marked-i.png │ │ ├── top-frame-tab-right-marked-ih.png │ │ ├── top-frame-title-cursor-f.png │ │ ├── top-frame-title-cursor-i.png │ │ ├── top-frame-title-f.png │ │ ├── top-frame-title-i.png │ │ ├── top-frame-title-nocursor-f.png │ │ ├── top-frame-title-nocursor-i.png │ │ ├── top-frame-top-left-corner-f.png │ │ ├── top-frame-top-left-corner-i.png │ │ ├── top-frame-top-left-corner-shaped-f.png │ │ ├── top-frame-top-left-corner-shaped-i.png │ │ ├── top-frame-unlock-button-c.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unlock-button-h.png │ │ ├── top-frame-unlock-button-i.png │ │ ├── top-frame-unlock-button-ic.png │ │ ├── top-frame-unlock-button-ih.png │ │ ├── top-frame-unmaximize-button-c.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unmaximize-button-h.png │ │ ├── top-frame-unmaximize-button-i.png │ │ ├── top-frame-unmaximize-button-ic.png │ │ ├── top-frame-unmaximize-button-ih.png │ │ ├── top-frame-unontop-button-c.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unontop-button-h.png │ │ ├── top-frame-unontop-button-i.png │ │ ├── top-frame-unontop-button-ic.png │ │ ├── top-frame-unontop-button-ih.png │ │ ├── top-frame-unshade-button-c.png │ │ ├── top-frame-unshade-button-f.png │ │ ├── top-frame-unshade-button-h.png │ │ ├── top-frame-unshade-button-i.png │ │ ├── top-frame-unshade-button-ic.png │ │ ├── top-frame-unshade-button-ih.png │ │ ├── top-frame-unsticky-button-c.png │ │ ├── top-frame-unsticky-button-f.png │ │ ├── top-frame-unsticky-button-h.png │ │ ├── top-frame-unsticky-button-i.png │ │ ├── top-frame-unsticky-button-ic.png │ │ └── top-frame-unsticky-button-ih.png │ ├── README │ ├── Reduce │ │ ├── bottom-frame-bottom-left-corner-f.png │ │ ├── bottom-frame-bottom-left-corner-i.png │ │ ├── bottom-frame-bottom-left-corner-shaped-f.png │ │ ├── bottom-frame-bottom-left-corner-shaped-i.png │ │ ├── bottom-frame-bottom-right-corner-f.png │ │ ├── bottom-frame-bottom-right-corner-i.png │ │ ├── bottom-frame-bottom-right-corner-shaped-f.png │ │ ├── bottom-frame-bottom-right-corner-shaped-i.png │ │ ├── bottom-frame-left-border-f.png │ │ ├── bottom-frame-left-border-i.png │ │ ├── bottom-frame-right-border-f.png │ │ ├── bottom-frame-right-border-i.png │ │ ├── bottom-frame-title-cursor-f.png │ │ ├── bottom-frame-title-cursor-i.png │ │ ├── bottom-frame-title-nocursor-f.png │ │ ├── bottom-frame-title-nocursor-i.png │ │ ├── bottom-frame-top-border-f.png │ │ ├── bottom-frame-top-border-i.png │ │ ├── bottom-frame-top-left-corner-f.png │ │ ├── bottom-frame-top-left-corner-i.png │ │ ├── bottom-frame-top-right-corner-f.png │ │ ├── bottom-frame-top-right-corner-i.png │ │ ├── left-frame-button-c.png │ │ ├── left-frame-button-f.png │ │ ├── left-frame-button-h.png │ │ ├── left-frame-button-i.png │ │ ├── left-frame-close-button-c.png │ │ ├── left-frame-close-button-f.png │ │ ├── left-frame-close-button-h.png │ │ ├── left-frame-close-button-i.png │ │ ├── left-frame-close-button-ic.png │ │ ├── left-frame-close-button-ih.png │ │ ├── left-frame-frame-type-button-c.png │ │ ├── left-frame-frame-type-button-f.png │ │ ├── left-frame-frame-type-button-h.png │ │ ├── left-frame-frame-type-button-i.png │ │ ├── left-frame-frame-type-button-ic.png │ │ ├── left-frame-frame-type-button-ih.png │ │ ├── left-frame-iconify-button-c.png │ │ ├── left-frame-iconify-button-f.png │ │ ├── left-frame-iconify-button-h.png │ │ ├── left-frame-iconify-button-i.png │ │ ├── left-frame-iconify-button-ic.png │ │ ├── left-frame-iconify-button-ih.png │ │ ├── left-frame-lock-button-c.png │ │ ├── left-frame-lock-button-f.png │ │ ├── left-frame-lock-button-h.png │ │ ├── left-frame-lock-button-i.png │ │ ├── left-frame-lock-button-ic.png │ │ ├── left-frame-lock-button-ih.png │ │ ├── left-frame-maximize-button-c.png │ │ ├── left-frame-maximize-button-f.png │ │ ├── left-frame-maximize-button-h.png │ │ ├── left-frame-maximize-button-i.png │ │ ├── left-frame-maximize-button-ic.png │ │ ├── left-frame-maximize-button-ih.png │ │ ├── left-frame-menu-button-c.png │ │ ├── left-frame-menu-button-f.png │ │ ├── left-frame-menu-button-h.png │ │ ├── left-frame-menu-button-i.png │ │ ├── left-frame-menu-button-ic.png │ │ ├── left-frame-menu-button-ih.png │ │ ├── left-frame-move-resize-button-c.png │ │ ├── left-frame-move-resize-button-f.png │ │ ├── left-frame-move-resize-button-h.png │ │ ├── left-frame-move-resize-button-i.png │ │ ├── left-frame-move-resize-button-ic.png │ │ ├── left-frame-move-resize-button-ih.png │ │ ├── left-frame-next-button-c.png │ │ ├── left-frame-next-button-f.png │ │ ├── left-frame-next-button-h.png │ │ ├── left-frame-next-button-i.png │ │ ├── left-frame-next-button-ic.png │ │ ├── left-frame-next-button-ih.png │ │ ├── left-frame-next-last-button-c.png │ │ ├── left-frame-next-last-button-f.png │ │ ├── left-frame-next-last-button-h.png │ │ ├── left-frame-next-last-button-i.png │ │ ├── left-frame-next-last-button-ic.png │ │ ├── left-frame-next-last-button-ih.png │ │ ├── left-frame-ontop-button-c.png │ │ ├── left-frame-ontop-button-f.png │ │ ├── left-frame-ontop-button-h.png │ │ ├── left-frame-ontop-button-i.png │ │ ├── left-frame-ontop-button-ic.png │ │ ├── left-frame-ontop-button-ih.png │ │ ├── left-frame-prev-button-c.png │ │ ├── left-frame-prev-button-f.png │ │ ├── left-frame-prev-button-h.png │ │ ├── left-frame-prev-button-i.png │ │ ├── left-frame-prev-button-ic.png │ │ ├── left-frame-prev-button-ih.png │ │ ├── left-frame-prev-last-button-c.png │ │ ├── left-frame-prev-last-button-f.png │ │ ├── left-frame-prev-last-button-h.png │ │ ├── left-frame-prev-last-button-i.png │ │ ├── left-frame-prev-last-button-ic.png │ │ ├── left-frame-prev-last-button-ih.png │ │ ├── left-frame-raise-lower-button-c.png │ │ ├── left-frame-raise-lower-button-f.png │ │ ├── left-frame-raise-lower-button-h.png │ │ ├── left-frame-raise-lower-button-i.png │ │ ├── left-frame-raise-lower-button-ic.png │ │ ├── left-frame-raise-lower-button-ih.png │ │ ├── left-frame-rename-button-c.png │ │ ├── left-frame-rename-button-f.png │ │ ├── left-frame-rename-button-h.png │ │ ├── left-frame-rename-button-i.png │ │ ├── left-frame-rename-button-ic.png │ │ ├── left-frame-rename-button-ih.png │ │ ├── left-frame-shade-button-c.png │ │ ├── left-frame-shade-button-f.png │ │ ├── left-frame-shade-button-h.png │ │ ├── left-frame-shade-button-i.png │ │ ├── left-frame-shade-button-ic.png │ │ ├── left-frame-shade-button-ih.png │ │ ├── left-frame-sticky-button-c.png │ │ ├── left-frame-sticky-button-f.png │ │ ├── left-frame-sticky-button-h.png │ │ ├── left-frame-sticky-button-i.png │ │ ├── left-frame-sticky-button-ic.png │ │ ├── left-frame-sticky-button-ih.png │ │ ├── left-frame-unlock-button-c.png │ │ ├── left-frame-unlock-button-f.png │ │ ├── left-frame-unlock-button-h.png │ │ ├── left-frame-unlock-button-i.png │ │ ├── left-frame-unlock-button-ic.png │ │ ├── left-frame-unlock-button-ih.png │ │ ├── left-frame-unmaximize-button-c.png │ │ ├── left-frame-unmaximize-button-f.png │ │ ├── left-frame-unmaximize-button-h.png │ │ ├── left-frame-unmaximize-button-i.png │ │ ├── left-frame-unmaximize-button-ic.png │ │ ├── left-frame-unmaximize-button-ih.png │ │ ├── left-frame-unontop-button-c.png │ │ ├── left-frame-unontop-button-f.png │ │ ├── left-frame-unontop-button-h.png │ │ ├── left-frame-unontop-button-i.png │ │ ├── left-frame-unontop-button-ic.png │ │ ├── left-frame-unontop-button-ih.png │ │ ├── left-frame-unshade-button-c.png │ │ ├── left-frame-unshade-button-f.png │ │ ├── left-frame-unshade-button-h.png │ │ ├── left-frame-unshade-button-i.png │ │ ├── left-frame-unshade-button-ic.png │ │ ├── left-frame-unshade-button-ih.png │ │ ├── left-frame-unsticky-button-c.png │ │ ├── left-frame-unsticky-button-f.png │ │ ├── left-frame-unsticky-button-h.png │ │ ├── left-frame-unsticky-button-i.png │ │ ├── left-frame-unsticky-button-ic.png │ │ ├── left-frame-unsticky-button-ih.png │ │ ├── top-frame-bottom-left-corner-f.png │ │ ├── top-frame-bottom-left-corner-i.png │ │ ├── top-frame-button-c.png │ │ ├── top-frame-button-f.png │ │ ├── top-frame-button-h.png │ │ ├── top-frame-button-i.png │ │ ├── top-frame-close-button-c.png │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-close-button-h.png │ │ ├── top-frame-close-button-i.png │ │ ├── top-frame-close-button-ic.png │ │ ├── top-frame-close-button-ih.png │ │ ├── top-frame-frame-type-button-c.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-frame-type-button-h.png │ │ ├── top-frame-frame-type-button-i.png │ │ ├── top-frame-frame-type-button-ic.png │ │ ├── top-frame-frame-type-button-ih.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-c.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-iconify-button-h.png │ │ ├── top-frame-iconify-button-i.png │ │ ├── top-frame-iconify-button-ic.png │ │ ├── top-frame-iconify-button-ih.png │ │ ├── top-frame-left-border-f.png │ │ ├── top-frame-left-border-i.png │ │ ├── top-frame-lock-button-c.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-lock-button-h.png │ │ ├── top-frame-lock-button-i.png │ │ ├── top-frame-lock-button-ic.png │ │ ├── top-frame-lock-button-ih.png │ │ ├── top-frame-maximize-button-c.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-maximize-button-h.png │ │ ├── top-frame-maximize-button-i.png │ │ ├── top-frame-maximize-button-ic.png │ │ ├── top-frame-maximize-button-ih.png │ │ ├── top-frame-menu-button-c.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-menu-button-h.png │ │ ├── top-frame-menu-button-i.png │ │ ├── top-frame-menu-button-ic.png │ │ ├── top-frame-menu-button-ih.png │ │ ├── top-frame-move-resize-button-c.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-move-resize-button-h.png │ │ ├── top-frame-move-resize-button-i.png │ │ ├── top-frame-move-resize-button-ic.png │ │ ├── top-frame-move-resize-button-ih.png │ │ ├── top-frame-next-button-c.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-button-h.png │ │ ├── top-frame-next-button-i.png │ │ ├── top-frame-next-button-ic.png │ │ ├── top-frame-next-button-ih.png │ │ ├── top-frame-next-last-button-c.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-next-last-button-h.png │ │ ├── top-frame-next-last-button-i.png │ │ ├── top-frame-next-last-button-ic.png │ │ ├── top-frame-next-last-button-ih.png │ │ ├── top-frame-ontop-button-c.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-ontop-button-h.png │ │ ├── top-frame-ontop-button-i.png │ │ ├── top-frame-ontop-button-ic.png │ │ ├── top-frame-ontop-button-ih.png │ │ ├── top-frame-prev-button-c.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-button-h.png │ │ ├── top-frame-prev-button-i.png │ │ ├── top-frame-prev-button-ic.png │ │ ├── top-frame-prev-button-ih.png │ │ ├── top-frame-prev-last-button-c.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-prev-last-button-h.png │ │ ├── top-frame-prev-last-button-i.png │ │ ├── top-frame-prev-last-button-ic.png │ │ ├── top-frame-prev-last-button-ih.png │ │ ├── top-frame-raise-lower-button-c.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-raise-lower-button-h.png │ │ ├── top-frame-raise-lower-button-i.png │ │ ├── top-frame-raise-lower-button-ic.png │ │ ├── top-frame-raise-lower-button-ih.png │ │ ├── top-frame-rename-button-c.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-rename-button-h.png │ │ ├── top-frame-rename-button-i.png │ │ ├── top-frame-rename-button-ic.png │ │ ├── top-frame-rename-button-ih.png │ │ ├── top-frame-shade-button-c.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-shade-button-h.png │ │ ├── top-frame-shade-button-i.png │ │ ├── top-frame-shade-button-ic.png │ │ ├── top-frame-shade-button-ih.png │ │ ├── top-frame-sticky-button-c.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-sticky-button-h.png │ │ ├── top-frame-sticky-button-i.png │ │ ├── top-frame-sticky-button-ic.png │ │ ├── top-frame-sticky-button-ih.png │ │ ├── top-frame-tab-f.png │ │ ├── top-frame-tab-h.png │ │ ├── top-frame-tab-i.png │ │ ├── top-frame-tab-ih.png │ │ ├── top-frame-tab-left-f.png │ │ ├── top-frame-tab-left-i.png │ │ ├── top-frame-tab-left-icon-f.png │ │ ├── top-frame-tab-left-icon-h.png │ │ ├── top-frame-tab-left-icon-i.png │ │ ├── top-frame-tab-left-icon-ih.png │ │ ├── top-frame-tab-left-icon-marked-f.png │ │ ├── top-frame-tab-left-icon-marked-h.png │ │ ├── top-frame-tab-left-icon-marked-i.png │ │ ├── top-frame-tab-left-icon-marked-ih.png │ │ ├── top-frame-tab-marked-f.png │ │ ├── top-frame-tab-marked-h.png │ │ ├── top-frame-tab-marked-i.png │ │ ├── top-frame-tab-marked-ih.png │ │ ├── top-frame-tab-right-f.png │ │ ├── top-frame-tab-right-h.png │ │ ├── top-frame-tab-right-i.png │ │ ├── top-frame-tab-right-ih.png │ │ ├── top-frame-tab-right-marked-f.png │ │ ├── top-frame-tab-right-marked-h.png │ │ ├── top-frame-tab-right-marked-i.png │ │ ├── top-frame-tab-right-marked-ih.png │ │ ├── top-frame-title-cursor-f.png │ │ ├── top-frame-title-cursor-i.png │ │ ├── top-frame-title-f.png │ │ ├── top-frame-title-i.png │ │ ├── top-frame-title-nocursor-f.png │ │ ├── top-frame-title-nocursor-i.png │ │ ├── top-frame-top-left-corner-f.png │ │ ├── top-frame-top-left-corner-i.png │ │ ├── top-frame-top-left-corner-shaped-f.png │ │ ├── top-frame-top-left-corner-shaped-i.png │ │ ├── top-frame-unlock-button-c.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unlock-button-h.png │ │ ├── top-frame-unlock-button-i.png │ │ ├── top-frame-unlock-button-ic.png │ │ ├── top-frame-unlock-button-ih.png │ │ ├── top-frame-unmaximize-button-c.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unmaximize-button-h.png │ │ ├── top-frame-unmaximize-button-i.png │ │ ├── top-frame-unmaximize-button-ic.png │ │ ├── top-frame-unmaximize-button-ih.png │ │ ├── top-frame-unontop-button-c.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unontop-button-h.png │ │ ├── top-frame-unontop-button-i.png │ │ ├── top-frame-unontop-button-ic.png │ │ ├── top-frame-unontop-button-ih.png │ │ ├── top-frame-unshade-button-c.png │ │ ├── top-frame-unshade-button-f.png │ │ ├── top-frame-unshade-button-h.png │ │ ├── top-frame-unshade-button-i.png │ │ ├── top-frame-unshade-button-ic.png │ │ ├── top-frame-unshade-button-ih.png │ │ ├── top-frame-unsticky-button-c.png │ │ ├── top-frame-unsticky-button-f.png │ │ ├── top-frame-unsticky-button-h.png │ │ ├── top-frame-unsticky-button-i.png │ │ ├── top-frame-unsticky-button-ic.png │ │ └── top-frame-unsticky-button-ih.png │ ├── Smoothly │ │ ├── bottom-frame-bottom-left-corner-f.png │ │ ├── bottom-frame-bottom-left-corner-i.png │ │ ├── bottom-frame-bottom-left-corner-shaped-f.png │ │ ├── bottom-frame-bottom-left-corner-shaped-i.png │ │ ├── bottom-frame-bottom-right-corner-f.png │ │ ├── bottom-frame-bottom-right-corner-i.png │ │ ├── bottom-frame-bottom-right-corner-shaped-f.png │ │ ├── bottom-frame-bottom-right-corner-shaped-i.png │ │ ├── bottom-frame-left-border-f.png │ │ ├── bottom-frame-left-border-i.png │ │ ├── bottom-frame-right-border-f.png │ │ ├── bottom-frame-right-border-i.png │ │ ├── bottom-frame-title-cursor-f.png │ │ ├── bottom-frame-title-cursor-i.png │ │ ├── bottom-frame-title-nocursor-f.png │ │ ├── bottom-frame-title-nocursor-i.png │ │ ├── bottom-frame-top-border-f.png │ │ ├── bottom-frame-top-border-i.png │ │ ├── bottom-frame-top-left-corner-f.png │ │ ├── bottom-frame-top-left-corner-i.png │ │ ├── bottom-frame-top-right-corner-f.png │ │ ├── bottom-frame-top-right-corner-i.png │ │ ├── left-frame-button-c.png │ │ ├── left-frame-button-f.png │ │ ├── left-frame-button-h.png │ │ ├── left-frame-button-i.png │ │ ├── left-frame-close-button-c.png │ │ ├── left-frame-close-button-f.png │ │ ├── left-frame-close-button-h.png │ │ ├── left-frame-close-button-i.png │ │ ├── left-frame-close-button-ic.png │ │ ├── left-frame-close-button-ih.png │ │ ├── left-frame-frame-type-button-c.png │ │ ├── left-frame-frame-type-button-f.png │ │ ├── left-frame-frame-type-button-h.png │ │ ├── left-frame-frame-type-button-i.png │ │ ├── left-frame-frame-type-button-ic.png │ │ ├── left-frame-frame-type-button-ih.png │ │ ├── left-frame-iconify-button-c.png │ │ ├── left-frame-iconify-button-f.png │ │ ├── left-frame-iconify-button-h.png │ │ ├── left-frame-iconify-button-i.png │ │ ├── left-frame-iconify-button-ic.png │ │ ├── left-frame-iconify-button-ih.png │ │ ├── left-frame-lock-button-c.png │ │ ├── left-frame-lock-button-f.png │ │ ├── left-frame-lock-button-h.png │ │ ├── left-frame-lock-button-i.png │ │ ├── left-frame-lock-button-ic.png │ │ ├── left-frame-lock-button-ih.png │ │ ├── left-frame-maximize-button-c.png │ │ ├── left-frame-maximize-button-f.png │ │ ├── left-frame-maximize-button-h.png │ │ ├── left-frame-maximize-button-i.png │ │ ├── left-frame-maximize-button-ic.png │ │ ├── left-frame-maximize-button-ih.png │ │ ├── left-frame-menu-button-c.png │ │ ├── left-frame-menu-button-f.png │ │ ├── left-frame-menu-button-h.png │ │ ├── left-frame-menu-button-i.png │ │ ├── left-frame-menu-button-ic.png │ │ ├── left-frame-menu-button-ih.png │ │ ├── left-frame-move-resize-button-c.png │ │ ├── left-frame-move-resize-button-f.png │ │ ├── left-frame-move-resize-button-h.png │ │ ├── left-frame-move-resize-button-i.png │ │ ├── left-frame-move-resize-button-ic.png │ │ ├── left-frame-move-resize-button-ih.png │ │ ├── left-frame-next-button-c.png │ │ ├── left-frame-next-button-f.png │ │ ├── left-frame-next-button-h.png │ │ ├── left-frame-next-button-i.png │ │ ├── left-frame-next-button-ic.png │ │ ├── left-frame-next-button-ih.png │ │ ├── left-frame-next-last-button-c.png │ │ ├── left-frame-next-last-button-f.png │ │ ├── left-frame-next-last-button-h.png │ │ ├── left-frame-next-last-button-i.png │ │ ├── left-frame-next-last-button-ic.png │ │ ├── left-frame-next-last-button-ih.png │ │ ├── left-frame-ontop-button-c.png │ │ ├── left-frame-ontop-button-f.png │ │ ├── left-frame-ontop-button-h.png │ │ ├── left-frame-ontop-button-i.png │ │ ├── left-frame-ontop-button-ic.png │ │ ├── left-frame-ontop-button-ih.png │ │ ├── left-frame-prev-button-c.png │ │ ├── left-frame-prev-button-f.png │ │ ├── left-frame-prev-button-h.png │ │ ├── left-frame-prev-button-i.png │ │ ├── left-frame-prev-button-ic.png │ │ ├── left-frame-prev-button-ih.png │ │ ├── left-frame-prev-last-button-c.png │ │ ├── left-frame-prev-last-button-f.png │ │ ├── left-frame-prev-last-button-h.png │ │ ├── left-frame-prev-last-button-i.png │ │ ├── left-frame-prev-last-button-ic.png │ │ ├── left-frame-prev-last-button-ih.png │ │ ├── left-frame-raise-lower-button-c.png │ │ ├── left-frame-raise-lower-button-f.png │ │ ├── left-frame-raise-lower-button-h.png │ │ ├── left-frame-raise-lower-button-i.png │ │ ├── left-frame-raise-lower-button-ic.png │ │ ├── left-frame-raise-lower-button-ih.png │ │ ├── left-frame-rename-button-c.png │ │ ├── left-frame-rename-button-f.png │ │ ├── left-frame-rename-button-h.png │ │ ├── left-frame-rename-button-i.png │ │ ├── left-frame-rename-button-ic.png │ │ ├── left-frame-rename-button-ih.png │ │ ├── left-frame-shade-button-c.png │ │ ├── left-frame-shade-button-f.png │ │ ├── left-frame-shade-button-h.png │ │ ├── left-frame-shade-button-i.png │ │ ├── left-frame-shade-button-ic.png │ │ ├── left-frame-shade-button-ih.png │ │ ├── left-frame-sticky-button-c.png │ │ ├── left-frame-sticky-button-f.png │ │ ├── left-frame-sticky-button-h.png │ │ ├── left-frame-sticky-button-i.png │ │ ├── left-frame-sticky-button-ic.png │ │ ├── left-frame-sticky-button-ih.png │ │ ├── left-frame-unlock-button-c.png │ │ ├── left-frame-unlock-button-f.png │ │ ├── left-frame-unlock-button-h.png │ │ ├── left-frame-unlock-button-i.png │ │ ├── left-frame-unlock-button-ic.png │ │ ├── left-frame-unlock-button-ih.png │ │ ├── left-frame-unmaximize-button-c.png │ │ ├── left-frame-unmaximize-button-f.png │ │ ├── left-frame-unmaximize-button-h.png │ │ ├── left-frame-unmaximize-button-i.png │ │ ├── left-frame-unmaximize-button-ic.png │ │ ├── left-frame-unmaximize-button-ih.png │ │ ├── left-frame-unontop-button-c.png │ │ ├── left-frame-unontop-button-f.png │ │ ├── left-frame-unontop-button-h.png │ │ ├── left-frame-unontop-button-i.png │ │ ├── left-frame-unontop-button-ic.png │ │ ├── left-frame-unontop-button-ih.png │ │ ├── left-frame-unshade-button-c.png │ │ ├── left-frame-unshade-button-f.png │ │ ├── left-frame-unshade-button-h.png │ │ ├── left-frame-unshade-button-i.png │ │ ├── left-frame-unshade-button-ic.png │ │ ├── left-frame-unshade-button-ih.png │ │ ├── left-frame-unsticky-button-c.png │ │ ├── left-frame-unsticky-button-f.png │ │ ├── left-frame-unsticky-button-h.png │ │ ├── left-frame-unsticky-button-i.png │ │ ├── left-frame-unsticky-button-ic.png │ │ ├── left-frame-unsticky-button-ih.png │ │ ├── top-frame-bottom-left-corner-f.png │ │ ├── top-frame-bottom-left-corner-i.png │ │ ├── top-frame-button-c.png │ │ ├── top-frame-button-f.png │ │ ├── top-frame-button-h.png │ │ ├── top-frame-button-i.png │ │ ├── top-frame-close-button-c.png │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-close-button-h.png │ │ ├── top-frame-close-button-i.png │ │ ├── top-frame-close-button-ic.png │ │ ├── top-frame-close-button-ih.png │ │ ├── top-frame-frame-type-button-c.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-frame-type-button-h.png │ │ ├── top-frame-frame-type-button-i.png │ │ ├── top-frame-frame-type-button-ic.png │ │ ├── top-frame-frame-type-button-ih.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-c.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-iconify-button-h.png │ │ ├── top-frame-iconify-button-i.png │ │ ├── top-frame-iconify-button-ic.png │ │ ├── top-frame-iconify-button-ih.png │ │ ├── top-frame-left-border-f.png │ │ ├── top-frame-left-border-i.png │ │ ├── top-frame-lock-button-c.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-lock-button-h.png │ │ ├── top-frame-lock-button-i.png │ │ ├── top-frame-lock-button-ic.png │ │ ├── top-frame-lock-button-ih.png │ │ ├── top-frame-maximize-button-c.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-maximize-button-h.png │ │ ├── top-frame-maximize-button-i.png │ │ ├── top-frame-maximize-button-ic.png │ │ ├── top-frame-maximize-button-ih.png │ │ ├── top-frame-menu-button-c.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-menu-button-h.png │ │ ├── top-frame-menu-button-i.png │ │ ├── top-frame-menu-button-ic.png │ │ ├── top-frame-menu-button-ih.png │ │ ├── top-frame-move-resize-button-c.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-move-resize-button-h.png │ │ ├── top-frame-move-resize-button-i.png │ │ ├── top-frame-move-resize-button-ic.png │ │ ├── top-frame-move-resize-button-ih.png │ │ ├── top-frame-next-button-c.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-button-h.png │ │ ├── top-frame-next-button-i.png │ │ ├── top-frame-next-button-ic.png │ │ ├── top-frame-next-button-ih.png │ │ ├── top-frame-next-last-button-c.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-next-last-button-h.png │ │ ├── top-frame-next-last-button-i.png │ │ ├── top-frame-next-last-button-ic.png │ │ ├── top-frame-next-last-button-ih.png │ │ ├── top-frame-ontop-button-c.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-ontop-button-h.png │ │ ├── top-frame-ontop-button-i.png │ │ ├── top-frame-ontop-button-ic.png │ │ ├── top-frame-ontop-button-ih.png │ │ ├── top-frame-prev-button-c.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-button-h.png │ │ ├── top-frame-prev-button-i.png │ │ ├── top-frame-prev-button-ic.png │ │ ├── top-frame-prev-button-ih.png │ │ ├── top-frame-prev-last-button-c.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-prev-last-button-h.png │ │ ├── top-frame-prev-last-button-i.png │ │ ├── top-frame-prev-last-button-ic.png │ │ ├── top-frame-prev-last-button-ih.png │ │ ├── top-frame-raise-lower-button-c.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-raise-lower-button-h.png │ │ ├── top-frame-raise-lower-button-i.png │ │ ├── top-frame-raise-lower-button-ic.png │ │ ├── top-frame-raise-lower-button-ih.png │ │ ├── top-frame-rename-button-c.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-rename-button-h.png │ │ ├── top-frame-rename-button-i.png │ │ ├── top-frame-rename-button-ic.png │ │ ├── top-frame-rename-button-ih.png │ │ ├── top-frame-shade-button-c.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-shade-button-h.png │ │ ├── top-frame-shade-button-i.png │ │ ├── top-frame-shade-button-ic.png │ │ ├── top-frame-shade-button-ih.png │ │ ├── top-frame-sticky-button-c.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-sticky-button-h.png │ │ ├── top-frame-sticky-button-i.png │ │ ├── top-frame-sticky-button-ic.png │ │ ├── top-frame-sticky-button-ih.png │ │ ├── top-frame-tab-f.png │ │ ├── top-frame-tab-h.png │ │ ├── top-frame-tab-i.png │ │ ├── top-frame-tab-ih.png │ │ ├── top-frame-tab-left-f.png │ │ ├── top-frame-tab-left-i.png │ │ ├── top-frame-tab-left-icon-f.png │ │ ├── top-frame-tab-left-icon-h.png │ │ ├── top-frame-tab-left-icon-i.png │ │ ├── top-frame-tab-left-icon-ih.png │ │ ├── top-frame-tab-left-icon-marked-f.png │ │ ├── top-frame-tab-left-icon-marked-h.png │ │ ├── top-frame-tab-left-icon-marked-i.png │ │ ├── top-frame-tab-left-icon-marked-ih.png │ │ ├── top-frame-tab-marked-f.png │ │ ├── top-frame-tab-marked-h.png │ │ ├── top-frame-tab-marked-i.png │ │ ├── top-frame-tab-marked-ih.png │ │ ├── top-frame-tab-right-f.png │ │ ├── top-frame-tab-right-h.png │ │ ├── top-frame-tab-right-i.png │ │ ├── top-frame-tab-right-ih.png │ │ ├── top-frame-tab-right-marked-f.png │ │ ├── top-frame-tab-right-marked-h.png │ │ ├── top-frame-tab-right-marked-i.png │ │ ├── top-frame-tab-right-marked-ih.png │ │ ├── top-frame-title-cursor-f.png │ │ ├── top-frame-title-cursor-i.png │ │ ├── top-frame-title-f.png │ │ ├── top-frame-title-i.png │ │ ├── top-frame-title-nocursor-f.png │ │ ├── top-frame-title-nocursor-i.png │ │ ├── top-frame-top-left-corner-f.png │ │ ├── top-frame-top-left-corner-i.png │ │ ├── top-frame-top-left-corner-shaped-f.png │ │ ├── top-frame-top-left-corner-shaped-i.png │ │ ├── top-frame-unlock-button-c.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unlock-button-h.png │ │ ├── top-frame-unlock-button-i.png │ │ ├── top-frame-unlock-button-ic.png │ │ ├── top-frame-unlock-button-ih.png │ │ ├── top-frame-unmaximize-button-c.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unmaximize-button-h.png │ │ ├── top-frame-unmaximize-button-i.png │ │ ├── top-frame-unmaximize-button-ic.png │ │ ├── top-frame-unmaximize-button-ih.png │ │ ├── top-frame-unontop-button-c.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unontop-button-h.png │ │ ├── top-frame-unontop-button-i.png │ │ ├── top-frame-unontop-button-ic.png │ │ ├── top-frame-unontop-button-ih.png │ │ ├── top-frame-unshade-button-c.png │ │ ├── top-frame-unshade-button-f.png │ │ ├── top-frame-unshade-button-h.png │ │ ├── top-frame-unshade-button-i.png │ │ ├── top-frame-unshade-button-ic.png │ │ ├── top-frame-unshade-button-ih.png │ │ ├── top-frame-unsticky-button-c.png │ │ ├── top-frame-unsticky-button-f.png │ │ ├── top-frame-unsticky-button-h.png │ │ ├── top-frame-unsticky-button-i.png │ │ ├── top-frame-unsticky-button-ic.png │ │ └── top-frame-unsticky-button-ih.png │ ├── WixDa │ │ ├── bottom-frame-bottom-left-corner-f.png │ │ ├── bottom-frame-bottom-left-corner-i.png │ │ ├── bottom-frame-bottom-left-corner-shaped-f.png │ │ ├── bottom-frame-bottom-left-corner-shaped-i.png │ │ ├── bottom-frame-bottom-right-corner-f.png │ │ ├── bottom-frame-bottom-right-corner-i.png │ │ ├── bottom-frame-bottom-right-corner-shaped-f.png │ │ ├── bottom-frame-bottom-right-corner-shaped-i.png │ │ ├── bottom-frame-left-border-f.png │ │ ├── bottom-frame-left-border-i.png │ │ ├── bottom-frame-right-border-f.png │ │ ├── bottom-frame-right-border-i.png │ │ ├── bottom-frame-title-cursor-f.png │ │ ├── bottom-frame-title-cursor-i.png │ │ ├── bottom-frame-title-nocursor-f.png │ │ ├── bottom-frame-title-nocursor-i.png │ │ ├── bottom-frame-top-border-f.png │ │ ├── bottom-frame-top-border-i.png │ │ ├── bottom-frame-top-left-corner-f.png │ │ ├── bottom-frame-top-left-corner-i.png │ │ ├── bottom-frame-top-right-corner-f.png │ │ ├── bottom-frame-top-right-corner-i.png │ │ ├── left-frame-button-c.png │ │ ├── left-frame-button-f.png │ │ ├── left-frame-button-h.png │ │ ├── left-frame-button-i.png │ │ ├── left-frame-close-button-c.png │ │ ├── left-frame-close-button-f.png │ │ ├── left-frame-close-button-h.png │ │ ├── left-frame-close-button-i.png │ │ ├── left-frame-close-button-ic.png │ │ ├── left-frame-close-button-ih.png │ │ ├── left-frame-frame-type-button-c.png │ │ ├── left-frame-frame-type-button-f.png │ │ ├── left-frame-frame-type-button-h.png │ │ ├── left-frame-frame-type-button-i.png │ │ ├── left-frame-frame-type-button-ic.png │ │ ├── left-frame-frame-type-button-ih.png │ │ ├── left-frame-iconify-button-c.png │ │ ├── left-frame-iconify-button-f.png │ │ ├── left-frame-iconify-button-h.png │ │ ├── left-frame-iconify-button-i.png │ │ ├── left-frame-iconify-button-ic.png │ │ ├── left-frame-iconify-button-ih.png │ │ ├── left-frame-lock-button-c.png │ │ ├── left-frame-lock-button-f.png │ │ ├── left-frame-lock-button-h.png │ │ ├── left-frame-lock-button-i.png │ │ ├── left-frame-lock-button-ic.png │ │ ├── left-frame-lock-button-ih.png │ │ ├── left-frame-maximize-button-c.png │ │ ├── left-frame-maximize-button-f.png │ │ ├── left-frame-maximize-button-h.png │ │ ├── left-frame-maximize-button-i.png │ │ ├── left-frame-maximize-button-ic.png │ │ ├── left-frame-maximize-button-ih.png │ │ ├── left-frame-menu-button-c.png │ │ ├── left-frame-menu-button-f.png │ │ ├── left-frame-menu-button-h.png │ │ ├── left-frame-menu-button-i.png │ │ ├── left-frame-menu-button-ic.png │ │ ├── left-frame-menu-button-ih.png │ │ ├── left-frame-move-resize-button-c.png │ │ ├── left-frame-move-resize-button-f.png │ │ ├── left-frame-move-resize-button-h.png │ │ ├── left-frame-move-resize-button-i.png │ │ ├── left-frame-move-resize-button-ic.png │ │ ├── left-frame-move-resize-button-ih.png │ │ ├── left-frame-next-button-c.png │ │ ├── left-frame-next-button-f.png │ │ ├── left-frame-next-button-h.png │ │ ├── left-frame-next-button-i.png │ │ ├── left-frame-next-button-ic.png │ │ ├── left-frame-next-button-ih.png │ │ ├── left-frame-next-last-button-c.png │ │ ├── left-frame-next-last-button-f.png │ │ ├── left-frame-next-last-button-h.png │ │ ├── left-frame-next-last-button-i.png │ │ ├── left-frame-next-last-button-ic.png │ │ ├── left-frame-next-last-button-ih.png │ │ ├── left-frame-ontop-button-c.png │ │ ├── left-frame-ontop-button-f.png │ │ ├── left-frame-ontop-button-h.png │ │ ├── left-frame-ontop-button-i.png │ │ ├── left-frame-ontop-button-ic.png │ │ ├── left-frame-ontop-button-ih.png │ │ ├── left-frame-prev-button-c.png │ │ ├── left-frame-prev-button-f.png │ │ ├── left-frame-prev-button-h.png │ │ ├── left-frame-prev-button-i.png │ │ ├── left-frame-prev-button-ic.png │ │ ├── left-frame-prev-button-ih.png │ │ ├── left-frame-prev-last-button-c.png │ │ ├── left-frame-prev-last-button-f.png │ │ ├── left-frame-prev-last-button-h.png │ │ ├── left-frame-prev-last-button-i.png │ │ ├── left-frame-prev-last-button-ic.png │ │ ├── left-frame-prev-last-button-ih.png │ │ ├── left-frame-raise-lower-button-c.png │ │ ├── left-frame-raise-lower-button-f.png │ │ ├── left-frame-raise-lower-button-h.png │ │ ├── left-frame-raise-lower-button-i.png │ │ ├── left-frame-raise-lower-button-ic.png │ │ ├── left-frame-raise-lower-button-ih.png │ │ ├── left-frame-rename-button-c.png │ │ ├── left-frame-rename-button-f.png │ │ ├── left-frame-rename-button-h.png │ │ ├── left-frame-rename-button-i.png │ │ ├── left-frame-rename-button-ic.png │ │ ├── left-frame-rename-button-ih.png │ │ ├── left-frame-shade-button-c.png │ │ ├── left-frame-shade-button-f.png │ │ ├── left-frame-shade-button-h.png │ │ ├── left-frame-shade-button-i.png │ │ ├── left-frame-shade-button-ic.png │ │ ├── left-frame-shade-button-ih.png │ │ ├── left-frame-sticky-button-c.png │ │ ├── left-frame-sticky-button-f.png │ │ ├── left-frame-sticky-button-h.png │ │ ├── left-frame-sticky-button-i.png │ │ ├── left-frame-sticky-button-ic.png │ │ ├── left-frame-sticky-button-ih.png │ │ ├── left-frame-unlock-button-c.png │ │ ├── left-frame-unlock-button-f.png │ │ ├── left-frame-unlock-button-h.png │ │ ├── left-frame-unlock-button-i.png │ │ ├── left-frame-unlock-button-ic.png │ │ ├── left-frame-unlock-button-ih.png │ │ ├── left-frame-unmaximize-button-c.png │ │ ├── left-frame-unmaximize-button-f.png │ │ ├── left-frame-unmaximize-button-h.png │ │ ├── left-frame-unmaximize-button-i.png │ │ ├── left-frame-unmaximize-button-ic.png │ │ ├── left-frame-unmaximize-button-ih.png │ │ ├── left-frame-unontop-button-c.png │ │ ├── left-frame-unontop-button-f.png │ │ ├── left-frame-unontop-button-h.png │ │ ├── left-frame-unontop-button-i.png │ │ ├── left-frame-unontop-button-ic.png │ │ ├── left-frame-unontop-button-ih.png │ │ ├── left-frame-unshade-button-c.png │ │ ├── left-frame-unshade-button-f.png │ │ ├── left-frame-unshade-button-h.png │ │ ├── left-frame-unshade-button-i.png │ │ ├── left-frame-unshade-button-ic.png │ │ ├── left-frame-unshade-button-ih.png │ │ ├── left-frame-unsticky-button-c.png │ │ ├── left-frame-unsticky-button-f.png │ │ ├── left-frame-unsticky-button-h.png │ │ ├── left-frame-unsticky-button-i.png │ │ ├── left-frame-unsticky-button-ic.png │ │ ├── left-frame-unsticky-button-ih.png │ │ ├── top-frame-bottom-left-corner-f.png │ │ ├── top-frame-bottom-left-corner-i.png │ │ ├── top-frame-button-c.png │ │ ├── top-frame-button-f.png │ │ ├── top-frame-button-h.png │ │ ├── top-frame-button-i.png │ │ ├── top-frame-close-button-c.png │ │ ├── top-frame-close-button-f.png │ │ ├── top-frame-close-button-h.png │ │ ├── top-frame-close-button-i.png │ │ ├── top-frame-close-button-ic.png │ │ ├── top-frame-close-button-ih.png │ │ ├── top-frame-frame-type-button-c.png │ │ ├── top-frame-frame-type-button-f.png │ │ ├── top-frame-frame-type-button-h.png │ │ ├── top-frame-frame-type-button-i.png │ │ ├── top-frame-frame-type-button-ic.png │ │ ├── top-frame-frame-type-button-ih.png │ │ ├── top-frame-icon-title-images-f.png │ │ ├── top-frame-icon-title-images-i.png │ │ ├── top-frame-iconify-button-c.png │ │ ├── top-frame-iconify-button-f.png │ │ ├── top-frame-iconify-button-h.png │ │ ├── top-frame-iconify-button-i.png │ │ ├── top-frame-iconify-button-ic.png │ │ ├── top-frame-iconify-button-ih.png │ │ ├── top-frame-left-border-f.png │ │ ├── top-frame-left-border-i.png │ │ ├── top-frame-lock-button-c.png │ │ ├── top-frame-lock-button-f.png │ │ ├── top-frame-lock-button-h.png │ │ ├── top-frame-lock-button-i.png │ │ ├── top-frame-lock-button-ic.png │ │ ├── top-frame-lock-button-ih.png │ │ ├── top-frame-maximize-button-c.png │ │ ├── top-frame-maximize-button-f.png │ │ ├── top-frame-maximize-button-h.png │ │ ├── top-frame-maximize-button-i.png │ │ ├── top-frame-maximize-button-ic.png │ │ ├── top-frame-maximize-button-ih.png │ │ ├── top-frame-menu-button-c.png │ │ ├── top-frame-menu-button-f.png │ │ ├── top-frame-menu-button-h.png │ │ ├── top-frame-menu-button-i.png │ │ ├── top-frame-menu-button-ic.png │ │ ├── top-frame-menu-button-ih.png │ │ ├── top-frame-move-resize-button-c.png │ │ ├── top-frame-move-resize-button-f.png │ │ ├── top-frame-move-resize-button-h.png │ │ ├── top-frame-move-resize-button-i.png │ │ ├── top-frame-move-resize-button-ic.png │ │ ├── top-frame-move-resize-button-ih.png │ │ ├── top-frame-next-button-c.png │ │ ├── top-frame-next-button-f.png │ │ ├── top-frame-next-button-h.png │ │ ├── top-frame-next-button-i.png │ │ ├── top-frame-next-button-ic.png │ │ ├── top-frame-next-button-ih.png │ │ ├── top-frame-next-last-button-c.png │ │ ├── top-frame-next-last-button-f.png │ │ ├── top-frame-next-last-button-h.png │ │ ├── top-frame-next-last-button-i.png │ │ ├── top-frame-next-last-button-ic.png │ │ ├── top-frame-next-last-button-ih.png │ │ ├── top-frame-ontop-button-c.png │ │ ├── top-frame-ontop-button-f.png │ │ ├── top-frame-ontop-button-h.png │ │ ├── top-frame-ontop-button-i.png │ │ ├── top-frame-ontop-button-ic.png │ │ ├── top-frame-ontop-button-ih.png │ │ ├── top-frame-prev-button-c.png │ │ ├── top-frame-prev-button-f.png │ │ ├── top-frame-prev-button-h.png │ │ ├── top-frame-prev-button-i.png │ │ ├── top-frame-prev-button-ic.png │ │ ├── top-frame-prev-button-ih.png │ │ ├── top-frame-prev-last-button-c.png │ │ ├── top-frame-prev-last-button-f.png │ │ ├── top-frame-prev-last-button-h.png │ │ ├── top-frame-prev-last-button-i.png │ │ ├── top-frame-prev-last-button-ic.png │ │ ├── top-frame-prev-last-button-ih.png │ │ ├── top-frame-raise-lower-button-c.png │ │ ├── top-frame-raise-lower-button-f.png │ │ ├── top-frame-raise-lower-button-h.png │ │ ├── top-frame-raise-lower-button-i.png │ │ ├── top-frame-raise-lower-button-ic.png │ │ ├── top-frame-raise-lower-button-ih.png │ │ ├── top-frame-rename-button-c.png │ │ ├── top-frame-rename-button-f.png │ │ ├── top-frame-rename-button-h.png │ │ ├── top-frame-rename-button-i.png │ │ ├── top-frame-rename-button-ic.png │ │ ├── top-frame-rename-button-ih.png │ │ ├── top-frame-shade-button-c.png │ │ ├── top-frame-shade-button-f.png │ │ ├── top-frame-shade-button-h.png │ │ ├── top-frame-shade-button-i.png │ │ ├── top-frame-shade-button-ic.png │ │ ├── top-frame-shade-button-ih.png │ │ ├── top-frame-sticky-button-c.png │ │ ├── top-frame-sticky-button-f.png │ │ ├── top-frame-sticky-button-h.png │ │ ├── top-frame-sticky-button-i.png │ │ ├── top-frame-sticky-button-ic.png │ │ ├── top-frame-sticky-button-ih.png │ │ ├── top-frame-tab-f.png │ │ ├── top-frame-tab-h.png │ │ ├── top-frame-tab-i.png │ │ ├── top-frame-tab-ih.png │ │ ├── top-frame-tab-left-f.png │ │ ├── top-frame-tab-left-i.png │ │ ├── top-frame-tab-left-icon-f.png │ │ ├── top-frame-tab-left-icon-h.png │ │ ├── top-frame-tab-left-icon-i.png │ │ ├── top-frame-tab-left-icon-ih.png │ │ ├── top-frame-tab-left-icon-marked-f.png │ │ ├── top-frame-tab-left-icon-marked-h.png │ │ ├── top-frame-tab-left-icon-marked-i.png │ │ ├── top-frame-tab-left-icon-marked-ih.png │ │ ├── top-frame-tab-marked-f.png │ │ ├── top-frame-tab-marked-h.png │ │ ├── top-frame-tab-marked-i.png │ │ ├── top-frame-tab-marked-ih.png │ │ ├── top-frame-tab-right-f.png │ │ ├── top-frame-tab-right-h.png │ │ ├── top-frame-tab-right-i.png │ │ ├── top-frame-tab-right-ih.png │ │ ├── top-frame-tab-right-marked-f.png │ │ ├── top-frame-tab-right-marked-h.png │ │ ├── top-frame-tab-right-marked-i.png │ │ ├── top-frame-tab-right-marked-ih.png │ │ ├── top-frame-title-cursor-f.png │ │ ├── top-frame-title-cursor-i.png │ │ ├── top-frame-title-f.png │ │ ├── top-frame-title-i.png │ │ ├── top-frame-title-nocursor-f.png │ │ ├── top-frame-title-nocursor-i.png │ │ ├── top-frame-top-left-corner-f.png │ │ ├── top-frame-top-left-corner-i.png │ │ ├── top-frame-top-left-corner-shaped-f.png │ │ ├── top-frame-top-left-corner-shaped-i.png │ │ ├── top-frame-unlock-button-c.png │ │ ├── top-frame-unlock-button-f.png │ │ ├── top-frame-unlock-button-h.png │ │ ├── top-frame-unlock-button-i.png │ │ ├── top-frame-unlock-button-ic.png │ │ ├── top-frame-unlock-button-ih.png │ │ ├── top-frame-unmaximize-button-c.png │ │ ├── top-frame-unmaximize-button-f.png │ │ ├── top-frame-unmaximize-button-h.png │ │ ├── top-frame-unmaximize-button-i.png │ │ ├── top-frame-unmaximize-button-ic.png │ │ ├── top-frame-unmaximize-button-ih.png │ │ ├── top-frame-unontop-button-c.png │ │ ├── top-frame-unontop-button-f.png │ │ ├── top-frame-unontop-button-h.png │ │ ├── top-frame-unontop-button-i.png │ │ ├── top-frame-unontop-button-ic.png │ │ ├── top-frame-unontop-button-ih.png │ │ ├── top-frame-unshade-button-c.png │ │ ├── top-frame-unshade-button-f.png │ │ ├── top-frame-unshade-button-h.png │ │ ├── top-frame-unshade-button-i.png │ │ ├── top-frame-unshade-button-ic.png │ │ ├── top-frame-unshade-button-ih.png │ │ ├── top-frame-unsticky-button-c.png │ │ ├── top-frame-unsticky-button-f.png │ │ ├── top-frame-unsticky-button-h.png │ │ ├── top-frame-unsticky-button-i.png │ │ ├── top-frame-unsticky-button-ic.png │ │ └── top-frame-unsticky-button-ih.png │ └── theme.jl ├── Zami-like │ ├── README │ ├── bottom-border-transient.png │ ├── bottom-border.png │ ├── bottom-left-corner-inactive.png │ ├── bottom-left-corner-pressed.png │ ├── bottom-left-corner-transient-inactive.png │ ├── bottom-left-corner-transient-pressed.png │ ├── bottom-left-corner-transient.png │ ├── bottom-left-corner.png │ ├── bottom-right-corner-inactive.png │ ├── bottom-right-corner-pressed.png │ ├── bottom-right-corner-transient-inactive.png │ ├── bottom-right-corner-transient-pressed.png │ ├── bottom-right-corner-transient.png │ ├── bottom-right-corner.png │ ├── close-button-inactive.png │ ├── close-button-pressed.png │ ├── close-button.png │ ├── iconify-button-inactive.png │ ├── iconify-button-pressed.png │ ├── iconify-button.png │ ├── left-border-transient.png │ ├── left-border.png │ ├── maximize-button-inactive.png │ ├── maximize-button-pressed.png │ ├── maximize-button.png │ ├── right-border-transient.png │ ├── right-border.png │ ├── theme.jl │ ├── title-background.png │ ├── title-foreground-inactive.png │ ├── title-foreground-left.png │ ├── title-foreground-right.png │ ├── title-foreground.png │ ├── title-shaped-inactive.png │ ├── title-shaped-left.png │ ├── title-shaped-right.png │ ├── title-shaped.png │ ├── title-transient-shaped-left-inactive.png │ ├── title-transient-shaped-left.png │ ├── title-transient-shaped-right-inactive.png │ ├── title-transient-shaped-right.png │ ├── title-transient-shaped.png │ ├── title-transient.png │ ├── top-left-corner-shaded.png │ ├── top-left-corner-transient-inactive.png │ ├── top-left-corner-transient-pressed.png │ ├── top-left-corner-transient.png │ ├── top-left-corner.png │ ├── top-right-corner-shaded.png │ ├── top-right-corner-transient-inactive.png │ ├── top-right-corner-transient-pressed.png │ ├── top-right-corner-transient.png │ └── top-right-corner.png ├── absolute-e │ ├── README │ ├── README.gl │ ├── README.it │ ├── README.ja │ ├── README.pl │ ├── bar_clicked_active.png │ ├── bar_hilited_active.png │ ├── bar_normal.png │ ├── bar_normal_active.png │ └── theme.jl ├── candido │ ├── bl.png │ ├── bottom.png │ ├── br.png │ ├── btbg.png │ ├── close.png │ ├── close_active.png │ ├── left.png │ ├── max.png │ ├── max_active.png │ ├── menu.png │ ├── menu_active.png │ ├── menubg.png │ ├── min.png │ ├── min_active.png │ ├── right.png │ ├── shade.png │ ├── theme.jl │ └── title.png ├── gradient-tabbed │ ├── README │ ├── close-button.png │ ├── close-pressed.png │ ├── minimize-button.png │ ├── minimize-pressed.png │ └── theme.jl ├── microGUI │ ├── README │ ├── README.gl │ ├── README.it │ ├── README.ja │ ├── README.pl │ ├── TODO │ ├── bl.png │ ├── bottom.png │ ├── br.png │ ├── close_active.png │ ├── close_clicked.png │ ├── close_normal.png │ ├── left.png │ ├── maximize_active.png │ ├── maximize_clicked.png │ ├── maximize_normal.png │ ├── menu_active.png │ ├── menu_clicked.png │ ├── menu_normal.png │ ├── minimize_active.png │ ├── minimize_clicked.png │ ├── minimize_normal.png │ ├── right.png │ ├── t_bottom.png │ ├── t_bottom_left.png │ ├── t_bottom_right.png │ ├── t_close_active.png │ ├── t_close_clicked.png │ ├── t_close_normal.png │ ├── t_left.png │ ├── t_right.png │ ├── t_top.png │ ├── t_top_left.png │ ├── t_top_right.png │ ├── theme.jl │ ├── top_blue.png │ ├── top_blue_inactive.png │ ├── top_curves.png │ ├── top_curves_inactive.png │ ├── top_grey.png │ ├── top_left.png │ ├── top_left_inactive.png │ ├── top_left_inactive_s.png │ ├── top_left_s.png │ ├── top_right.png │ └── top_right_s.png └── mxflat │ ├── .ctags │ ├── CHANGELOG │ ├── README │ ├── TODO │ ├── button-icons │ ├── ball-12 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-ball.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── ball-9 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── default-12 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── default-9 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── square-12 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── square-15 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── square-18 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ ├── square-6 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ └── square-9 │ │ ├── button-a1.png │ │ ├── button-a2.png │ │ ├── button-close.png │ │ ├── button-configure.png │ │ ├── button-info.png │ │ ├── button-lock1.png │ │ ├── button-lock2.png │ │ ├── button-maximize1.png │ │ ├── button-maximize2.png │ │ ├── button-menu.png │ │ ├── button-minimize.png │ │ ├── button-next1.png │ │ ├── button-next2.png │ │ ├── button-previous1.png │ │ ├── button-previous2.png │ │ ├── button-shade1.png │ │ ├── button-shade2.png │ │ ├── button-sticky1.png │ │ └── button-sticky2.png │ └── theme.jl └── web ├── Sawfish.png ├── blank.png ├── bugtracker.png ├── community.png ├── docs.png ├── download.png ├── git.png ├── i18n.png ├── index.html ├── mail.png ├── resources.png ├── right-red.png ├── right.png ├── twitter.png └── wiki.png /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | **/*.jl linguist-language=Lisp 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | John Harper 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.SOUNDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/COPYING.SOUNDS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/INSTALL -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | 2 | Christopher Bratusek 3 | E-mail: nano@jpberlin.de 4 | Userid: Nanolx 5 | 6 | -------------------------------------------------------------------------------- /Makedefs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/Makedefs.in -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/README -------------------------------------------------------------------------------- /README.IMPORTANT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/README.IMPORTANT -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/config.sub -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/configure.ac -------------------------------------------------------------------------------- /data/sawfish-config.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-config.desktop -------------------------------------------------------------------------------- /data/sawfish-gnome2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-gnome2.desktop -------------------------------------------------------------------------------- /data/sawfish-kde4-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-kde4-session -------------------------------------------------------------------------------- /data/sawfish-kde4.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-kde4.desktop -------------------------------------------------------------------------------- /data/sawfish-kde5-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-kde5-session -------------------------------------------------------------------------------- /data/sawfish-kde5.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-kde5.desktop -------------------------------------------------------------------------------- /data/sawfish-ksm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-ksm.desktop -------------------------------------------------------------------------------- /data/sawfish-lumina-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-lumina-session -------------------------------------------------------------------------------- /data/sawfish-lumina.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-lumina.desktop -------------------------------------------------------------------------------- /data/sawfish-mate-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-mate-session -------------------------------------------------------------------------------- /data/sawfish-mate.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-mate.desktop -------------------------------------------------------------------------------- /data/sawfish-xfce-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-xfce-session -------------------------------------------------------------------------------- /data/sawfish-xfce.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish-xfce.desktop -------------------------------------------------------------------------------- /data/sawfish.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish.desktop -------------------------------------------------------------------------------- /data/sawfish.ebuild.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish.ebuild.in -------------------------------------------------------------------------------- /data/sawfish.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish.pc.in -------------------------------------------------------------------------------- /data/sawfish.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/data/sawfish.spec.in -------------------------------------------------------------------------------- /debian/NEWS.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/NEWS.Debian -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.sawfish-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/README.sawfish-data -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/README.themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/README.themes -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/clean -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/debian-sawfish-policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/debian-sawfish-policy -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/preinst -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/sawfish-data.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.dirs -------------------------------------------------------------------------------- /debian/sawfish-data.emacsen-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.emacsen-install -------------------------------------------------------------------------------- /debian/sawfish-data.emacsen-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.emacsen-remove -------------------------------------------------------------------------------- /debian/sawfish-data.emacsen-startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.emacsen-startup -------------------------------------------------------------------------------- /debian/sawfish-data.info: -------------------------------------------------------------------------------- 1 | man/sawfish.info* 2 | -------------------------------------------------------------------------------- /debian/sawfish-data.install.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.install.in -------------------------------------------------------------------------------- /debian/sawfish-data.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.lintian-overrides -------------------------------------------------------------------------------- /debian/sawfish-data.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-data.postinst -------------------------------------------------------------------------------- /debian/sawfish-kde4-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-kde4-session.install -------------------------------------------------------------------------------- /debian/sawfish-kde5-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-kde5-session.install -------------------------------------------------------------------------------- /debian/sawfish-lisp-source.lintian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-lisp-source.lintian -------------------------------------------------------------------------------- /debian/sawfish-lumina-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-lumina-session.install -------------------------------------------------------------------------------- /debian/sawfish-mate-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-mate-session.install -------------------------------------------------------------------------------- /debian/sawfish-xfce-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish-xfce-session.install -------------------------------------------------------------------------------- /debian/sawfish.emacsen-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.emacsen-install -------------------------------------------------------------------------------- /debian/sawfish.emacsen-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.emacsen-remove -------------------------------------------------------------------------------- /debian/sawfish.emacsen-startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.emacsen-startup -------------------------------------------------------------------------------- /debian/sawfish.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.install -------------------------------------------------------------------------------- /debian/sawfish.maintscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.maintscript -------------------------------------------------------------------------------- /debian/sawfish.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.postinst -------------------------------------------------------------------------------- /debian/sawfish.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/sawfish.prerm -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (git) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/debian/watch -------------------------------------------------------------------------------- /doc/AUTOSTART: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/doc/AUTOSTART -------------------------------------------------------------------------------- /doc/KEYBINDINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/doc/KEYBINDINGS -------------------------------------------------------------------------------- /doc/OPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/doc/OPTIONS -------------------------------------------------------------------------------- /doc/XSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/doc/XSettings -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/install-sh -------------------------------------------------------------------------------- /lisp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/Makefile.in -------------------------------------------------------------------------------- /lisp/sawfish/cfg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/Makefile.in -------------------------------------------------------------------------------- /lisp/sawfish/cfg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/README -------------------------------------------------------------------------------- /lisp/sawfish/cfg/WIDGETS-LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/WIDGETS-LIST -------------------------------------------------------------------------------- /lisp/sawfish/cfg/apply.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/apply.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/config.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/config.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/group.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/group.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/i18n.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/i18n.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/layout.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/layout.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/layouts/keymaps.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/layouts/keymaps.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/main.jl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/main.jl.in -------------------------------------------------------------------------------- /lisp/sawfish/cfg/sawfish-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/sawfish-config.png -------------------------------------------------------------------------------- /lisp/sawfish/cfg/shell.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/shell.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/slot.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/slot.jl -------------------------------------------------------------------------------- /lisp/sawfish/cfg/wm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/cfg/wm.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/Makefile.in -------------------------------------------------------------------------------- /lisp/sawfish/gtk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/README -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widget.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widget.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/alist.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/alist.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/color.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/color.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/command.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/command.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/event.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/event.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/file.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/file.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/font.jl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/font.jl.in -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/image.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/image.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/keymap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/keymap.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/list.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/list.jl -------------------------------------------------------------------------------- /lisp/sawfish/gtk/widgets/pair.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/gtk/widgets/pair.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/animation/main.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/animation/main.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/animation/modes.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/animation/modes.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/animation/setup.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/animation/setup.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/autoload.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/autoload.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/cycle.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/cycle.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/describe.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/describe.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/groups.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/groups.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/grow-pack.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/grow-pack.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/help.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/help.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/launcher.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/launcher.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/poweroff.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/poweroff.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/commands/x-cycle.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/commands/x-cycle.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/cursors.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/cursors.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/custom-defaults.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/custom-defaults.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/custom.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/custom.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/customize.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/customize.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/actions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/actions.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/conf.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/conf.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/expand.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/expand.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/flip.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/flip.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/hot-spots.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/hot-spots.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/misc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/misc.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/util.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/util.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/edge/viewport-drag.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/edge/viewport-drag.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/apps-menu.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/apps-menu.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/audio-events.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/audio-events.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/auto-raise.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/auto-raise.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/cabinet.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/cabinet.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/error-handler.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/error-handler.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/hide-dialogs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/hide-dialogs.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/match-window.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/match-window.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/mousetrap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/mousetrap.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/shade-hover.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/shade-hover.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/shade-stack.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/shade-stack.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/tooltips.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/tooltips.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/wallpaper.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/wallpaper.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/window-history.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/window-history.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/ext/workspace-grid.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/ext/workspace-grid.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/focus.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/focus.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/frames.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/frames.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/gaol.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/gaol.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/heads.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/heads.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/gnome.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/gnome.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/kde.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/kde.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/lumina.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/lumina.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/lxde.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/lxde.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/mate.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/mate.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/integration/xfce.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/integration/xfce.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/keymaps.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/keymaps.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/menus.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/menus.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/misc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/misc.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/placement.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/placement.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/placement/smart.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/placement/smart.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/placement/stagger.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/placement/stagger.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/compton.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/compton.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/conky.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/conky.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/trayer.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/trayer.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/xgamma.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/xgamma.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/xmobar.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/xmobar.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/xmodmap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/xmodmap.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/prg/xsettingsd.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/prg/xsettingsd.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/server.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/server.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/session/init.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/session/init.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/session/load.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/session/load.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/session/save.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/session/save.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/stacking.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/stacking.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/configure.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/configure.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/iconify.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/iconify.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/ignored.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/ignored.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/maximize.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/maximize.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/mwm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/mwm.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/open-look.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/open-look.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/shading.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/shading.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/transient.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/transient.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/state/wm-spec.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/state/wm-spec.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/swapper.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/swapper.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tabs/tab.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tabs/tab.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tabs/tabgroup.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tabs/tabgroup.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/col.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/col.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/readme.org -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/tall.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/tall.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/tile.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/tile.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/tiler.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/tiler.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/tile/utils.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/tile/utils.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/user.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/user.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/compat.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/compat.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/edges.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/edges.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/events.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/events.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/font.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/font.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/groups.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/groups.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/gtkrc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/gtkrc.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/keymap-diff.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/keymap-diff.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/keymap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/keymap.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/nokogiri.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/nokogiri.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/ping.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/ping.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/play-audio.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/play-audio.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/prompt-wm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/prompt-wm.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/prompt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/prompt.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/rects.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/rects.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/stacking.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/stacking.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/with-output.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/with-output.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/util/workarea.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/util/workarea.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/viewport.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/viewport.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/windows.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/windows.jl -------------------------------------------------------------------------------- /lisp/sawfish/wm/workspace.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/lisp/sawfish/wm/workspace.jl -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/faq.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/faq.texi -------------------------------------------------------------------------------- /man/news.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/news.texi -------------------------------------------------------------------------------- /man/sawfish-client.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/sawfish-client.1 -------------------------------------------------------------------------------- /man/sawfish-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/sawfish-config.1 -------------------------------------------------------------------------------- /man/sawfish.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/sawfish.1 -------------------------------------------------------------------------------- /man/sawfish.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/sawfish.texi -------------------------------------------------------------------------------- /man/user-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/man/user-doc.texi -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /moved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/moved -------------------------------------------------------------------------------- /next-lisp/Undo-viewport.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/next-lisp/Undo-viewport.jl -------------------------------------------------------------------------------- /next-lisp/undo.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/next-lisp/undo.jl -------------------------------------------------------------------------------- /next-lisp/uptimes.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/next-lisp/uptimes.jl -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/Makefile.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/README -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ak.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/hi_IN.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/make-pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/make-pot -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/no.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sawfish-xgettext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sawfish-xgettext -------------------------------------------------------------------------------- /po/sawfish.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sawfish.pot -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sr@Latn.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/update.sh -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /sawfish.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sawfish.el -------------------------------------------------------------------------------- /screenshotter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/Makefile -------------------------------------------------------------------------------- /screenshotter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/README -------------------------------------------------------------------------------- /screenshotter/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/apps.sh -------------------------------------------------------------------------------- /screenshotter/bkgd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/bkgd.jpg -------------------------------------------------------------------------------- /screenshotter/make_screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/make_screenshot.sh -------------------------------------------------------------------------------- /screenshotter/make_screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/make_screenshots.sh -------------------------------------------------------------------------------- /screenshotter/normal-window.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/normal-window.sh -------------------------------------------------------------------------------- /screenshotter/prep_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/screenshotter/prep_config.sh -------------------------------------------------------------------------------- /scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/Makefile.in -------------------------------------------------------------------------------- /scripts/cabinet-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/cabinet-missing.png -------------------------------------------------------------------------------- /scripts/make-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/make-changelog -------------------------------------------------------------------------------- /scripts/sawfish-about.jl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/sawfish-about.jl.in -------------------------------------------------------------------------------- /scripts/sawfish-client.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/sawfish-client.jl -------------------------------------------------------------------------------- /scripts/sawfish-menu.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/sawfish-menu.jl -------------------------------------------------------------------------------- /scripts/sawfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/scripts/sawfish.png -------------------------------------------------------------------------------- /sounds/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/Makefile.in -------------------------------------------------------------------------------- /sounds/focused.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/focused.wav -------------------------------------------------------------------------------- /sounds/iconify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/iconify.wav -------------------------------------------------------------------------------- /sounds/map-transient.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/map-transient.wav -------------------------------------------------------------------------------- /sounds/map.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/map.wav -------------------------------------------------------------------------------- /sounds/maximize.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/maximize.wav -------------------------------------------------------------------------------- /sounds/move-viewport.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/move-viewport.wav -------------------------------------------------------------------------------- /sounds/shade.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/shade.wav -------------------------------------------------------------------------------- /sounds/switch-workspace.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/switch-workspace.wav -------------------------------------------------------------------------------- /sounds/unfocused.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/unfocused.wav -------------------------------------------------------------------------------- /sounds/uniconify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/uniconify.wav -------------------------------------------------------------------------------- /sounds/unmap-transient.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/unmap-transient.wav -------------------------------------------------------------------------------- /sounds/unmap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/unmap.wav -------------------------------------------------------------------------------- /sounds/unmaximize.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/unmaximize.wav -------------------------------------------------------------------------------- /sounds/unshade.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/sounds/unshade.wav -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/client.c -------------------------------------------------------------------------------- /src/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/colors.c -------------------------------------------------------------------------------- /src/cursors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/cursors.c -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/display.c -------------------------------------------------------------------------------- /src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/events.c -------------------------------------------------------------------------------- /src/fake-libexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/fake-libexec -------------------------------------------------------------------------------- /src/flippers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/flippers.c -------------------------------------------------------------------------------- /src/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/fonts.c -------------------------------------------------------------------------------- /src/frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/frames.c -------------------------------------------------------------------------------- /src/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/functions.c -------------------------------------------------------------------------------- /src/gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/gradient.c -------------------------------------------------------------------------------- /src/gtk-style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/gtk-style.c -------------------------------------------------------------------------------- /src/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/images.c -------------------------------------------------------------------------------- /src/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/keys.c -------------------------------------------------------------------------------- /src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/keys.h -------------------------------------------------------------------------------- /src/libclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/libclient.c -------------------------------------------------------------------------------- /src/libclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/libclient.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/main.c -------------------------------------------------------------------------------- /src/multihead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/multihead.c -------------------------------------------------------------------------------- /src/pixmap-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/pixmap-cache.c -------------------------------------------------------------------------------- /src/property-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/property-cache.c -------------------------------------------------------------------------------- /src/sawfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/sawfish.h -------------------------------------------------------------------------------- /src/sawfish_subrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/sawfish_subrs.h -------------------------------------------------------------------------------- /src/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/selection.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/server.h -------------------------------------------------------------------------------- /src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/session.c -------------------------------------------------------------------------------- /src/stacking-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/stacking-list.c -------------------------------------------------------------------------------- /src/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/windows.c -------------------------------------------------------------------------------- /src/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/src/x.c -------------------------------------------------------------------------------- /themes/Crux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/README -------------------------------------------------------------------------------- /themes/Crux/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/README.gl -------------------------------------------------------------------------------- /themes/Crux/active:button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:button.png -------------------------------------------------------------------------------- /themes/Crux/active:close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:close-button.png -------------------------------------------------------------------------------- /themes/Crux/active:left-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:left-border.png -------------------------------------------------------------------------------- /themes/Crux/active:menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:menu-button.png -------------------------------------------------------------------------------- /themes/Crux/active:right-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:right-border.png -------------------------------------------------------------------------------- /themes/Crux/active:shade-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/active:shade-button.png -------------------------------------------------------------------------------- /themes/Crux/inactive:button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/inactive:button.png -------------------------------------------------------------------------------- /themes/Crux/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Crux/theme.jl -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-bot.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ll.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-lr.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-rs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-t0.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-t1.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-t2.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-t3.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tbot.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-th.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ti.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tll.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tlr.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tlrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tlrs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tm.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tt0.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ttop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ttop.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ttx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ttx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tul.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tur.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-turs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-turs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-tx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ul.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-uls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-uls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-ur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-ur.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/a-urs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/a-urs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/c-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/c-th.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/c-ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/c-ti.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/c-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/c-tm.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/c-ttx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/c-ttx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/c-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/c-tx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-bot.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ll.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-lr.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-rs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-t0.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-t1.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-t2.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-t3.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tbot.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-th.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ti.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tll.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tlr.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tlrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tlrs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tm.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tt0.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ttop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ttop.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ttx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ttx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tul.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tur.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-turs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-turs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-tx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ul.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-uls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-uls.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-ur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-ur.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/i-urs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/i-urs.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/p-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/p-th.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/p-ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/p-ti.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/p-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/p-tm.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/p-ttx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/p-ttx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/p-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/p-tx.png -------------------------------------------------------------------------------- /themes/Elberg-tabbed/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Elberg-tabbed/theme.jl -------------------------------------------------------------------------------- /themes/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Makefile.in -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-bottom-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-bottom-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-bottom-right-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-right-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-right-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-top-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/bottom-frame-top-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-button-i.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/left-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-button-i.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | top-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-left-icon-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-tab-right-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-title-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-top-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Default/top-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Flat/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/StyleTab/Flat/.directory -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-bottom-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-bottom-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-bottom-right-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-right-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-right-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-top-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/bottom-frame-top-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-button-i.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/left-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-button-i.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | top-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-left-icon-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-tab-right-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-title-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-top-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Glass/top-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/StyleTab/README -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-bottom-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-bottom-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-bottom-right-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-right-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-right-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-top-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/bottom-frame-top-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-button-i.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/left-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-button-i.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | top-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-left-icon-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-tab-right-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-title-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-top-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Reduce/top-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-bottom-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-bottom-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-bottom-right-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-right-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-right-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-top-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/bottom-frame-top-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-button-i.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/left-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-button-i.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | top-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-left-icon-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-h.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-tab-right-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-title-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-top-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/Smoothly/top-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-bottom-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-bottom-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-bottom-right-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-bottom-right-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-right-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-right-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-top-border-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/bottom-frame-top-right-corner-i.png: -------------------------------------------------------------------------------- 1 | bottom-frame-top-right-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-button-i.png: -------------------------------------------------------------------------------- 1 | left-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/left-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | left-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-bottom-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-bottom-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-button-i.png: -------------------------------------------------------------------------------- 1 | top-frame-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-close-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-close-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-frame-type-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-frame-type-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-iconify-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-iconify-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-left-border-i.png: -------------------------------------------------------------------------------- 1 | top-frame-left-border-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-lock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-lock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-maximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-maximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-menu-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-menu-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-move-resize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-move-resize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-next-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-next-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-next-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-ontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-ontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-prev-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-prev-last-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-prev-last-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-raise-lower-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-raise-lower-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-rename-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-rename-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-shade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-shade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-sticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-sticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-h.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-left-icon-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-left-icon-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-h.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-marked-f.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-marked-h.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-h.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-marked-i.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-i.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-tab-right-marked-ih.png: -------------------------------------------------------------------------------- 1 | top-frame-tab-right-ih.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-title-cursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-cursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-title-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-title-nocursor-i.png: -------------------------------------------------------------------------------- 1 | top-frame-title-nocursor-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-top-left-corner-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-top-left-corner-shaped-i.png: -------------------------------------------------------------------------------- 1 | top-frame-top-left-corner-shaped-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-unlock-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unlock-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-unmaximize-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unmaximize-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-unontop-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unontop-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-unshade-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unshade-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/WixDa/top-frame-unsticky-button-h.png: -------------------------------------------------------------------------------- 1 | top-frame-unsticky-button-f.png -------------------------------------------------------------------------------- /themes/StyleTab/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/StyleTab/theme.jl -------------------------------------------------------------------------------- /themes/Zami-like/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/README -------------------------------------------------------------------------------- /themes/Zami-like/bottom-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/bottom-border.png -------------------------------------------------------------------------------- /themes/Zami-like/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/close-button.png -------------------------------------------------------------------------------- /themes/Zami-like/iconify-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/iconify-button.png -------------------------------------------------------------------------------- /themes/Zami-like/left-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/left-border.png -------------------------------------------------------------------------------- /themes/Zami-like/right-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/right-border.png -------------------------------------------------------------------------------- /themes/Zami-like/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/theme.jl -------------------------------------------------------------------------------- /themes/Zami-like/title-shaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/Zami-like/title-shaped.png -------------------------------------------------------------------------------- /themes/absolute-e/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/README -------------------------------------------------------------------------------- /themes/absolute-e/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/README.gl -------------------------------------------------------------------------------- /themes/absolute-e/README.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/README.it -------------------------------------------------------------------------------- /themes/absolute-e/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/README.ja -------------------------------------------------------------------------------- /themes/absolute-e/README.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/README.pl -------------------------------------------------------------------------------- /themes/absolute-e/bar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/bar_normal.png -------------------------------------------------------------------------------- /themes/absolute-e/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/absolute-e/theme.jl -------------------------------------------------------------------------------- /themes/candido/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/bl.png -------------------------------------------------------------------------------- /themes/candido/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/bottom.png -------------------------------------------------------------------------------- /themes/candido/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/br.png -------------------------------------------------------------------------------- /themes/candido/btbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/btbg.png -------------------------------------------------------------------------------- /themes/candido/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/close.png -------------------------------------------------------------------------------- /themes/candido/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/close_active.png -------------------------------------------------------------------------------- /themes/candido/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/left.png -------------------------------------------------------------------------------- /themes/candido/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/max.png -------------------------------------------------------------------------------- /themes/candido/max_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/max_active.png -------------------------------------------------------------------------------- /themes/candido/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/menu.png -------------------------------------------------------------------------------- /themes/candido/menu_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/menu_active.png -------------------------------------------------------------------------------- /themes/candido/menubg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/menubg.png -------------------------------------------------------------------------------- /themes/candido/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/min.png -------------------------------------------------------------------------------- /themes/candido/min_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/min_active.png -------------------------------------------------------------------------------- /themes/candido/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/right.png -------------------------------------------------------------------------------- /themes/candido/shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/shade.png -------------------------------------------------------------------------------- /themes/candido/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/theme.jl -------------------------------------------------------------------------------- /themes/candido/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/candido/title.png -------------------------------------------------------------------------------- /themes/gradient-tabbed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/gradient-tabbed/README -------------------------------------------------------------------------------- /themes/gradient-tabbed/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/gradient-tabbed/theme.jl -------------------------------------------------------------------------------- /themes/microGUI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/README -------------------------------------------------------------------------------- /themes/microGUI/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/README.gl -------------------------------------------------------------------------------- /themes/microGUI/README.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/README.it -------------------------------------------------------------------------------- /themes/microGUI/README.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/README.ja -------------------------------------------------------------------------------- /themes/microGUI/README.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/README.pl -------------------------------------------------------------------------------- /themes/microGUI/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/TODO -------------------------------------------------------------------------------- /themes/microGUI/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/bl.png -------------------------------------------------------------------------------- /themes/microGUI/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/bottom.png -------------------------------------------------------------------------------- /themes/microGUI/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/br.png -------------------------------------------------------------------------------- /themes/microGUI/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/close_active.png -------------------------------------------------------------------------------- /themes/microGUI/close_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/close_clicked.png -------------------------------------------------------------------------------- /themes/microGUI/close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/close_normal.png -------------------------------------------------------------------------------- /themes/microGUI/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/left.png -------------------------------------------------------------------------------- /themes/microGUI/maximize_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/maximize_active.png -------------------------------------------------------------------------------- /themes/microGUI/maximize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/maximize_normal.png -------------------------------------------------------------------------------- /themes/microGUI/menu_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/menu_active.png -------------------------------------------------------------------------------- /themes/microGUI/menu_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/menu_clicked.png -------------------------------------------------------------------------------- /themes/microGUI/menu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/menu_normal.png -------------------------------------------------------------------------------- /themes/microGUI/minimize_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/minimize_active.png -------------------------------------------------------------------------------- /themes/microGUI/minimize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/minimize_normal.png -------------------------------------------------------------------------------- /themes/microGUI/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/right.png -------------------------------------------------------------------------------- /themes/microGUI/t_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_bottom.png -------------------------------------------------------------------------------- /themes/microGUI/t_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_bottom_left.png -------------------------------------------------------------------------------- /themes/microGUI/t_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_bottom_right.png -------------------------------------------------------------------------------- /themes/microGUI/t_close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_close_active.png -------------------------------------------------------------------------------- /themes/microGUI/t_close_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_close_clicked.png -------------------------------------------------------------------------------- /themes/microGUI/t_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_close_normal.png -------------------------------------------------------------------------------- /themes/microGUI/t_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_left.png -------------------------------------------------------------------------------- /themes/microGUI/t_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_right.png -------------------------------------------------------------------------------- /themes/microGUI/t_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_top.png -------------------------------------------------------------------------------- /themes/microGUI/t_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_top_left.png -------------------------------------------------------------------------------- /themes/microGUI/t_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/t_top_right.png -------------------------------------------------------------------------------- /themes/microGUI/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/theme.jl -------------------------------------------------------------------------------- /themes/microGUI/top_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_blue.png -------------------------------------------------------------------------------- /themes/microGUI/top_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_curves.png -------------------------------------------------------------------------------- /themes/microGUI/top_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_grey.png -------------------------------------------------------------------------------- /themes/microGUI/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_left.png -------------------------------------------------------------------------------- /themes/microGUI/top_left_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_left_s.png -------------------------------------------------------------------------------- /themes/microGUI/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_right.png -------------------------------------------------------------------------------- /themes/microGUI/top_right_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/microGUI/top_right_s.png -------------------------------------------------------------------------------- /themes/mxflat/.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/mxflat/.ctags -------------------------------------------------------------------------------- /themes/mxflat/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/mxflat/CHANGELOG -------------------------------------------------------------------------------- /themes/mxflat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/mxflat/README -------------------------------------------------------------------------------- /themes/mxflat/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/mxflat/TODO -------------------------------------------------------------------------------- /themes/mxflat/theme.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/themes/mxflat/theme.jl -------------------------------------------------------------------------------- /web/Sawfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/Sawfish.png -------------------------------------------------------------------------------- /web/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/blank.png -------------------------------------------------------------------------------- /web/bugtracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/bugtracker.png -------------------------------------------------------------------------------- /web/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/community.png -------------------------------------------------------------------------------- /web/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/docs.png -------------------------------------------------------------------------------- /web/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/download.png -------------------------------------------------------------------------------- /web/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/git.png -------------------------------------------------------------------------------- /web/i18n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/i18n.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/index.html -------------------------------------------------------------------------------- /web/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/mail.png -------------------------------------------------------------------------------- /web/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/resources.png -------------------------------------------------------------------------------- /web/right-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/right-red.png -------------------------------------------------------------------------------- /web/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/right.png -------------------------------------------------------------------------------- /web/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/twitter.png -------------------------------------------------------------------------------- /web/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SawfishWM/sawfish/HEAD/web/wiki.png --------------------------------------------------------------------------------