├── .gitignore
├── .gitlab-ci.yml
├── AUTHORS
├── COMPOSITOR
├── COPYING
├── Makefile.am
├── NEWS
├── NOTES
├── README.md
├── TODO
├── autoclean.sh
├── autogen.sh
├── common
├── Makefile.am
├── meson.build
├── xfwm-common.c
└── xfwm-common.h
├── configure.ac
├── defaults
├── Makefile.am
├── defaults
└── meson.build
├── example.gtkrc-2.0
├── helper-dialog
├── Makefile.am
├── helper-dialog.c
└── meson.build
├── icons
├── 128x128
│ ├── Makefile.am
│ ├── org.xfce.workspaces.png
│ ├── org.xfce.workspaces.svg
│ ├── org.xfce.xfwm4-tweaks.png
│ ├── org.xfce.xfwm4-tweaks.svg
│ ├── org.xfce.xfwm4.png
│ └── org.xfce.xfwm4.svg
├── 16x16
│ ├── Makefile.am
│ ├── org.xfce.workspaces.png
│ ├── org.xfce.workspaces.svg
│ ├── org.xfce.xfwm4-tweaks.png
│ ├── org.xfce.xfwm4-tweaks.svg
│ ├── org.xfce.xfwm4.png
│ └── org.xfce.xfwm4.svg
├── 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
│ ├── org.xfce.workspaces.png
│ ├── org.xfce.workspaces.svg
│ ├── org.xfce.xfwm4-tweaks.png
│ ├── org.xfce.xfwm4-tweaks.svg
│ ├── org.xfce.xfwm4.png
│ ├── org.xfce.xfwm4.svg
│ └── xfwm4-default.png
├── Makefile.am
├── meson.build
└── scalable
│ ├── Makefile.am
│ ├── org.xfce.workspaces.svg
│ ├── org.xfce.xfwm4-tweaks.svg
│ ├── org.xfce.xfwm4.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
│ └── xfwm4-default.svg
├── meson.build
├── meson_options.txt
├── po
├── LINGUAS
├── Makevars
├── POTFILES.in
├── am.po
├── ar.po
├── ast.po
├── be.po
├── be@tarask.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
├── fa_IR.po
├── fi.po
├── fr.po
├── gl.po
├── he.po
├── hr.po
├── hu.po
├── hy_AM.po
├── hye.po
├── id.po
├── ie.po
├── is.po
├── it.po
├── ja.po
├── ka.po
├── kk.po
├── ko.po
├── ku.po
├── lt.po
├── lv.po
├── meson.build
├── 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
├── vec.po
├── vi.po
├── zh_CN.po
├── zh_HK.po
└── zh_TW.po
├── settings-dialogs
├── Makefile.am
├── meson.build
├── monitor-icon.svg
├── range-debouncer.c
├── range-debouncer.h
├── tweaks-settings.c
├── workspace-settings.c
├── 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
└── xfwm4.gresource.xml
├── 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
├── meson.build
├── 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
├── meson.build
└── 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
│ ├── 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
└── xfce-revision.h.in
/.gitlab-ci.yml:
--------------------------------------------------------------------------------
1 | include:
2 | - project: 'xfce/xfce4-dev-tools'
3 | file: '/ci/build_project.yml'
4 |
5 |
--------------------------------------------------------------------------------
/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 |
22 | EXTRA_DIST = \
23 | meson.build \
24 | $(NULL)
25 |
--------------------------------------------------------------------------------
/common/meson.build:
--------------------------------------------------------------------------------
1 | libxfwm_common = static_library(
2 | 'xfwm-common',
3 | [
4 | 'xfwm-common.c',
5 | 'xfwm-common.h',
6 | ],
7 | c_args: [
8 | '-DG_LOG_DOMAIN="@0@"'.format('libxfwm-common'),
9 | ],
10 | include_directories: [
11 | include_directories('..'),
12 | ],
13 | dependencies: [
14 | gtk,
15 | ],
16 | install: false,
17 | )
18 |
--------------------------------------------------------------------------------
/defaults/Makefile.am:
--------------------------------------------------------------------------------
1 | defaultsdir = $(pkgdatadir)
2 | defaults_DATA = defaults
3 |
4 | EXTRA_DIST = \
5 | $(defaults_DATA) \
6 | meson.build \
7 | $(NULL)
8 |
--------------------------------------------------------------------------------
/defaults/meson.build:
--------------------------------------------------------------------------------
1 | install_data(
2 | 'defaults',
3 | install_dir: pkgdatadir,
4 | )
5 |
--------------------------------------------------------------------------------
/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 | EXTRA_DIST = \
29 | meson.build \
30 | $(NULL)
31 |
--------------------------------------------------------------------------------
/helper-dialog/meson.build:
--------------------------------------------------------------------------------
1 | executable(
2 | 'helper-dialog',
3 | [
4 | 'helper-dialog.c',
5 | ],
6 | c_args: [
7 | '-DG_LOG_DOMAIN="@0@"'.format('xfwm-helper-dialog'),
8 | ],
9 | include_directories: [
10 | include_directories('..'),
11 | ],
12 | dependencies: [
13 | gtk,
14 | libxfce4util,
15 | libx11,
16 | ],
17 | install: true,
18 | install_dir: helper_path_prefix / 'xfce4' / 'xfwm4',
19 | )
20 |
--------------------------------------------------------------------------------
/icons/128x128/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsdir = $(datadir)/icons/hicolor/128x128/apps
2 | icons_DATA = \
3 | org.xfce.xfwm4-tweaks.png \
4 | org.xfce.workspaces.png \
5 | org.xfce.xfwm4.png
6 |
7 | EXTRA_DIST = $(icons_DATA)
8 |
--------------------------------------------------------------------------------
/icons/128x128/org.xfce.workspaces.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/128x128/org.xfce.workspaces.png
--------------------------------------------------------------------------------
/icons/128x128/org.xfce.xfwm4-tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/128x128/org.xfce.xfwm4-tweaks.png
--------------------------------------------------------------------------------
/icons/128x128/org.xfce.xfwm4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/128x128/org.xfce.xfwm4.png
--------------------------------------------------------------------------------
/icons/16x16/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsdir = $(datadir)/icons/hicolor/16x16/apps
2 | icons_DATA = \
3 | org.xfce.xfwm4-tweaks.png \
4 | org.xfce.workspaces.png \
5 | org.xfce.xfwm4.png
6 |
7 | EXTRA_DIST = $(icons_DATA)
8 |
--------------------------------------------------------------------------------
/icons/16x16/org.xfce.workspaces.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/16x16/org.xfce.workspaces.png
--------------------------------------------------------------------------------
/icons/16x16/org.xfce.xfwm4-tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/16x16/org.xfce.xfwm4-tweaks.png
--------------------------------------------------------------------------------
/icons/16x16/org.xfce.xfwm4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/16x16/org.xfce.xfwm4.png
--------------------------------------------------------------------------------
/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-close.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-maximize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-maximize.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-menu.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-minimize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-minimize.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-shade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-shade.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-stick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-stick.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-unmaximize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-unmaximize.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-unshade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-unshade.png
--------------------------------------------------------------------------------
/icons/22x22/xfce-wm-unstick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/22x22/xfce-wm-unstick.png
--------------------------------------------------------------------------------
/icons/48x48/Makefile.am:
--------------------------------------------------------------------------------
1 | iconsdir = $(datadir)/icons/hicolor/48x48/apps
2 | icons_DATA = \
3 | org.xfce.xfwm4-tweaks.png \
4 | org.xfce.workspaces.png \
5 | org.xfce.xfwm4.png \
6 | xfwm4-default.png
7 |
8 | EXTRA_DIST = $(icons_DATA)
9 |
--------------------------------------------------------------------------------
/icons/48x48/org.xfce.workspaces.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/48x48/org.xfce.workspaces.png
--------------------------------------------------------------------------------
/icons/48x48/org.xfce.xfwm4-tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/48x48/org.xfce.xfwm4-tweaks.png
--------------------------------------------------------------------------------
/icons/48x48/org.xfce.xfwm4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/48x48/org.xfce.xfwm4.png
--------------------------------------------------------------------------------
/icons/48x48/xfwm4-default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/icons/48x48/xfwm4-default.png
--------------------------------------------------------------------------------
/icons/Makefile.am:
--------------------------------------------------------------------------------
1 | SUBDIRS = \
2 | 16x16 \
3 | 22x22 \
4 | 48x48 \
5 | 128x128 \
6 | scalable
7 |
8 | EXTRA_DIST = \
9 | meson.build \
10 | $(NULL)
11 |
12 | # install-data-local:
13 | # @echo "Updating Gtk icon cache."
14 | # gtk-update-icon-cache -f -t $(datadir)/icons/hicolor/
15 |
--------------------------------------------------------------------------------
/icons/scalable/Makefile.am:
--------------------------------------------------------------------------------
1 | appiconsdir = $(datadir)/icons/hicolor/scalable/apps
2 | appicons_DATA = \
3 | org.xfce.xfwm4-tweaks.svg \
4 | org.xfce.workspaces.svg \
5 | org.xfce.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 |
--------------------------------------------------------------------------------
/po/LINGUAS:
--------------------------------------------------------------------------------
1 | # Generated by https://gitlab.xfce.org/infra/transifex
2 | am
3 | ar
4 | ast
5 | be
6 | be@tarask
7 | bg
8 | bn
9 | ca
10 | cs
11 | da
12 | de
13 | el
14 | en_AU
15 | en_CA
16 | en_GB
17 | eo
18 | es
19 | et
20 | eu
21 | fa_IR
22 | fi
23 | fr
24 | gl
25 | he
26 | hr
27 | hu
28 | hy_AM
29 | hye
30 | id
31 | ie
32 | is
33 | it
34 | ja
35 | ka
36 | kk
37 | ko
38 | ku
39 | lt
40 | lv
41 | ms
42 | nb
43 | nl
44 | nn
45 | oc
46 | pa
47 | pl
48 | pt_BR
49 | pt
50 | ro
51 | ru
52 | si
53 | sk
54 | sl
55 | sq
56 | sr
57 | sv
58 | te
59 | th
60 | tr
61 | ug
62 | uk
63 | ur_PK
64 | ur
65 | vec
66 | vi
67 | zh_CN
68 | zh_HK
69 | zh_TW
70 |
--------------------------------------------------------------------------------
/po/meson.build:
--------------------------------------------------------------------------------
1 | i18n.gettext(meson.project_name(), preset: 'glib')
2 |
--------------------------------------------------------------------------------
/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 | Keywords=windows;management;settings;preferences;themes;styles;decorations;title bar;font;buttons;menu;minimize;maximize;shade;roll up;layout;keyboard shortcuts;focus;snapping;screen;workspaces;edges;corner;hide content;move;resize;moving;resizing;double click;
6 | Exec=xfwm4-settings
7 | Icon=org.xfce.xfwm4
8 | Terminal=false
9 | Type=Application
10 | Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings;
11 | StartupNotify=true
12 | OnlyShowIn=XFCE;
13 | X-XfcePluggable=true
14 | X-XfceHelpComponent=xfwm4
15 | X-XfceHelpPage=preferences
16 |
--------------------------------------------------------------------------------
/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 | Keywords=workspaces;settings;preferences;virtual desktops;number;windows;screen;margins;
6 | Exec=xfwm4-workspace-settings
7 | Icon=org.xfce.workspaces
8 | Terminal=false
9 | Type=Application
10 | Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings;
11 | StartupNotify=true
12 | OnlyShowIn=XFCE;
13 | X-XfcePluggable=true
14 | X-XfceHelpComponent=xfwm4
15 | X-XfceHelpPage=workspaces
16 |
--------------------------------------------------------------------------------
/settings-dialogs/xfwm4.gresource.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | monitor-icon.svg
5 | xfwm4-dialog.glade
6 | xfwm4-tweaks-dialog.glade
7 | xfwm4-workspace-dialog.glade
8 |
9 |
10 |
--------------------------------------------------------------------------------
/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 | EXTRA_DIST = \
13 | meson.build \
14 | $(NULL)
15 |
--------------------------------------------------------------------------------
/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/daloa/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/daloa/maximize-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/maximize-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/daloa/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/daloa/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/daloa/shade-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/daloa/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/daloa/stick-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/stick-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/daloa/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/daloa/stick-toggled-pressed.png
--------------------------------------------------------------------------------
/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/bottom-left-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/bottom-left-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/bottom-left-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/bottom-right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/bottom-right-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/bottom-right-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/bottom-right-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/close-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/close-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/close-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/close-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/close-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/close-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/close-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/close-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/hide-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/hide-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/hide-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/hide-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/hide-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/hide-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/hide-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/hide-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/menu-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/menu-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/menu-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/menu-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/menu-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/menu-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/menu-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/shade-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-pressed.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/stick-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-hdpi/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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 | frame_border_top=6
8 | full_width_title=true
9 | maximized_offset=0
10 | show_app_icon=true
11 | shadow_delta_height=6
12 | shadow_delta_width=-5
13 | shadow_delta_x=-5
14 | shadow_delta_y=-8
15 | shadow_opacity=30
16 | title_horizontal_offset=1
17 | title_shadow_active=false
18 | title_shadow_inactive=false
19 | title_vertical_offset_active=1
20 | title_vertical_offset_inactive=1
21 |
--------------------------------------------------------------------------------
/themes/default-hdpi/title-1-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-1-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-1-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-1-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-2-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-2-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-2-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-2-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-3-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-3-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-3-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-3-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-4-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-4-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-4-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-4-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-5-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-5-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/title-5-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/title-5-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/top-left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/top-left-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/top-left-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/top-left-inactive.png
--------------------------------------------------------------------------------
/themes/default-hdpi/top-right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-hdpi/top-right-active.png
--------------------------------------------------------------------------------
/themes/default-hdpi/top-right-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/bottom-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/bottom-left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-left-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/bottom-left-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-left-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/bottom-right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-right-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/bottom-right-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/bottom-right-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/close-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/close-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/close-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/close-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/close-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/close-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/close-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/close-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/hide-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/hide-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/hide-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/hide-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/hide-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/hide-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/hide-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/hide-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/left-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/left-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/left-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/menu-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/menu-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/menu-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/menu-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/menu-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/menu-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/menu-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/right-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/right-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/right-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/shade-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-pressed.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-toggled-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/stick-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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 | frame_border_top=9
8 | full_width_title=true
9 | maximized_offset=0
10 | show_app_icon=true
11 | shadow_delta_height=8
12 | shadow_delta_width=-4
13 | shadow_delta_x=-4
14 | shadow_delta_y=-8
15 | shadow_opacity=30
16 | title_horizontal_offset=2
17 | title_shadow_active=false
18 | title_shadow_inactive=false
19 | title_vertical_offset_active=2
20 | title_vertical_offset_inactive=2
21 |
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-1-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-1-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-1-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-1-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-2-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-2-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-2-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-2-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-3-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-3-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-3-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-3-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-4-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-4-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-4-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-4-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-5-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-5-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/title-5-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/title-5-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/top-left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/top-left-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/top-left-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/top-left-inactive.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/top-right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default-xhdpi/top-right-active.png
--------------------------------------------------------------------------------
/themes/default-xhdpi/top-right-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/bottom-active.png
--------------------------------------------------------------------------------
/themes/default/bottom-active.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * bottom_active_xpm[] = {
3 | "24 5 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 |
--------------------------------------------------------------------------------
/themes/default/bottom-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/bottom-inactive.png
--------------------------------------------------------------------------------
/themes/default/bottom-inactive.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * bottom_inactive_xpm[] = {
3 | "24 5 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 |
--------------------------------------------------------------------------------
/themes/default/bottom-left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/close-active.png
--------------------------------------------------------------------------------
/themes/default/close-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/close-inactive.png
--------------------------------------------------------------------------------
/themes/default/close-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/close-prelight.png
--------------------------------------------------------------------------------
/themes/default/close-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/close-pressed.png
--------------------------------------------------------------------------------
/themes/default/hide-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/hide-active.png
--------------------------------------------------------------------------------
/themes/default/hide-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/hide-inactive.png
--------------------------------------------------------------------------------
/themes/default/hide-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/hide-prelight.png
--------------------------------------------------------------------------------
/themes/default/hide-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/hide-pressed.png
--------------------------------------------------------------------------------
/themes/default/left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/left-active.png
--------------------------------------------------------------------------------
/themes/default/left-active.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * left_active_xpm[] = {
3 | "5 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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/left-inactive.png
--------------------------------------------------------------------------------
/themes/default/left-inactive.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * left_inactive_xpm[] = {
3 | "5 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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-active.png
--------------------------------------------------------------------------------
/themes/default/maximize-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-inactive.png
--------------------------------------------------------------------------------
/themes/default/maximize-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-prelight.png
--------------------------------------------------------------------------------
/themes/default/maximize-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-pressed.png
--------------------------------------------------------------------------------
/themes/default/maximize-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/default/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default/maximize-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/menu-active.png
--------------------------------------------------------------------------------
/themes/default/menu-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/menu-inactive.png
--------------------------------------------------------------------------------
/themes/default/menu-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/menu-prelight.png
--------------------------------------------------------------------------------
/themes/default/menu-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/menu-pressed.png
--------------------------------------------------------------------------------
/themes/default/right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/right-active.png
--------------------------------------------------------------------------------
/themes/default/right-active.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * right_active_xpm[] = {
3 | "5 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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/right-inactive.png
--------------------------------------------------------------------------------
/themes/default/right-inactive.xpm:
--------------------------------------------------------------------------------
1 | /* XPM */
2 | static char * right_inactive_xpm[] = {
3 | "5 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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-active.png
--------------------------------------------------------------------------------
/themes/default/shade-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-inactive.png
--------------------------------------------------------------------------------
/themes/default/shade-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-prelight.png
--------------------------------------------------------------------------------
/themes/default/shade-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-pressed.png
--------------------------------------------------------------------------------
/themes/default/shade-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-toggled-active.png
--------------------------------------------------------------------------------
/themes/default/shade-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default/shade-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default/shade-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/default/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-active.png
--------------------------------------------------------------------------------
/themes/default/stick-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-inactive.png
--------------------------------------------------------------------------------
/themes/default/stick-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-prelight.png
--------------------------------------------------------------------------------
/themes/default/stick-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-pressed.png
--------------------------------------------------------------------------------
/themes/default/stick-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-toggled-active.png
--------------------------------------------------------------------------------
/themes/default/stick-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/default/stick-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/default/stick-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/default/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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=0
6 | button_spacing=2
7 | full_width_title=true
8 | frame_border_top=5
9 | maximized_offset=0
10 | show_app_icon=true
11 | shadow_delta_height=4
12 | shadow_delta_width=-6
13 | shadow_delta_x=-6
14 | shadow_delta_y=-8
15 | shadow_opacity=30
16 | title_horizontal_offset=1
17 | title_shadow_active=false
18 | title_shadow_inactive=false
19 | title_vertical_offset_active=1
20 | title_vertical_offset_inactive=1
21 |
--------------------------------------------------------------------------------
/themes/default/title-1-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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_mid_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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/close-active.png
--------------------------------------------------------------------------------
/themes/kokodi/close-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/close-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/close-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/close-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/close-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/close-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/hide-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/hide-active.png
--------------------------------------------------------------------------------
/themes/kokodi/hide-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/hide-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/hide-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/hide-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/hide-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/hide-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-active.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/menu-active.png
--------------------------------------------------------------------------------
/themes/kokodi/menu-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/menu-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/menu-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/menu-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/menu-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/menu-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/right-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-active.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-toggled-active.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/shade-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-active.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-pressed.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-toggled-active.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-toggled-prelight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/kokodi/stick-toggled-prelight.png
--------------------------------------------------------------------------------
/themes/kokodi/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/close-active.png
--------------------------------------------------------------------------------
/themes/moheli/close-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/close-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/close-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/close-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/hide-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/hide-active.png
--------------------------------------------------------------------------------
/themes/moheli/hide-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/hide-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/hide-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/hide-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/left-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-active.png
--------------------------------------------------------------------------------
/themes/moheli/maximize-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/maximize-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/maximize-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-toggled-active.png
--------------------------------------------------------------------------------
/themes/moheli/maximize-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/maximize-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/maximize-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/menu-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/shade-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-active.png
--------------------------------------------------------------------------------
/themes/moheli/shade-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/shade-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/shade-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-toggled-active.png
--------------------------------------------------------------------------------
/themes/moheli/shade-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/shade-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/shade-toggled-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/stick-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/stick-active.png
--------------------------------------------------------------------------------
/themes/moheli/stick-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/stick-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/stick-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/stick-pressed.png
--------------------------------------------------------------------------------
/themes/moheli/stick-toggled-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/stick-toggled-active.png
--------------------------------------------------------------------------------
/themes/moheli/stick-toggled-inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/themes/moheli/stick-toggled-inactive.png
--------------------------------------------------------------------------------
/themes/moheli/stick-toggled-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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/xfce-mirror/xfwm4/ba0842448d68002504608c101bdd8e3a09dcd8db/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 |
--------------------------------------------------------------------------------
/xfce-revision.h.in:
--------------------------------------------------------------------------------
1 | /*
2 | * The file xfce-revision.h is auto-generated and should not be modified
3 | * directly. Modify the xfce-revision.h.in file and re-run the build
4 | * instead.
5 | */
6 |
7 | #ifndef INC_XFCE_REVISION_H
8 | #define INC_XFCE_REVISION_H
9 |
10 | #define REVISION "@REVISION@"
11 |
12 | #define VERSION_FULL VERSION "-" REVISION
13 | #define PACKAGE_STRING_FULL PACKAGE " " VERSION_FULL
14 |
15 | #endif /* INC_XFCE_REVISION_H */
16 |
--------------------------------------------------------------------------------