├── AUTHORS ├── COMPOSITOR ├── COPYING ├── Makefile.am ├── NEWS ├── NOTES ├── README ├── TODO ├── autoclean.sh ├── autogen.sh ├── common ├── Makefile.am ├── xfwm-common.c └── xfwm-common.h ├── configure.ac.in ├── defaults ├── Makefile.am └── defaults ├── example.gtkrc-2.0 ├── helper-dialog ├── Makefile.am └── helper-dialog.c ├── icons ├── 22x22 │ ├── Makefile.am │ ├── xfce-wm-close.png │ ├── xfce-wm-maximize.png │ ├── xfce-wm-menu.png │ ├── xfce-wm-minimize.png │ ├── xfce-wm-shade.png │ ├── xfce-wm-stick.png │ ├── xfce-wm-unmaximize.png │ ├── xfce-wm-unshade.png │ └── xfce-wm-unstick.png ├── 48x48 │ ├── Makefile.am │ ├── wmtweaks.png │ ├── xfce4-workspaces.png │ ├── xfwm4-default.png │ └── xfwm4.png ├── Makefile.am └── scalable │ ├── Makefile.am │ ├── wmtweaks.svg │ ├── xfce-wm-close.svg │ ├── xfce-wm-maximize.svg │ ├── xfce-wm-menu.svg │ ├── xfce-wm-minimize.svg │ ├── xfce-wm-shade.svg │ ├── xfce-wm-stick.svg │ ├── xfce-wm-unmaximize.svg │ ├── xfce-wm-unshade.svg │ ├── xfce-wm-unstick.svg │ ├── xfce4-workspaces.svg │ ├── xfwm4-default.svg │ └── xfwm4.svg ├── po ├── POTFILES.in ├── am.po ├── ar.po ├── ast.po ├── be.po ├── bg.po ├── bn.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── gl.po ├── he.po ├── hr.po ├── hu.po ├── id.po ├── is.po ├── it.po ├── ja.po ├── kk.po ├── ko.po ├── lt.po ├── lv.po ├── ms.po ├── nb.po ├── nl.po ├── nn.po ├── oc.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sv.po ├── te.po ├── th.po ├── tr.po ├── ug.po ├── uk.po ├── ur.po ├── ur_PK.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── settings-dialogs ├── Makefile.am ├── monitor-icon.svg ├── range-debouncer.c ├── range-debouncer.h ├── tweaks-settings.c ├── workspace-settings.c ├── workspace.gresource.xml ├── xfce-wm-settings.desktop.in ├── xfce-wmtweaks-settings.desktop.in ├── xfce-workspaces-settings.desktop.in ├── xfwm4-dialog.glade ├── xfwm4-settings.c ├── xfwm4-settings.h ├── xfwm4-tweaks-dialog.glade └── xfwm4-workspace-dialog.glade ├── src ├── .indent.pro ├── Makefile.am ├── client.c ├── client.h ├── compositor.c ├── compositor.h ├── cycle.c ├── cycle.h ├── device.c ├── device.h ├── display.c ├── display.h ├── event_filter.c ├── event_filter.h ├── events.c ├── events.h ├── focus.c ├── focus.h ├── frame.c ├── frame.h ├── gen-color-table.pl ├── hints.c ├── hints.h ├── icons.c ├── icons.h ├── keyboard.c ├── keyboard.h ├── main.c ├── menu.c ├── menu.h ├── misc.c ├── misc.h ├── moveresize.c ├── moveresize.h ├── mypixmap.c ├── mypixmap.h ├── mywindow.c ├── mywindow.h ├── netwm.c ├── netwm.h ├── parserc.c ├── parserc.h ├── placement.c ├── placement.h ├── poswin.c ├── poswin.h ├── screen.c ├── screen.h ├── session.c ├── session.h ├── settings.c ├── settings.h ├── spinning_cursor.c ├── spinning_cursor.h ├── stacking.c ├── stacking.h ├── startup_notification.c ├── startup_notification.h ├── tabwin.c ├── tabwin.h ├── terminate.c ├── terminate.h ├── transients.c ├── transients.h ├── ui_style.c ├── ui_style.h ├── wireframe.c ├── wireframe.h ├── workspaces.c ├── workspaces.h ├── xpm-color-table.h ├── xsync.c └── xsync.h └── themes ├── Makefile.am ├── daloa ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.svg ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.svg ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.svg ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.svg ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.svg ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.svg ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.svg ├── close-active.xpm ├── close-inactive.png ├── close-inactive.svg ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.svg ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.svg ├── close-pressed.xpm ├── hide-active.png ├── hide-active.svg ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.svg ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.svg ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.svg ├── hide-pressed.xpm ├── left-active.png ├── left-active.svg ├── left-active.xpm ├── left-inactive.png ├── left-inactive.svg ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.svg ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.svg ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.svg ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.svg ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.svg ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.svg ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.svg ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.svg ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.svg ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.svg ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.svg ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.svg ├── menu-pressed.xpm ├── right-active.png ├── right-active.svg ├── right-active.xpm ├── right-inactive.png ├── right-inactive.svg ├── right-inactive.xpm ├── shade-active.png ├── shade-active.svg ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.svg ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.svg ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.svg ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.svg ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.svg ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.svg ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.svg ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.svg ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.svg ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.svg ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.svg ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.svg ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.svg ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.svg ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.svg ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.svg ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.svg ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.svg ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.svg ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.svg ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.svg ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.svg ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.svg ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.svg ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.svg ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.svg ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.svg ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.svg ├── top-right-active.xpm ├── top-right-inactive.png ├── top-right-inactive.svg └── top-right-inactive.xpm ├── default-hdpi ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.svg ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.svg ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.svg ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.svg ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.svg ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.svg ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.svg ├── close-active.xpm ├── close-inactive.png ├── close-inactive.svg ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.svg ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.svg ├── close-pressed.xpm ├── hide-active.png ├── hide-active.svg ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.svg ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.svg ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.svg ├── hide-pressed.xpm ├── left-active.png ├── left-active.svg ├── left-active.xpm ├── left-inactive.png ├── left-inactive.svg ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.svg ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.svg ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.svg ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.svg ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.svg ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.svg ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.svg ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.svg ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.svg ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.svg ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.svg ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.svg ├── menu-pressed.xpm ├── right-active.png ├── right-active.svg ├── right-active.xpm ├── right-inactive.png ├── right-inactive.svg ├── right-inactive.xpm ├── shade-active.png ├── shade-active.svg ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.svg ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.svg ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.svg ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.svg ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.svg ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.svg ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.svg ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.svg ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.svg ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.svg ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.svg ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.svg ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.svg ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.svg ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.svg ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.svg ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.svg ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.svg ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.svg ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.svg ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.svg ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.svg ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.svg ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.svg ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.svg ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.svg ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.svg ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.svg ├── top-right-active.xpm ├── top-right-inactive.png ├── top-right-inactive.svg └── top-right-inactive.xpm ├── default-xhdpi ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.svg ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.svg ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.svg ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.svg ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.svg ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.svg ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.svg ├── close-active.xpm ├── close-inactive.png ├── close-inactive.svg ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.svg ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.svg ├── close-pressed.xpm ├── hide-active.png ├── hide-active.svg ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.svg ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.svg ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.svg ├── hide-pressed.xpm ├── left-active.png ├── left-active.svg ├── left-active.xpm ├── left-inactive.png ├── left-inactive.svg ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.svg ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.svg ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.svg ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.svg ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.svg ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.svg ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.svg ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.svg ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.svg ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.svg ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.svg ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.svg ├── menu-pressed.xpm ├── right-active.png ├── right-active.svg ├── right-active.xpm ├── right-inactive.png ├── right-inactive.svg ├── right-inactive.xpm ├── shade-active.png ├── shade-active.svg ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.svg ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.svg ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.svg ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.svg ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.svg ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.svg ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.svg ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.svg ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.svg ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.svg ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.svg ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.svg ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.svg ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.svg ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.svg ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.svg ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.svg ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.svg ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.svg ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.svg ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.svg ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.svg ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.svg ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.svg ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.svg ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.svg ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.svg ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.svg ├── top-right-active.xpm ├── top-right-inactive.png ├── top-right-inactive.svg └── top-right-inactive.xpm ├── default ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.svg ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.svg ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.svg ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.svg ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.svg ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.svg ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.svg ├── close-active.xpm ├── close-inactive.png ├── close-inactive.svg ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.svg ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.svg ├── close-pressed.xpm ├── hide-active.png ├── hide-active.svg ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.svg ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.svg ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.svg ├── hide-pressed.xpm ├── left-active.png ├── left-active.svg ├── left-active.xpm ├── left-inactive.png ├── left-inactive.svg ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.svg ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.svg ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.svg ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.svg ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.svg ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.svg ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.svg ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.svg ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.svg ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.svg ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.svg ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.svg ├── menu-pressed.xpm ├── right-active.png ├── right-active.svg ├── right-active.xpm ├── right-inactive.png ├── right-inactive.svg ├── right-inactive.xpm ├── shade-active.png ├── shade-active.svg ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.svg ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.svg ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.svg ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.svg ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.svg ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.svg ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.svg ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.svg ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.svg ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.svg ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.svg ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.svg ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.svg ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.svg ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.svg ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.svg ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.svg ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.svg ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.svg ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.svg ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.svg ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.svg ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.svg ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.svg ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.svg ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.svg ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.svg ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.svg ├── top-right-active.xpm ├── top-right-inactive.png ├── top-right-inactive.svg └── top-right-inactive.xpm ├── kokodi ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.svg ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.svg ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.svg ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.svg ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.svg ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.svg ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.svg ├── close-active.xpm ├── close-inactive.png ├── close-inactive.svg ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.svg ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.svg ├── close-pressed.xpm ├── hide-active.png ├── hide-active.svg ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.svg ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.svg ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.svg ├── hide-pressed.xpm ├── left-active.png ├── left-active.svg ├── left-active.xpm ├── left-inactive.png ├── left-inactive.svg ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.svg ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.svg ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.svg ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.svg ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.svg ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.svg ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.svg ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.svg ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.svg ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.svg ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.svg ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.svg ├── menu-pressed.xpm ├── right-active.png ├── right-active.svg ├── right-active.xpm ├── right-inactive.png ├── right-inactive.svg ├── right-inactive.xpm ├── shade-active.png ├── shade-active.svg ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.svg ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.svg ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.svg ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.svg ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.svg ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.svg ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.svg ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.svg ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.svg ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.svg ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.svg ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.svg ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.svg ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.svg ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.svg ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.svg ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.svg ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.svg ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.svg ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.svg ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.svg ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.svg ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.svg ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.svg ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.svg ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.svg ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.svg ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.svg ├── top-right-active.xpm ├── top-right-inactive.png ├── top-right-inactive.svg └── top-right-inactive.xpm └── moheli ├── Makefile.am ├── README ├── bottom-active.png ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.xpm ├── close-inactive.png ├── close-inactive.xpm ├── close-pressed.png ├── close-pressed.xpm ├── hide-active.png ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.xpm ├── hide-pressed.png ├── hide-pressed.xpm ├── left-active.png ├── left-active.xpm ├── left-inactive.png ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.xpm ├── maximize-pressed.png ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.xpm ├── menu-pressed.png ├── menu-pressed.xpm ├── right-active.png ├── right-active.xpm ├── right-inactive.png ├── right-inactive.xpm ├── save-pressed.png ├── shade-active.png ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.xpm ├── shade-pressed.png ├── shade-pressed.xpm ├── shade-toggled-active.png ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.xpm ├── stick-pressed.png ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.xpm ├── top-right-inactive.png └── top-right-inactive.xpm /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/AUTHORS -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- 1 | Developer notes: 2 | ---------------- 3 | 4 | * I18n: Do NOT ever edit the po/Makefile.in.in or run glib-gettextize 5 | or gettextize in this directory, as it'll break the locales 6 | install stuff. If you think you need to change something, 7 | ask Benedikt Meurer first (benedikt.meurer@unix-ag.uni-siegen.de). 8 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Things to do 2 | ============ 3 | 4 | Add your favorite wish list here : 5 | 6 | * Rewrite transients management efficiently 7 | -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = \ 2 | -I${top_srcdir} 3 | 4 | noinst_LTLIBRARIES = \ 5 | libxfwm-common.la 6 | 7 | libxfwm_common_la_SOURCES = \ 8 | xfwm-common.c \ 9 | xfwm-common.h 10 | 11 | libxfwm_common_la_CFLAGS = \ 12 | $(GTK_CFLAGS) \ 13 | $(PLATFORM_CFLAGS) 14 | 15 | libxfwm_common_la_LIBADD = \ 16 | $(GTK_LIBS) 17 | 18 | libxfwm_common_la_LDFLAGS = \ 19 | -no-undefined \ 20 | $(PLATFORM_LDFLAGS) 21 | -------------------------------------------------------------------------------- /defaults/Makefile.am: -------------------------------------------------------------------------------- 1 | defaultsdir = $(pkgdatadir) 2 | defaults_DATA = defaults 3 | EXTRA_DIST = $(defaults_DATA) 4 | -------------------------------------------------------------------------------- /example.gtkrc-2.0: -------------------------------------------------------------------------------- 1 | style "titlebar" 2 | { 3 | font_name = "Sans 10" 4 | } 5 | 6 | widget "xfwm" style "titlebar" 7 | -------------------------------------------------------------------------------- /helper-dialog/Makefile.am: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | 3 | AM_CPPFLAGS = \ 4 | $(GTK_CFLAGS) \ 5 | $(LIBXFCE4UTIL_CFLAGS) \ 6 | $(LIBX11_CFLAGS) \ 7 | -DPACKAGE_LOCALE_DIR=\"$(localedir)\" 8 | 9 | helper_dialogdir = $(HELPER_PATH_PREFIX)/xfce4/xfwm4 10 | 11 | helper_dialog_PROGRAMS = \ 12 | helper-dialog 13 | 14 | helper_dialog_SOURCES = \ 15 | helper-dialog.c 16 | 17 | helper_dialog_CFLAGS = \ 18 | $(LIBXFCE4UTIL_CFLAGS) \ 19 | $(LIBX11_CFLAGS) \ 20 | $(GTK_CFLAGS) 21 | 22 | helper_dialog_LDADD = \ 23 | $(LIBXFCE4UTIL_LIBS) \ 24 | $(LIBX11_LIBS) \ 25 | $(LIBX11_LDFLAGS) \ 26 | $(GTK_LIBS) 27 | 28 | -------------------------------------------------------------------------------- /icons/22x22/Makefile.am: -------------------------------------------------------------------------------- 1 | actionsiconsdir = $(datadir)/icons/hicolor/22x22/actions 2 | actionsicons_DATA = \ 3 | xfce-wm-close.png \ 4 | xfce-wm-maximize.png \ 5 | xfce-wm-menu.png \ 6 | xfce-wm-minimize.png \ 7 | xfce-wm-shade.png \ 8 | xfce-wm-stick.png \ 9 | xfce-wm-unmaximize.png \ 10 | xfce-wm-unshade.png \ 11 | xfce-wm-unstick.png 12 | 13 | 14 | EXTRA_DIST = $(actionsicons_DATA) 15 | -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-close.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-maximize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-menu.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-minimize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-shade.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-stick.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unmaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-unmaximize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-unshade.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/22x22/xfce-wm-unstick.png -------------------------------------------------------------------------------- /icons/48x48/Makefile.am: -------------------------------------------------------------------------------- 1 | iconsdir = $(datadir)/icons/hicolor/48x48/apps 2 | icons_DATA = \ 3 | wmtweaks.png \ 4 | xfce4-workspaces.png \ 5 | xfwm4.png \ 6 | xfwm4-default.png 7 | 8 | EXTRA_DIST = $(icons_DATA) 9 | -------------------------------------------------------------------------------- /icons/48x48/wmtweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/48x48/wmtweaks.png -------------------------------------------------------------------------------- /icons/48x48/xfce4-workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/48x48/xfce4-workspaces.png -------------------------------------------------------------------------------- /icons/48x48/xfwm4-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/48x48/xfwm4-default.png -------------------------------------------------------------------------------- /icons/48x48/xfwm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/icons/48x48/xfwm4.png -------------------------------------------------------------------------------- /icons/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = \ 2 | 22x22 \ 3 | 48x48 \ 4 | scalable 5 | 6 | # install-data-local: 7 | # @echo "Updating Gtk icon cache." 8 | # gtk-update-icon-cache -f -t $(datadir)/icons/hicolor/ 9 | -------------------------------------------------------------------------------- /icons/scalable/Makefile.am: -------------------------------------------------------------------------------- 1 | appiconsdir = $(datadir)/icons/hicolor/scalable/apps 2 | appicons_DATA = \ 3 | wmtweaks.svg \ 4 | xfce4-workspaces.svg \ 5 | xfwm4.svg \ 6 | xfwm4-default.svg 7 | 8 | actionsiconsdir = $(datadir)/icons/hicolor/scalable/actions 9 | actionsicons_DATA = \ 10 | xfce-wm-close.svg \ 11 | xfce-wm-maximize.svg \ 12 | xfce-wm-menu.svg \ 13 | xfce-wm-minimize.svg \ 14 | xfce-wm-shade.svg \ 15 | xfce-wm-stick.svg \ 16 | xfce-wm-unmaximize.svg \ 17 | xfce-wm-unshade.svg \ 18 | xfce-wm-unstick.svg 19 | 20 | EXTRA_DIST = $(appicons_DATA) $(actionsicons_DATA) 21 | -------------------------------------------------------------------------------- /settings-dialogs/workspace.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | monitor-icon.svg 5 | 6 | 7 | -------------------------------------------------------------------------------- /settings-dialogs/xfce-wm-settings.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | _Name=Window Manager 4 | _Comment=Configure window behavior and shortcuts 5 | Exec=xfwm4-settings 6 | Icon=xfwm4 7 | Terminal=false 8 | Type=Application 9 | Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings; 10 | StartupNotify=true 11 | OnlyShowIn=XFCE; 12 | X-XfcePluggable=true 13 | X-XfceHelpComponent=xfwm4 14 | X-XfceHelpPage=preferences 15 | -------------------------------------------------------------------------------- /settings-dialogs/xfce-wmtweaks-settings.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | _Name=Window Manager Tweaks 4 | _Comment=Fine-tune window behaviour and effects 5 | Exec=xfwm4-tweaks-settings 6 | Icon=wmtweaks 7 | Terminal=false 8 | Type=Application 9 | Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings; 10 | StartupNotify=true 11 | OnlyShowIn=XFCE; 12 | X-XfcePluggable=true 13 | X-XfceHelpComponent=xfwm4 14 | X-XfceHelpPage=wmtweaks 15 | -------------------------------------------------------------------------------- /settings-dialogs/xfce-workspaces-settings.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | _Name=Workspaces 4 | _Comment=Configure layout, names and margins 5 | Exec=xfwm4-workspace-settings 6 | Icon=xfce4-workspaces 7 | Terminal=false 8 | Type=Application 9 | Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings; 10 | StartupNotify=true 11 | OnlyShowIn=XFCE; 12 | X-XfcePluggable=true 13 | X-XfceHelpComponent=xfwm4 14 | X-XfceHelpPage=workspaces 15 | -------------------------------------------------------------------------------- /src/.indent.pro: -------------------------------------------------------------------------------- 1 | -gnu 2 | -nut 3 | -nlp 4 | -i4 5 | -bli0 6 | -cli4 7 | -nbfda 8 | -------------------------------------------------------------------------------- /themes/Makefile.am: -------------------------------------------------------------------------------- 1 | # themes/Makefile.am 2 | # 3 | 4 | SUBDIRS = \ 5 | daloa \ 6 | default \ 7 | default-hdpi \ 8 | default-xhdpi \ 9 | kokodi \ 10 | moheli 11 | 12 | -------------------------------------------------------------------------------- /themes/daloa/README: -------------------------------------------------------------------------------- 1 | Daloa 2 | ----- 3 | 4 | An original theme for xfwm4. 5 | Created May 2006 by Mike Massonnet 6 | Modified June 2006 by Olivier Fourdan 7 | Redone in SVG, Nov 2006 by Olivier Fourdan . 8 | Based on xfwm4 4.4 Default theme. 9 | 10 | Theme released under GNU GPL license. 11 | -------------------------------------------------------------------------------- /themes/daloa/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 5 5 1", 4 | " c None", 5 | "+ c #E0E0FF s active_hilight_1", 6 | "@ c #A0A0FF s active_shadow_1", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "########################", 10 | "########################", 11 | "########################", 12 | "++++++++++++++++++++++++", 13 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 14 | -------------------------------------------------------------------------------- /themes/daloa/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 5 5 1", 4 | " c None", 5 | "+ c #E0E0FF s inactive_hilight_1", 6 | "@ c #A0A0FF s inactive_shadow_1", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "########################", 10 | "########################", 11 | "########################", 12 | "++++++++++++++++++++++++", 13 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 14 | -------------------------------------------------------------------------------- /themes/daloa/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-left-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_active_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0FF s active_hilight_1", 6 | "@ c #A0A0FF s active_shadow_1", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "@+### ", 10 | "@+### ", 11 | "@+### ", 12 | "@+### ", 13 | "@+### ", 14 | "@+### ", 15 | "@+### ", 16 | "@+### ", 17 | "@+### ", 18 | "@+### ", 19 | "@+### ", 20 | "@+##############", 21 | "@+##############", 22 | "@+##############", 23 | "@+++++++++++++++", 24 | " @@@@@@@@@@@@@@@"}; 25 | -------------------------------------------------------------------------------- /themes/daloa/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_inactive_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0FF s inactive_hilight_1", 6 | "@ c #A0A0FF s inactive_shadow_1", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "@+### ", 10 | "@+### ", 11 | "@+### ", 12 | "@+### ", 13 | "@+### ", 14 | "@+### ", 15 | "@+### ", 16 | "@+### ", 17 | "@+### ", 18 | "@+### ", 19 | "@+### ", 20 | "@+##############", 21 | "@+##############", 22 | "@+##############", 23 | "@+++++++++++++++", 24 | " @@@@@@@@@@@@@@@"}; 25 | -------------------------------------------------------------------------------- /themes/daloa/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-right-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_active_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0FF s active_hilight_1", 6 | "@ c #A0A0FF s active_shadow_1", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | " ###+@", 10 | " ###+@", 11 | " ###+@", 12 | " ###+@", 13 | " ###+@", 14 | " ###+@", 15 | " ###+@", 16 | " ###+@", 17 | " ###+@", 18 | " ###+@", 19 | " ###+@", 20 | "##############+@", 21 | "##############+@", 22 | "##############+@", 23 | "+++++++++++++++@", 24 | "@@@@@@@@@@@@@@@ "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_inactive_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0FF s inactive_hilight_1", 6 | "@ c #A0A0FF s inactive_shadow_1", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | " ###+@", 10 | " ###+@", 11 | " ###+@", 12 | " ###+@", 13 | " ###+@", 14 | " ###+@", 15 | " ###+@", 16 | " ###+@", 17 | " ###+@", 18 | " ###+@", 19 | " ###+@", 20 | "##############+@", 21 | "##############+@", 22 | "##############+@", 23 | "+++++++++++++++@", 24 | "@@@@@@@@@@@@@@@ "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/close-active.png -------------------------------------------------------------------------------- /themes/daloa/close-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/close-inactive.png -------------------------------------------------------------------------------- /themes/daloa/close-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/close-prelight.png -------------------------------------------------------------------------------- /themes/daloa/close-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/close-pressed.png -------------------------------------------------------------------------------- /themes/daloa/close-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/hide-active.png -------------------------------------------------------------------------------- /themes/daloa/hide-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/hide-inactive.png -------------------------------------------------------------------------------- /themes/daloa/hide-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/hide-prelight.png -------------------------------------------------------------------------------- /themes/daloa/hide-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/hide-pressed.png -------------------------------------------------------------------------------- /themes/daloa/hide-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/left-active.png -------------------------------------------------------------------------------- /themes/daloa/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #E0E0FF s active_hilight_1", 6 | "@ c #A0A0FF s active_shadow_1", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "@+###", 10 | "@+###", 11 | "@+###", 12 | "@+###", 13 | "@+###", 14 | "@+###", 15 | "@+###", 16 | "@+###", 17 | "@+###", 18 | "@+###", 19 | "@+###", 20 | "@+###", 21 | "@+###", 22 | "@+###", 23 | "@+###", 24 | "@+###", 25 | "@+###", 26 | "@+###", 27 | "@+###", 28 | "@+###", 29 | "@+###", 30 | "@+###", 31 | "@+###", 32 | "@+###"}; 33 | -------------------------------------------------------------------------------- /themes/daloa/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #E0E0FF s inactive_hilight_1", 6 | "@ c #A0A0FF s inactive_shadow_1", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "@+###", 10 | "@+###", 11 | "@+###", 12 | "@+###", 13 | "@+###", 14 | "@+###", 15 | "@+###", 16 | "@+###", 17 | "@+###", 18 | "@+###", 19 | "@+###", 20 | "@+###", 21 | "@+###", 22 | "@+###", 23 | "@+###", 24 | "@+###", 25 | "@+###", 26 | "@+###", 27 | "@+###", 28 | "@+###", 29 | "@+###", 30 | "@+###", 31 | "@+###", 32 | "@+###"}; 33 | -------------------------------------------------------------------------------- /themes/daloa/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-active.png -------------------------------------------------------------------------------- /themes/daloa/maximize-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-inactive.png -------------------------------------------------------------------------------- /themes/daloa/maximize-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-prelight.png -------------------------------------------------------------------------------- /themes/daloa/maximize-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-pressed.png -------------------------------------------------------------------------------- /themes/daloa/maximize-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/menu-active.png -------------------------------------------------------------------------------- /themes/daloa/menu-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_active_xpm[] = { 3 | "24 16 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................"}; 22 | -------------------------------------------------------------------------------- /themes/daloa/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/menu-inactive.png -------------------------------------------------------------------------------- /themes/daloa/menu-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_inactive_xpm[] = { 3 | "24 16 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................"}; 22 | -------------------------------------------------------------------------------- /themes/daloa/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/menu-prelight.png -------------------------------------------------------------------------------- /themes/daloa/menu-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_pressed_xpm[] = { 3 | "24 16 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................"}; 22 | -------------------------------------------------------------------------------- /themes/daloa/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/menu-pressed.png -------------------------------------------------------------------------------- /themes/daloa/menu-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_pressed_xpm[] = { 3 | "24 16 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................"}; 22 | -------------------------------------------------------------------------------- /themes/daloa/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/right-active.png -------------------------------------------------------------------------------- /themes/daloa/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #E0E0FF s active_hilight_1", 6 | "@ c #A0A0FF s active_shadow_1", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "###+@", 10 | "###+@", 11 | "###+@", 12 | "###+@", 13 | "###+@", 14 | "###+@", 15 | "###+@", 16 | "###+@", 17 | "###+@", 18 | "###+@", 19 | "###+@", 20 | "###+@", 21 | "###+@", 22 | "###+@", 23 | "###+@", 24 | "###+@", 25 | "###+@", 26 | "###+@", 27 | "###+@", 28 | "###+@", 29 | "###+@", 30 | "###+@", 31 | "###+@", 32 | "###+@"}; 33 | -------------------------------------------------------------------------------- /themes/daloa/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #E0E0FF s inactive_hilight_1", 6 | "@ c #A0A0FF s inactive_shadow_1", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "###+@", 10 | "###+@", 11 | "###+@", 12 | "###+@", 13 | "###+@", 14 | "###+@", 15 | "###+@", 16 | "###+@", 17 | "###+@", 18 | "###+@", 19 | "###+@", 20 | "###+@", 21 | "###+@", 22 | "###+@", 23 | "###+@", 24 | "###+@", 25 | "###+@", 26 | "###+@", 27 | "###+@", 28 | "###+@", 29 | "###+@", 30 | "###+@", 31 | "###+@", 32 | "###+@"}; 33 | -------------------------------------------------------------------------------- /themes/daloa/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-active.png -------------------------------------------------------------------------------- /themes/daloa/shade-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-inactive.png -------------------------------------------------------------------------------- /themes/daloa/shade-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-prelight.png -------------------------------------------------------------------------------- /themes/daloa/shade-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-pressed.png -------------------------------------------------------------------------------- /themes/daloa/shade-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_toggled_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_toggled_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * shade_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-active.png -------------------------------------------------------------------------------- /themes/daloa/stick-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-inactive.png -------------------------------------------------------------------------------- /themes/daloa/stick-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-prelight.png -------------------------------------------------------------------------------- /themes/daloa/stick-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-pressed.png -------------------------------------------------------------------------------- /themes/daloa/stick-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_toggled_active_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_toggled_inactive_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stick_toggled_pressed_xpm[] = { 3 | "24 19 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........................", 18 | "........................", 19 | "........................", 20 | "........................", 21 | "........................", 22 | "........................", 23 | "........................", 24 | " "}; 25 | -------------------------------------------------------------------------------- /themes/daloa/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=#ffffff 2 | button_offset=1 3 | button_spacing=-1 4 | maximized_offset=0 5 | shadow_delta_height=0 6 | shadow_delta_width=0 7 | shadow_delta_x=0 8 | shadow_delta_y=2 9 | show_app_icon=true 10 | title_horizontal_offset=0 11 | title_shadow_active=frame 12 | title_shadow_inactive=false 13 | title_vertical_offset_active=1 14 | title_vertical_offset_inactive=1 15 | -------------------------------------------------------------------------------- /themes/daloa/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-1-active.png -------------------------------------------------------------------------------- /themes/daloa/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_active_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-1-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_inactive_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-2-active.png -------------------------------------------------------------------------------- /themes/daloa/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_2_active_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-2-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_2_inactive_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-3-active.png -------------------------------------------------------------------------------- /themes/daloa/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_3_active_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-3-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_3_inactive_xpm[] = { 3 | "4 20 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@"}; 28 | -------------------------------------------------------------------------------- /themes/daloa/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-4-active.png -------------------------------------------------------------------------------- /themes/daloa/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_4_active_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-4-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_4_inactive_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-5-active.png -------------------------------------------------------------------------------- /themes/daloa/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_5_active_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/title-5-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_5_inactive_xpm[] = { 3 | "4 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "....", 9 | "++++", 10 | "@@@@", 11 | "@@@@", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/top-left-active.png -------------------------------------------------------------------------------- /themes/daloa/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_active_xpm[] = { 3 | "8 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | " ......", 9 | " .++++++", 10 | ".+@@@@@@", 11 | ".+@@@@@@", 12 | ".+@@@@@@", 13 | ".+@@@@@@", 14 | ".+@@@@@@", 15 | ".+@@@@@@", 16 | ".+@@@@@@", 17 | ".+@@@@@@", 18 | ".+@@@@@@", 19 | ".+@@@@@@", 20 | ".+@@@@@@", 21 | ".+@@@@@@", 22 | ".+@@@@@@", 23 | ".+@@@@@@", 24 | ".+@@@@@@", 25 | ".+@@@@@@", 26 | ".+@@@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/top-left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "8 19 4 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | " ......", 9 | " .++++++", 10 | ".+@@@@@@", 11 | ".+@@@@@@", 12 | ".+@@@@@@", 13 | ".+@@@@@@", 14 | ".+@@@@@@", 15 | ".+@@@@@@", 16 | ".+@@@@@@", 17 | ".+@@@@@@", 18 | ".+@@@@@@", 19 | ".+@@@@@@", 20 | ".+@@@@@@", 21 | ".+@@@@@@", 22 | ".+@@@@@@", 23 | ".+@@@@@@", 24 | ".+@@@@@@", 25 | ".+@@@@@@", 26 | ".+@@@@@@"}; 27 | -------------------------------------------------------------------------------- /themes/daloa/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/top-right-active.png -------------------------------------------------------------------------------- /themes/daloa/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_active_xpm[] = { 3 | "8 19 5 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #D0D0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "# c #B0B0FF s active_mid_1", 9 | "...... ", 10 | "++++++. ", 11 | "@@@@@@+.", 12 | "@@@@@@+.", 13 | "@@@@@@+.", 14 | "@@@@@@+.", 15 | "@@@@@@+.", 16 | "@@@@@@+.", 17 | "@@@@@@+.", 18 | "@@@@@@+.", 19 | "@@@@@@+.", 20 | "@@@@@@+.", 21 | "@@@@@@+.", 22 | "@@@@@@+.", 23 | "@@@@@@+.", 24 | "@@@@@@+.", 25 | "@@@@@@+.", 26 | "@@@@@@+.", 27 | "@@@@@@+."}; 28 | -------------------------------------------------------------------------------- /themes/daloa/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/daloa/top-right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "8 19 5 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #D0D0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "# c #B0B0FF s inactive_mid_1", 9 | "...... ", 10 | "++++++. ", 11 | "@@@@@@+.", 12 | "@@@@@@+.", 13 | "@@@@@@+.", 14 | "@@@@@@+.", 15 | "@@@@@@+.", 16 | "@@@@@@+.", 17 | "@@@@@@+.", 18 | "@@@@@@+.", 19 | "@@@@@@+.", 20 | "@@@@@@+.", 21 | "@@@@@@+.", 22 | "@@@@@@+.", 23 | "@@@@@@+.", 24 | "@@@@@@+.", 25 | "@@@@@@+.", 26 | "@@@@@@+.", 27 | "@@@@@@+."}; 28 | -------------------------------------------------------------------------------- /themes/default-hdpi/README: -------------------------------------------------------------------------------- 1 | SVG based theme for xfwm4. 2 | Created Sept. 2006 by Olivier Fourdan 3 | Modified Oct. 2014 by Olivier Fourdan 4 | Theme released under GNU GPL license. 5 | -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 6 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | "################################", 8 | "################################", 9 | "################################", 10 | "################################", 11 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 6 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "################################", 8 | "################################", 9 | "################################", 10 | "################################", 11 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-left-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-right-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/close-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/close-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/close-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/close-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/hide-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/hide-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/hide-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/hide-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/left-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | "@@####", 8 | "@@####", 9 | "@@####", 10 | "@@####", 11 | "@@####", 12 | "@@####", 13 | "@@####", 14 | "@@####", 15 | "@@####", 16 | "@@####", 17 | "@@####", 18 | "@@####", 19 | "@@####", 20 | "@@####", 21 | "@@####", 22 | "@@####", 23 | "@@####", 24 | "@@####", 25 | "@@####", 26 | "@@####", 27 | "@@####", 28 | "@@####", 29 | "@@####", 30 | "@@####", 31 | "@@####", 32 | "@@####", 33 | "@@####", 34 | "@@####", 35 | "@@####", 36 | "@@####", 37 | "@@####", 38 | "@@####"}; 39 | -------------------------------------------------------------------------------- /themes/default-hdpi/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/left-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@####", 8 | "@@####", 9 | "@@####", 10 | "@@####", 11 | "@@####", 12 | "@@####", 13 | "@@####", 14 | "@@####", 15 | "@@####", 16 | "@@####", 17 | "@@####", 18 | "@@####", 19 | "@@####", 20 | "@@####", 21 | "@@####", 22 | "@@####", 23 | "@@####", 24 | "@@####", 25 | "@@####", 26 | "@@####", 27 | "@@####", 28 | "@@####", 29 | "@@####", 30 | "@@####", 31 | "@@####", 32 | "@@####", 33 | "@@####", 34 | "@@####", 35 | "@@####", 36 | "@@####", 37 | "@@####", 38 | "@@####"}; 39 | -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/menu-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/menu-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/menu-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/menu-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/right-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | "####@@", 8 | "####@@", 9 | "####@@", 10 | "####@@", 11 | "####@@", 12 | "####@@", 13 | "####@@", 14 | "####@@", 15 | "####@@", 16 | "####@@", 17 | "####@@", 18 | "####@@", 19 | "####@@", 20 | "####@@", 21 | "####@@", 22 | "####@@", 23 | "####@@", 24 | "####@@", 25 | "####@@", 26 | "####@@", 27 | "####@@", 28 | "####@@", 29 | "####@@", 30 | "####@@", 31 | "####@@", 32 | "####@@", 33 | "####@@", 34 | "####@@", 35 | "####@@", 36 | "####@@", 37 | "####@@", 38 | "####@@"}; 39 | -------------------------------------------------------------------------------- /themes/default-hdpi/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/right-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "####@@", 8 | "####@@", 9 | "####@@", 10 | "####@@", 11 | "####@@", 12 | "####@@", 13 | "####@@", 14 | "####@@", 15 | "####@@", 16 | "####@@", 17 | "####@@", 18 | "####@@", 19 | "####@@", 20 | "####@@", 21 | "####@@", 22 | "####@@", 23 | "####@@", 24 | "####@@", 25 | "####@@", 26 | "####@@", 27 | "####@@", 28 | "####@@", 29 | "####@@", 30 | "####@@", 31 | "####@@", 32 | "####@@", 33 | "####@@", 34 | "####@@", 35 | "####@@", 36 | "####@@", 37 | "####@@", 38 | "####@@"}; 39 | -------------------------------------------------------------------------------- /themes/default-hdpi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=active_text_color_2 2 | active_text_shadow_color=active_hilight_2 3 | inactive_text_color=inactive_text_color_2 4 | inactive_text_shadow_color=inactive_hilight_2 5 | button_offset=2 6 | button_spacing=0 7 | full_width_title=true 8 | maximized_offset=0 9 | show_app_icon=true 10 | shadow_delta_height=-4 11 | shadow_delta_width=-8 12 | shadow_delta_x=-10 13 | shadow_delta_y=-10 14 | shadow_opacity=100 15 | title_horizontal_offset=1 16 | title_shadow_active=under 17 | title_shadow_inactive=under 18 | title_vertical_offset_active=1 19 | title_vertical_offset_inactive=1 20 | -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-1-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-1-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-2-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-2-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-3-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-3-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-4-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-4-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-5-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/title-5-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/top-left-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/top-left-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/top-right-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-hdpi/top-right-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/README: -------------------------------------------------------------------------------- 1 | SVG based theme for xfwm4. 2 | Created Sept. 2006 by Olivier Fourdan 3 | Modified Oct. 2014 by Olivier Fourdan 4 | Theme released under GNU GPL license. 5 | -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-left-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-right-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/close-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/close-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/close-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/close-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/hide-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/hide-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/hide-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/hide-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/left-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/left-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/menu-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/menu-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/menu-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/menu-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/right-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/right-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=active_text_color_2 2 | active_text_shadow_color=active_hilight_2 3 | inactive_text_color=inactive_text_color_2 4 | inactive_text_shadow_color=inactive_hilight_2 5 | button_offset=0 6 | button_spacing=0 7 | full_width_title=true 8 | maximized_offset=0 9 | show_app_icon=true 10 | shadow_delta_height=-2 11 | shadow_delta_width=-6 12 | shadow_delta_x=-8 13 | shadow_delta_y=-8 14 | shadow_opacity=100 15 | title_horizontal_offset=2 16 | title_shadow_active=under 17 | title_shadow_inactive=under 18 | title_vertical_offset_active=2 19 | title_vertical_offset_inactive=2 20 | -------------------------------------------------------------------------------- /themes/default-xhdpi/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-1-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-1-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-2-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-2-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-3-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-3-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-4-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-4-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-5-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/title-5-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/top-left-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/top-left-inactive.png -------------------------------------------------------------------------------- /themes/default-xhdpi/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/top-right-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default-xhdpi/top-right-inactive.png -------------------------------------------------------------------------------- /themes/default/README: -------------------------------------------------------------------------------- 1 | SVG based theme for xfwm4. 2 | Created Sept. 2006 by Olivier Fourdan 3 | Modified Oct. 2014 by Olivier Fourdan 4 | Theme released under GNU GPL license. 5 | -------------------------------------------------------------------------------- /themes/default/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-active.png -------------------------------------------------------------------------------- /themes/default/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 3 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | "@@@@@@@@@@@@@@@@@@@@@@@@", 8 | "@@@@@@@@@@@@@@@@@@@@@@@@", 9 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 10 | -------------------------------------------------------------------------------- /themes/default/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-inactive.png -------------------------------------------------------------------------------- /themes/default/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 3 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@@@@@@@@@@@@@@@@@@@@@@", 8 | "@@@@@@@@@@@@@@@@@@@@@@@@", 9 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 10 | -------------------------------------------------------------------------------- /themes/default/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-left-active.png -------------------------------------------------------------------------------- /themes/default/bottom-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_active_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | "@@@ ", 8 | "@@@ ", 9 | "@@@ ", 10 | "@@@ ", 11 | "@@@ ", 12 | "@@@ ", 13 | "@@@ ", 14 | "@@@ ", 15 | "@@@ ", 16 | "@@@ ", 17 | "@@@ ", 18 | "@@@ ", 19 | "@@@ ", 20 | "@@@@@@@@@@@@@@@@", 21 | "@@@@@@@@@@@@@@@@", 22 | " @@@@@@@@@@@@@@@"}; 23 | -------------------------------------------------------------------------------- /themes/default/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/default/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_inactive_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@ ", 8 | "@@@ ", 9 | "@@@ ", 10 | "@@@ ", 11 | "@@@ ", 12 | "@@@ ", 13 | "@@@ ", 14 | "@@@ ", 15 | "@@@ ", 16 | "@@@ ", 17 | "@@@ ", 18 | "@@@ ", 19 | "@@@ ", 20 | "@@@@@@@@@@@@@@@@", 21 | "@@@@@@@@@@@@@@@@", 22 | " @@@@@@@@@@@@@@@"}; 23 | -------------------------------------------------------------------------------- /themes/default/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-right-active.png -------------------------------------------------------------------------------- /themes/default/bottom-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_active_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_2", 7 | " @@@", 8 | " @@@", 9 | " @@@", 10 | " @@@", 11 | " @@@", 12 | " @@@", 13 | " @@@", 14 | " @@@", 15 | " @@@", 16 | " @@@", 17 | " @@@", 18 | " @@@", 19 | " @@@", 20 | "@@@@@@@@@@@@@@@@", 21 | "@@@@@@@@@@@@@@@@", 22 | "@@@@@@@@@@@@@@@ "}; 23 | -------------------------------------------------------------------------------- /themes/default/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/default/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_inactive_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | " @@@", 8 | " @@@", 9 | " @@@", 10 | " @@@", 11 | " @@@", 12 | " @@@", 13 | " @@@", 14 | " @@@", 15 | " @@@", 16 | " @@@", 17 | " @@@", 18 | " @@@", 19 | " @@@", 20 | "@@@@@@@@@@@@@@@@", 21 | "@@@@@@@@@@@@@@@@", 22 | "@@@@@@@@@@@@@@@ "}; 23 | -------------------------------------------------------------------------------- /themes/default/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/close-active.png -------------------------------------------------------------------------------- /themes/default/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/close-inactive.png -------------------------------------------------------------------------------- /themes/default/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/close-prelight.png -------------------------------------------------------------------------------- /themes/default/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/close-pressed.png -------------------------------------------------------------------------------- /themes/default/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/hide-active.png -------------------------------------------------------------------------------- /themes/default/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/hide-inactive.png -------------------------------------------------------------------------------- /themes/default/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/hide-prelight.png -------------------------------------------------------------------------------- /themes/default/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/hide-pressed.png -------------------------------------------------------------------------------- /themes/default/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/left-active.png -------------------------------------------------------------------------------- /themes/default/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "3 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@", 8 | "@@@", 9 | "@@@", 10 | "@@@", 11 | "@@@", 12 | "@@@", 13 | "@@@", 14 | "@@@", 15 | "@@@", 16 | "@@@", 17 | "@@@", 18 | "@@@", 19 | "@@@", 20 | "@@@", 21 | "@@@", 22 | "@@@", 23 | "@@@", 24 | "@@@", 25 | "@@@", 26 | "@@@", 27 | "@@@", 28 | "@@@", 29 | "@@@", 30 | "@@@"}; 31 | -------------------------------------------------------------------------------- /themes/default/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/left-inactive.png -------------------------------------------------------------------------------- /themes/default/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "3 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@", 8 | "@@@", 9 | "@@@", 10 | "@@@", 11 | "@@@", 12 | "@@@", 13 | "@@@", 14 | "@@@", 15 | "@@@", 16 | "@@@", 17 | "@@@", 18 | "@@@", 19 | "@@@", 20 | "@@@", 21 | "@@@", 22 | "@@@", 23 | "@@@", 24 | "@@@", 25 | "@@@", 26 | "@@@", 27 | "@@@", 28 | "@@@", 29 | "@@@", 30 | "@@@"}; 31 | -------------------------------------------------------------------------------- /themes/default/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-active.png -------------------------------------------------------------------------------- /themes/default/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-inactive.png -------------------------------------------------------------------------------- /themes/default/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-prelight.png -------------------------------------------------------------------------------- /themes/default/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-pressed.png -------------------------------------------------------------------------------- /themes/default/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/default/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/menu-active.png -------------------------------------------------------------------------------- /themes/default/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/menu-inactive.png -------------------------------------------------------------------------------- /themes/default/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/menu-prelight.png -------------------------------------------------------------------------------- /themes/default/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/menu-pressed.png -------------------------------------------------------------------------------- /themes/default/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/right-active.png -------------------------------------------------------------------------------- /themes/default/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "3 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@", 8 | "@@@", 9 | "@@@", 10 | "@@@", 11 | "@@@", 12 | "@@@", 13 | "@@@", 14 | "@@@", 15 | "@@@", 16 | "@@@", 17 | "@@@", 18 | "@@@", 19 | "@@@", 20 | "@@@", 21 | "@@@", 22 | "@@@", 23 | "@@@", 24 | "@@@", 25 | "@@@", 26 | "@@@", 27 | "@@@", 28 | "@@@", 29 | "@@@", 30 | "@@@"}; 31 | -------------------------------------------------------------------------------- /themes/default/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/right-inactive.png -------------------------------------------------------------------------------- /themes/default/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "3 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_2", 7 | "@@@", 8 | "@@@", 9 | "@@@", 10 | "@@@", 11 | "@@@", 12 | "@@@", 13 | "@@@", 14 | "@@@", 15 | "@@@", 16 | "@@@", 17 | "@@@", 18 | "@@@", 19 | "@@@", 20 | "@@@", 21 | "@@@", 22 | "@@@", 23 | "@@@", 24 | "@@@", 25 | "@@@", 26 | "@@@", 27 | "@@@", 28 | "@@@", 29 | "@@@", 30 | "@@@"}; 31 | -------------------------------------------------------------------------------- /themes/default/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-active.png -------------------------------------------------------------------------------- /themes/default/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-inactive.png -------------------------------------------------------------------------------- /themes/default/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-prelight.png -------------------------------------------------------------------------------- /themes/default/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-pressed.png -------------------------------------------------------------------------------- /themes/default/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/default/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-active.png -------------------------------------------------------------------------------- /themes/default/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-inactive.png -------------------------------------------------------------------------------- /themes/default/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-prelight.png -------------------------------------------------------------------------------- /themes/default/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-pressed.png -------------------------------------------------------------------------------- /themes/default/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/default/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/default/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/default/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/default/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=active_text_color_2 2 | active_text_shadow_color=active_hilight_2 3 | inactive_text_color=inactive_text_color_2 4 | inactive_text_shadow_color=inactive_hilight_2 5 | button_offset=2 6 | button_spacing=0 7 | full_width_title=true 8 | maximized_offset=0 9 | show_app_icon=true 10 | shadow_delta_height=-6 11 | shadow_delta_width=-10 12 | shadow_delta_x=-12 13 | shadow_delta_y=-12 14 | shadow_opacity=100 15 | title_horizontal_offset=1 16 | title_shadow_active=under 17 | title_shadow_inactive=under 18 | title_vertical_offset_active=1 19 | title_vertical_offset_inactive=1 20 | -------------------------------------------------------------------------------- /themes/default/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-1-active.png -------------------------------------------------------------------------------- /themes/default/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-1-inactive.png -------------------------------------------------------------------------------- /themes/default/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-2-active.png -------------------------------------------------------------------------------- /themes/default/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-2-inactive.png -------------------------------------------------------------------------------- /themes/default/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-3-active.png -------------------------------------------------------------------------------- /themes/default/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-3-inactive.png -------------------------------------------------------------------------------- /themes/default/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-4-active.png -------------------------------------------------------------------------------- /themes/default/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-4-inactive.png -------------------------------------------------------------------------------- /themes/default/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-5-active.png -------------------------------------------------------------------------------- /themes/default/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/title-5-inactive.png -------------------------------------------------------------------------------- /themes/default/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/default/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/top-left-active.png -------------------------------------------------------------------------------- /themes/default/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | " ....", 7 | " ......", 8 | " .......", 9 | " .......", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/default/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/top-left-inactive.png -------------------------------------------------------------------------------- /themes/default/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | " ....", 7 | " ......", 8 | " .......", 9 | " .......", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/default/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/top-right-active.png -------------------------------------------------------------------------------- /themes/default/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_2", 6 | ".... ", 7 | "...... ", 8 | "....... ", 9 | "....... ", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/default/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/default/top-right-inactive.png -------------------------------------------------------------------------------- /themes/default/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_2", 6 | ".... ", 7 | "...... ", 8 | "....... ", 9 | "....... ", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/README: -------------------------------------------------------------------------------- 1 | Kokodi^2 2 | -------- 3 | 4 | SVG based theme for xfwm4. 5 | Created Sept. 2006 by Olivier Fourdan 6 | Modified Oct. 2006 by Olivier Fourdan 7 | Theme released under GNU GPL license. 8 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "24 6 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_1", 7 | "########################", 8 | "########################", 9 | "########################", 10 | "########################", 11 | "@@@@@@@@@@@@@@@@@@@@@@@@", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "24 6 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_1", 7 | "########################", 8 | "########################", 9 | "########################", 10 | "########################", 11 | "@@@@@@@@@@@@@@@@@@@@@@@@", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-left-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_active_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_1", 7 | "@@#### ", 8 | "@@#### ", 9 | "@@#### ", 10 | "@@#### ", 11 | "@@#### ", 12 | "@@#### ", 13 | "@@#### ", 14 | "@@#### ", 15 | "@@#### ", 16 | "@@#### ", 17 | "@@##############", 18 | "@@##############", 19 | "@@##############", 20 | "@@##############", 21 | "@@@@@@@@@@@@@@@@", 22 | " @@@@@@@@@@@@@@@"}; 23 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_inactive_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_1", 7 | "@@#### ", 8 | "@@#### ", 9 | "@@#### ", 10 | "@@#### ", 11 | "@@#### ", 12 | "@@#### ", 13 | "@@#### ", 14 | "@@#### ", 15 | "@@#### ", 16 | "@@#### ", 17 | "@@##############", 18 | "@@##############", 19 | "@@##############", 20 | "@@##############", 21 | "@@@@@@@@@@@@@@@@", 22 | " @@@@@@@@@@@@@@@"}; 23 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-right-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_active_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_1", 7 | " ####@@", 8 | " ####@@", 9 | " ####@@", 10 | " ####@@", 11 | " ####@@", 12 | " ####@@", 13 | " ####@@", 14 | " ####@@", 15 | " ####@@", 16 | " ####@@", 17 | "##############@@", 18 | "##############@@", 19 | "##############@@", 20 | "##############@@", 21 | "@@@@@@@@@@@@@@@@", 22 | "@@@@@@@@@@@@@@@ "}; 23 | -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_inactive_xpm[] = { 3 | "16 16 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_1", 7 | " ####@@", 8 | " ####@@", 9 | " ####@@", 10 | " ####@@", 11 | " ####@@", 12 | " ####@@", 13 | " ####@@", 14 | " ####@@", 15 | " ####@@", 16 | " ####@@", 17 | "##############@@", 18 | "##############@@", 19 | "##############@@", 20 | "##############@@", 21 | "@@@@@@@@@@@@@@@@", 22 | "@@@@@@@@@@@@@@@ "}; 23 | -------------------------------------------------------------------------------- /themes/kokodi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/close-active.png -------------------------------------------------------------------------------- /themes/kokodi/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/close-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/close-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/close-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/hide-active.png -------------------------------------------------------------------------------- /themes/kokodi/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/hide-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/hide-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/hide-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/left-active.png -------------------------------------------------------------------------------- /themes/kokodi/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_1", 7 | "@@####", 8 | "@@####", 9 | "@@####", 10 | "@@####", 11 | "@@####", 12 | "@@####", 13 | "@@####", 14 | "@@####", 15 | "@@####", 16 | "@@####", 17 | "@@####", 18 | "@@####", 19 | "@@####", 20 | "@@####", 21 | "@@####", 22 | "@@####", 23 | "@@####", 24 | "@@####", 25 | "@@####", 26 | "@@####", 27 | "@@####", 28 | "@@####", 29 | "@@####", 30 | "@@####"}; 31 | -------------------------------------------------------------------------------- /themes/kokodi/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/left-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_1", 7 | "@@####", 8 | "@@####", 9 | "@@####", 10 | "@@####", 11 | "@@####", 12 | "@@####", 13 | "@@####", 14 | "@@####", 15 | "@@####", 16 | "@@####", 17 | "@@####", 18 | "@@####", 19 | "@@####", 20 | "@@####", 21 | "@@####", 22 | "@@####", 23 | "@@####", 24 | "@@####", 25 | "@@####", 26 | "@@####", 27 | "@@####", 28 | "@@####", 29 | "@@####", 30 | "@@####"}; 31 | -------------------------------------------------------------------------------- /themes/kokodi/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-active.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/menu-active.png -------------------------------------------------------------------------------- /themes/kokodi/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/menu-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/menu-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/menu-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/right-active.png -------------------------------------------------------------------------------- /themes/kokodi/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s active_color_2", 6 | "@ c #C0C0FF s active_color_1", 7 | "####@@", 8 | "####@@", 9 | "####@@", 10 | "####@@", 11 | "####@@", 12 | "####@@", 13 | "####@@", 14 | "####@@", 15 | "####@@", 16 | "####@@", 17 | "####@@", 18 | "####@@", 19 | "####@@", 20 | "####@@", 21 | "####@@", 22 | "####@@", 23 | "####@@", 24 | "####@@", 25 | "####@@", 26 | "####@@", 27 | "####@@", 28 | "####@@", 29 | "####@@", 30 | "####@@"}; 31 | -------------------------------------------------------------------------------- /themes/kokodi/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/right-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "6 24 3 1", 4 | " c None", 5 | "# c #C0C0C0 s inactive_color_2", 6 | "@ c #C0C0FF s inactive_color_1", 7 | "####@@", 8 | "####@@", 9 | "####@@", 10 | "####@@", 11 | "####@@", 12 | "####@@", 13 | "####@@", 14 | "####@@", 15 | "####@@", 16 | "####@@", 17 | "####@@", 18 | "####@@", 19 | "####@@", 20 | "####@@", 21 | "####@@", 22 | "####@@", 23 | "####@@", 24 | "####@@", 25 | "####@@", 26 | "####@@", 27 | "####@@", 28 | "####@@", 29 | "####@@", 30 | "####@@"}; 31 | -------------------------------------------------------------------------------- /themes/kokodi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-active.png -------------------------------------------------------------------------------- /themes/kokodi/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/kokodi/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-active.png -------------------------------------------------------------------------------- /themes/kokodi/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/kokodi/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=#ffffff 2 | button_offset=0 3 | button_spacing=0 4 | full_width_title=false 5 | maximized_offset=0 6 | shadow_delta_height=8 7 | shadow_delta_width=2 8 | shadow_delta_x=2 9 | shadow_delta_y=0 10 | shadow_opacity=50 11 | show_app_icon=true 12 | title_horizontal_offset=1 13 | title_shadow_active=frame 14 | title_shadow_inactive=false 15 | title_vertical_offset_active=1 16 | title_vertical_offset_inactive=1 17 | -------------------------------------------------------------------------------- /themes/kokodi/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-1-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-1-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-2-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-2-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-3-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-3-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-4-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-4-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-5-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_active_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/title-5-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_inactive_xpm[] = { 3 | "4 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "....", 31 | "....", 32 | "....", 33 | "....", 34 | "...."}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/top-left-active.png -------------------------------------------------------------------------------- /themes/kokodi/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | " ......", 7 | " .......", 8 | "........", 9 | "........", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/top-left-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | " ......", 7 | " .......", 8 | "........", 9 | "........", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/top-right-active.png -------------------------------------------------------------------------------- /themes/kokodi/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s active_color_1", 6 | "...... ", 7 | "....... ", 8 | "........", 9 | "........", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/kokodi/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/kokodi/top-right-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #C0C0FF s inactive_color_1", 6 | "...... ", 7 | "....... ", 8 | "........", 9 | "........", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /themes/moheli/README: -------------------------------------------------------------------------------- 1 | moheli 2 | ------ 3 | 4 | An original theme for xfwm4. 5 | Created Apr. 2004 by Olivier Fourdan 6 | Modified May. 2005 by Olivier Fourdan 7 | Modified Mar. 2006 by Olivier Fourdan 8 | Theme released under GNU GPL license. 9 | -------------------------------------------------------------------------------- /themes/moheli/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "32 4 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s active_hilight_2", 6 | "@ c #A0A0A0 s active_shadow_2", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "################################", 10 | "################################", 11 | "################################", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/moheli/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-inactive.png -------------------------------------------------------------------------------- /themes/moheli/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "32 4 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s inactive_hilight_2", 6 | "@ c #A0A0A0 s inactive_shadow_2", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "################################", 10 | "################################", 11 | "################################", 12 | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; 13 | -------------------------------------------------------------------------------- /themes/moheli/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-left-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_active_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s active_hilight_2", 6 | "@ c #A0A0A0 s active_shadow_2", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "@### ", 10 | "@### ", 11 | "@### ", 12 | "@### ", 13 | "@### ", 14 | "@### ", 15 | "@### ", 16 | "@### ", 17 | "@### ", 18 | "@### ", 19 | "@### ", 20 | "@### ", 21 | "@###############", 22 | "@$##############", 23 | "@@$#############", 24 | " @@@@@@@@@@@@@@@"}; 25 | -------------------------------------------------------------------------------- /themes/moheli/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/moheli/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_inactive_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s inactive_hilight_2", 6 | "@ c #A0A0A0 s inactive_shadow_2", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "@### ", 10 | "@### ", 11 | "@### ", 12 | "@### ", 13 | "@### ", 14 | "@### ", 15 | "@### ", 16 | "@### ", 17 | "@### ", 18 | "@### ", 19 | "@### ", 20 | "@### ", 21 | "@###############", 22 | "@$##############", 23 | "@@$#############", 24 | " @@@@@@@@@@@@@@@"}; 25 | -------------------------------------------------------------------------------- /themes/moheli/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-right-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_active_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s active_hilight_2", 6 | "@ c #A0A0A0 s active_shadow_2", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | " ###@", 10 | " ###@", 11 | " ###@", 12 | " ###@", 13 | " ###@", 14 | " ###@", 15 | " ###@", 16 | " ###@", 17 | " ###@", 18 | " ###@", 19 | " ###@", 20 | " ###@", 21 | "###############@", 22 | "##############$@", 23 | "#############$@@", 24 | "@@@@@@@@@@@@@@@ "}; 25 | -------------------------------------------------------------------------------- /themes/moheli/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/moheli/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_inactive_xpm[] = { 3 | "16 16 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s inactive_hilight_2", 6 | "@ c #A0A0A0 s inactive_shadow_2", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | " ###@", 10 | " ###@", 11 | " ###@", 12 | " ###@", 13 | " ###@", 14 | " ###@", 15 | " ###@", 16 | " ###@", 17 | " ###@", 18 | " ###@", 19 | " ###@", 20 | " ###@", 21 | "###############@", 22 | "##############$@", 23 | "#############$@@", 24 | "@@@@@@@@@@@@@@@ "}; 25 | -------------------------------------------------------------------------------- /themes/moheli/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/close-active.png -------------------------------------------------------------------------------- /themes/moheli/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/close-inactive.png -------------------------------------------------------------------------------- /themes/moheli/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/close-pressed.png -------------------------------------------------------------------------------- /themes/moheli/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/hide-active.png -------------------------------------------------------------------------------- /themes/moheli/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/hide-inactive.png -------------------------------------------------------------------------------- /themes/moheli/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/hide-pressed.png -------------------------------------------------------------------------------- /themes/moheli/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/left-active.png -------------------------------------------------------------------------------- /themes/moheli/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "4 32 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s active_hilight_2", 6 | "@ c #A0A0A0 s active_shadow_2", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "@###", 10 | "@###", 11 | "@###", 12 | "@###", 13 | "@###", 14 | "@###", 15 | "@###", 16 | "@###", 17 | "@###", 18 | "@###", 19 | "@###", 20 | "@###", 21 | "@###", 22 | "@###", 23 | "@###", 24 | "@###", 25 | "@###", 26 | "@###", 27 | "@###", 28 | "@###", 29 | "@###", 30 | "@###", 31 | "@###", 32 | "@###", 33 | "@###", 34 | "@###", 35 | "@###", 36 | "@###", 37 | "@###", 38 | "@###", 39 | "@###", 40 | "@###"}; 41 | -------------------------------------------------------------------------------- /themes/moheli/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/left-inactive.png -------------------------------------------------------------------------------- /themes/moheli/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "4 32 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s inactive_hilight_2", 6 | "@ c #A0A0A0 s inactive_shadow_2", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "@###", 10 | "@###", 11 | "@###", 12 | "@###", 13 | "@###", 14 | "@###", 15 | "@###", 16 | "@###", 17 | "@###", 18 | "@###", 19 | "@###", 20 | "@###", 21 | "@###", 22 | "@###", 23 | "@###", 24 | "@###", 25 | "@###", 26 | "@###", 27 | "@###", 28 | "@###", 29 | "@###", 30 | "@###", 31 | "@###", 32 | "@###", 33 | "@###", 34 | "@###", 35 | "@###", 36 | "@###", 37 | "@###", 38 | "@###", 39 | "@###", 40 | "@###"}; 41 | -------------------------------------------------------------------------------- /themes/moheli/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-active.png -------------------------------------------------------------------------------- /themes/moheli/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-inactive.png -------------------------------------------------------------------------------- /themes/moheli/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-pressed.png -------------------------------------------------------------------------------- /themes/moheli/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/moheli/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /themes/moheli/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /themes/moheli/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/menu-active.png -------------------------------------------------------------------------------- /themes/moheli/menu-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_active_xpm[] = { 3 | "20 16 2 1", 4 | " c None", 5 | "@ c #C0C0C0 s active_color_2", 6 | " @@@@@@@@@@@@@@@@ ", 7 | " @@@@@@@@@@@@@@@@ ", 8 | " @@@@@@@@@@@@@@@@ ", 9 | " @@@@@@@@@@@@@@@@ ", 10 | " @@@@@@@@@@@@@@@@ ", 11 | " @@@@@@@@@@@@@@@@ ", 12 | " @@@@@@@@@@@@@@@@ ", 13 | " @@@@@@@@@@@@@@@@ ", 14 | " @@@@@@@@@@@@@@@@ ", 15 | " @@@@@@@@@@@@@@@@ ", 16 | " @@@@@@@@@@@@@@@@ ", 17 | " @@@@@@@@@@@@@@@@ ", 18 | " @@@@@@@@@@@@@@@@ ", 19 | " @@@@@@@@@@@@@@@@ ", 20 | " @@@@@@@@@@@@@@@@ ", 21 | " @@@@@@@@@@@@@@@@ "}; 22 | -------------------------------------------------------------------------------- /themes/moheli/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/menu-inactive.png -------------------------------------------------------------------------------- /themes/moheli/menu-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_inactive_xpm[] = { 3 | "20 16 2 1", 4 | " c None", 5 | "@ c #C0C0C0 s inactive_color_2", 6 | " @@@@@@@@@@@@@@@@ ", 7 | " @@@@@@@@@@@@@@@@ ", 8 | " @@@@@@@@@@@@@@@@ ", 9 | " @@@@@@@@@@@@@@@@ ", 10 | " @@@@@@@@@@@@@@@@ ", 11 | " @@@@@@@@@@@@@@@@ ", 12 | " @@@@@@@@@@@@@@@@ ", 13 | " @@@@@@@@@@@@@@@@ ", 14 | " @@@@@@@@@@@@@@@@ ", 15 | " @@@@@@@@@@@@@@@@ ", 16 | " @@@@@@@@@@@@@@@@ ", 17 | " @@@@@@@@@@@@@@@@ ", 18 | " @@@@@@@@@@@@@@@@ ", 19 | " @@@@@@@@@@@@@@@@ ", 20 | " @@@@@@@@@@@@@@@@ ", 21 | " @@@@@@@@@@@@@@@@ "}; 22 | -------------------------------------------------------------------------------- /themes/moheli/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/menu-pressed.png -------------------------------------------------------------------------------- /themes/moheli/menu-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_pressed_xpm[] = { 3 | "20 16 2 1", 4 | " c None", 5 | "@ c #C0C0C0 s active_color_2", 6 | " @@@@@@@@@@@@@@@@ ", 7 | " @@@@@@@@@@@@@@@@ ", 8 | " @@@@@@@@@@@@@@@@ ", 9 | " @@@@@@@@@@@@@@@@ ", 10 | " @@@@@@@@@@@@@@@@ ", 11 | " @@@@@@@@@@@@@@@@ ", 12 | " @@@@@@@@@@@@@@@@ ", 13 | " @@@@@@@@@@@@@@@@ ", 14 | " @@@@@@@@@@@@@@@@ ", 15 | " @@@@@@@@@@@@@@@@ ", 16 | " @@@@@@@@@@@@@@@@ ", 17 | " @@@@@@@@@@@@@@@@ ", 18 | " @@@@@@@@@@@@@@@@ ", 19 | " @@@@@@@@@@@@@@@@ ", 20 | " @@@@@@@@@@@@@@@@ ", 21 | " @@@@@@@@@@@@@@@@ "}; 22 | -------------------------------------------------------------------------------- /themes/moheli/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/right-active.png -------------------------------------------------------------------------------- /themes/moheli/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "4 32 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s active_hilight_2", 6 | "@ c #A0A0A0 s active_shadow_2", 7 | "$ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "###@", 10 | "###@", 11 | "###@", 12 | "###@", 13 | "###@", 14 | "###@", 15 | "###@", 16 | "###@", 17 | "###@", 18 | "###@", 19 | "###@", 20 | "###@", 21 | "###@", 22 | "###@", 23 | "###@", 24 | "###@", 25 | "###@", 26 | "###@", 27 | "###@", 28 | "###@", 29 | "###@", 30 | "###@", 31 | "###@", 32 | "###@", 33 | "###@", 34 | "###@", 35 | "###@", 36 | "###@", 37 | "###@", 38 | "###@", 39 | "###@", 40 | "###@"}; 41 | -------------------------------------------------------------------------------- /themes/moheli/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/right-inactive.png -------------------------------------------------------------------------------- /themes/moheli/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "4 32 5 1", 4 | " c None", 5 | "+ c #E0E0E0 s inactive_hilight_2", 6 | "@ c #A0A0A0 s inactive_shadow_2", 7 | "$ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "###@", 10 | "###@", 11 | "###@", 12 | "###@", 13 | "###@", 14 | "###@", 15 | "###@", 16 | "###@", 17 | "###@", 18 | "###@", 19 | "###@", 20 | "###@", 21 | "###@", 22 | "###@", 23 | "###@", 24 | "###@", 25 | "###@", 26 | "###@", 27 | "###@", 28 | "###@", 29 | "###@", 30 | "###@", 31 | "###@", 32 | "###@", 33 | "###@", 34 | "###@", 35 | "###@", 36 | "###@", 37 | "###@", 38 | "###@", 39 | "###@", 40 | "###@"}; 41 | -------------------------------------------------------------------------------- /themes/moheli/save-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/save-pressed.png -------------------------------------------------------------------------------- /themes/moheli/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-active.png -------------------------------------------------------------------------------- /themes/moheli/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-inactive.png -------------------------------------------------------------------------------- /themes/moheli/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-pressed.png -------------------------------------------------------------------------------- /themes/moheli/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/moheli/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/moheli/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/moheli/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-active.png -------------------------------------------------------------------------------- /themes/moheli/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-inactive.png -------------------------------------------------------------------------------- /themes/moheli/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-pressed.png -------------------------------------------------------------------------------- /themes/moheli/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/moheli/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/moheli/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/moheli/themerc: -------------------------------------------------------------------------------- 1 | active_text_color=#ffffff 2 | button_offset=0 3 | button_spacing=0 4 | full_width_title=true 5 | maximized_offset=2 6 | shadow_delta_height=4 7 | shadow_delta_width=1 8 | shadow_delta_x=1 9 | shadow_delta_y=1 10 | show_app_icon=true 11 | title_horizontal_offset=8 12 | title_shadow_active=frame 13 | title_vertical_offset_active=1 14 | title_vertical_offset_inactive=1 15 | -------------------------------------------------------------------------------- /themes/moheli/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-1-active.png -------------------------------------------------------------------------------- /themes/moheli/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_active_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #C0C0C0 s active_color_2", 8 | "# c #B0B0B0 s active_mid_2", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-1-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_inactive_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #C0C0C0 s inactive_color_2", 8 | "# c #B0B0B0 s inactive_mid_2", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-2-active.png -------------------------------------------------------------------------------- /themes/moheli/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_2_active_xpm[] = { 3 | "4 23 8 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #C0C0C0 s active_color_2", 8 | "# c #B0B0B0 s active_mid_2", 9 | "% c #C0C0FF s active_color_1", 10 | "& c #E0E0FF s active_hilight_1", 11 | "$ c #000000", 12 | "....", 13 | "+++&", 14 | "@@@%", 15 | "@@@%", 16 | "@@@%", 17 | "@@@%", 18 | "@@@%", 19 | "@@@%", 20 | "@@@%", 21 | "@@@%", 22 | "@@@%", 23 | "@@@%", 24 | "@@@%", 25 | "@@@%", 26 | "@@@%", 27 | "@@@%", 28 | "@@@%", 29 | "@@@%", 30 | "@@@%", 31 | "@@@%", 32 | "@@@%", 33 | "@@@%", 34 | "@@@@"}; 35 | -------------------------------------------------------------------------------- /themes/moheli/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-2-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_2_inactive_xpm[] = { 3 | "4 23 8 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #C0C0C0 s inactive_color_2", 8 | "# c #B0B0B0 s inactive_mid_2", 9 | "% c #C0C0FF s inactive_color_1", 10 | "& c #E0E0FF s inactive_hilight_1", 11 | "$ c #000000", 12 | "....", 13 | "+++&", 14 | "@@@%", 15 | "@@@%", 16 | "@@@%", 17 | "@@@%", 18 | "@@@%", 19 | "@@@%", 20 | "@@@%", 21 | "@@@%", 22 | "@@@%", 23 | "@@@%", 24 | "@@@%", 25 | "@@@%", 26 | "@@@%", 27 | "@@@%", 28 | "@@@%", 29 | "@@@%", 30 | "@@@%", 31 | "@@@%", 32 | "@@@%", 33 | "@@@%", 34 | "@@@@"}; 35 | -------------------------------------------------------------------------------- /themes/moheli/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-3-active.png -------------------------------------------------------------------------------- /themes/moheli/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_active_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0FF s active_shadow_1", 6 | "+ c #E0E0FF s active_hilight_1", 7 | "@ c #C0C0FF s active_color_1", 8 | "# c #B0B0FF s active_mid_1", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-3-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_inactive_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0FF s inactive_shadow_1", 6 | "+ c #E0E0FF s inactive_hilight_1", 7 | "@ c #C0C0FF s inactive_color_1", 8 | "# c #B0B0FF s inactive_mid_1", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-4-active.png -------------------------------------------------------------------------------- /themes/moheli/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_4_active_xpm[] = { 3 | "4 23 8 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #C0C0C0 s active_color_2", 8 | "# c #B0B0B0 s active_mid_2", 9 | "% c #C0C0FF s active_color_1", 10 | "& c #E0E0FF s active_hilight_1", 11 | "$ c #000000", 12 | "....", 13 | "&+++", 14 | "%@@@", 15 | "%@@@", 16 | "%@@@", 17 | "%@@@", 18 | "%@@@", 19 | "%@@@", 20 | "%@@@", 21 | "%@@@", 22 | "%@@@", 23 | "%@@@", 24 | "%@@@", 25 | "%@@@", 26 | "%@@@", 27 | "%@@@", 28 | "%@@@", 29 | "%@@@", 30 | "%@@@", 31 | "%@@@", 32 | "%@@@", 33 | "%@@@", 34 | "@@@@"}; 35 | -------------------------------------------------------------------------------- /themes/moheli/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-4-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_4_inactive_xpm[] = { 3 | "4 23 8 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #C0C0C0 s inactive_color_2", 8 | "# c #B0B0B0 s inactive_mid_2", 9 | "% c #C0C0FF s inactive_color_1", 10 | "& c #E0E0FF s inactive_hilight_1", 11 | "$ c #000000", 12 | "....", 13 | "&+++", 14 | "%@@@", 15 | "%@@@", 16 | "%@@@", 17 | "%@@@", 18 | "%@@@", 19 | "%@@@", 20 | "%@@@", 21 | "%@@@", 22 | "%@@@", 23 | "%@@@", 24 | "%@@@", 25 | "%@@@", 26 | "%@@@", 27 | "%@@@", 28 | "%@@@", 29 | "%@@@", 30 | "%@@@", 31 | "%@@@", 32 | "%@@@", 33 | "%@@@", 34 | "@@@@"}; 35 | -------------------------------------------------------------------------------- /themes/moheli/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-5-active.png -------------------------------------------------------------------------------- /themes/moheli/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_5_active_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #C0C0C0 s active_color_2", 8 | "# c #B0B0B0 s active_mid_2", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/title-5-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_5_inactive_xpm[] = { 3 | "4 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #C0C0C0 s inactive_color_2", 8 | "# c #B0B0B0 s inactive_mid_2", 9 | "$ c #000000", 10 | "....", 11 | "++++", 12 | "@@@@", 13 | "@@@@", 14 | "@@@@", 15 | "@@@@", 16 | "@@@@", 17 | "@@@@", 18 | "@@@@", 19 | "@@@@", 20 | "@@@@", 21 | "@@@@", 22 | "@@@@", 23 | "@@@@", 24 | "@@@@", 25 | "@@@@", 26 | "@@@@", 27 | "@@@@", 28 | "@@@@", 29 | "@@@@", 30 | "@@@@", 31 | "@@@@", 32 | "@@@@"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/top-left-active.png -------------------------------------------------------------------------------- /themes/moheli/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_active_xpm[] = { 3 | "7 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "$ c #000000", 10 | " ...", 11 | " ...@+", 12 | " ..@#+#", 13 | " .@####", 14 | "..#####", 15 | ".@#####", 16 | ".######", 17 | ".######", 18 | ".######", 19 | ".######", 20 | ".######", 21 | ".######", 22 | ".######", 23 | ".######", 24 | ".######", 25 | ".######", 26 | ".######", 27 | ".######", 28 | ".######", 29 | ".######", 30 | ".######", 31 | ".######", 32 | ".######"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/top-left-inactive.png -------------------------------------------------------------------------------- /themes/moheli/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "7 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "$ c #000000", 10 | " ...", 11 | " ...@+", 12 | " ..@#+#", 13 | " .@####", 14 | "..#####", 15 | ".@#####", 16 | ".######", 17 | ".######", 18 | ".######", 19 | ".######", 20 | ".######", 21 | ".######", 22 | ".######", 23 | ".######", 24 | ".######", 25 | ".######", 26 | ".######", 27 | ".######", 28 | ".######", 29 | ".######", 30 | ".######", 31 | ".######", 32 | ".######"}; 33 | -------------------------------------------------------------------------------- /themes/moheli/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/top-right-active.png -------------------------------------------------------------------------------- /themes/moheli/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_active_xpm[] = { 3 | "7 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s active_shadow_2", 6 | "+ c #E0E0E0 s active_hilight_2", 7 | "@ c #B0B0B0 s active_mid_2", 8 | "# c #C0C0C0 s active_color_2", 9 | "$ c #000000", 10 | "... ", 11 | "+@... ", 12 | "#+#@.. ", 13 | "####@. ", 14 | "#####..", 15 | "#####@.", 16 | "######.", 17 | "######.", 18 | "######.", 19 | "######.", 20 | "######.", 21 | "######.", 22 | "######.", 23 | "######.", 24 | "######.", 25 | "######.", 26 | "######.", 27 | "######.", 28 | "######.", 29 | "######.", 30 | "######.", 31 | "######.", 32 | "######."}; 33 | -------------------------------------------------------------------------------- /themes/moheli/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adlocode/xfwm4/1d21be9ffc0fa1cea91905a07d1446c5227745f4/themes/moheli/top-right-inactive.png -------------------------------------------------------------------------------- /themes/moheli/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "7 23 6 1", 4 | " c None", 5 | ". c #A0A0A0 s inactive_shadow_2", 6 | "+ c #E0E0E0 s inactive_hilight_2", 7 | "@ c #B0B0B0 s inactive_mid_2", 8 | "# c #C0C0C0 s inactive_color_2", 9 | "$ c #000000", 10 | "... ", 11 | "+@... ", 12 | "#+#@.. ", 13 | "####@. ", 14 | "#####..", 15 | "#####@.", 16 | "######.", 17 | "######.", 18 | "######.", 19 | "######.", 20 | "######.", 21 | "######.", 22 | "######.", 23 | "######.", 24 | "######.", 25 | "######.", 26 | "######.", 27 | "######.", 28 | "######.", 29 | "######.", 30 | "######.", 31 | "######.", 32 | "######."}; 33 | --------------------------------------------------------------------------------