├── .gitlab-ci.yml ├── AUTHORS ├── COMPOSITOR ├── COPYING ├── NEWS ├── NOTES ├── README.md ├── TODO ├── common ├── meson.build ├── xfwm-common.c └── xfwm-common.h ├── defaults ├── defaults └── meson.build ├── example.gtkrc-2.0 ├── helper-dialog ├── helper-dialog.c └── meson.build ├── icons ├── 128x128 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 ├── meson.build └── scalable │ ├── 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 ├── 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 ├── 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 ├── 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 ├── daloa │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/AUTHORS -------------------------------------------------------------------------------- /COMPOSITOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/COMPOSITOR -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/COPYING -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/NEWS -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/TODO -------------------------------------------------------------------------------- /common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/common/meson.build -------------------------------------------------------------------------------- /common/xfwm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/common/xfwm-common.c -------------------------------------------------------------------------------- /common/xfwm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/common/xfwm-common.h -------------------------------------------------------------------------------- /defaults/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/defaults/defaults -------------------------------------------------------------------------------- /defaults/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/defaults/meson.build -------------------------------------------------------------------------------- /example.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/example.gtkrc-2.0 -------------------------------------------------------------------------------- /helper-dialog/helper-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/helper-dialog/helper-dialog.c -------------------------------------------------------------------------------- /helper-dialog/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/helper-dialog/meson.build -------------------------------------------------------------------------------- /icons/128x128/org.xfce.workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.workspaces.png -------------------------------------------------------------------------------- /icons/128x128/org.xfce.workspaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.workspaces.svg -------------------------------------------------------------------------------- /icons/128x128/org.xfce.xfwm4-tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.xfwm4-tweaks.png -------------------------------------------------------------------------------- /icons/128x128/org.xfce.xfwm4-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.xfwm4-tweaks.svg -------------------------------------------------------------------------------- /icons/128x128/org.xfce.xfwm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.xfwm4.png -------------------------------------------------------------------------------- /icons/128x128/org.xfce.xfwm4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/128x128/org.xfce.xfwm4.svg -------------------------------------------------------------------------------- /icons/16x16/org.xfce.workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.workspaces.png -------------------------------------------------------------------------------- /icons/16x16/org.xfce.workspaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.workspaces.svg -------------------------------------------------------------------------------- /icons/16x16/org.xfce.xfwm4-tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.xfwm4-tweaks.png -------------------------------------------------------------------------------- /icons/16x16/org.xfce.xfwm4-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.xfwm4-tweaks.svg -------------------------------------------------------------------------------- /icons/16x16/org.xfce.xfwm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.xfwm4.png -------------------------------------------------------------------------------- /icons/16x16/org.xfce.xfwm4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/16x16/org.xfce.xfwm4.svg -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-close.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-maximize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-menu.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-minimize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-shade.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-stick.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unmaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-unmaximize.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-unshade.png -------------------------------------------------------------------------------- /icons/22x22/xfce-wm-unstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/22x22/xfce-wm-unstick.png -------------------------------------------------------------------------------- /icons/48x48/org.xfce.workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.workspaces.png -------------------------------------------------------------------------------- /icons/48x48/org.xfce.workspaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.workspaces.svg -------------------------------------------------------------------------------- /icons/48x48/org.xfce.xfwm4-tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.xfwm4-tweaks.png -------------------------------------------------------------------------------- /icons/48x48/org.xfce.xfwm4-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.xfwm4-tweaks.svg -------------------------------------------------------------------------------- /icons/48x48/org.xfce.xfwm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.xfwm4.png -------------------------------------------------------------------------------- /icons/48x48/org.xfce.xfwm4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/org.xfce.xfwm4.svg -------------------------------------------------------------------------------- /icons/48x48/xfwm4-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/48x48/xfwm4-default.png -------------------------------------------------------------------------------- /icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/meson.build -------------------------------------------------------------------------------- /icons/scalable/org.xfce.workspaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/org.xfce.workspaces.svg -------------------------------------------------------------------------------- /icons/scalable/org.xfce.xfwm4-tweaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/org.xfce.xfwm4-tweaks.svg -------------------------------------------------------------------------------- /icons/scalable/org.xfce.xfwm4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/org.xfce.xfwm4.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-close.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-maximize.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-menu.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-minimize.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-shade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-shade.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-stick.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-unmaximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-unmaximize.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-unshade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-unshade.svg -------------------------------------------------------------------------------- /icons/scalable/xfce-wm-unstick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfce-wm-unstick.svg -------------------------------------------------------------------------------- /icons/scalable/xfwm4-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/icons/scalable/xfwm4-default.svg -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/be.po -------------------------------------------------------------------------------- /po/be@tarask.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/be@tarask.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa_IR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/fa_IR.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy_AM.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/hy_AM.po -------------------------------------------------------------------------------- /po/hye.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/hye.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/ur_PK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/ur_PK.po -------------------------------------------------------------------------------- /po/vec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/vec.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /settings-dialogs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/meson.build -------------------------------------------------------------------------------- /settings-dialogs/monitor-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/monitor-icon.svg -------------------------------------------------------------------------------- /settings-dialogs/range-debouncer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/range-debouncer.c -------------------------------------------------------------------------------- /settings-dialogs/range-debouncer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/range-debouncer.h -------------------------------------------------------------------------------- /settings-dialogs/tweaks-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/tweaks-settings.c -------------------------------------------------------------------------------- /settings-dialogs/workspace-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/workspace-settings.c -------------------------------------------------------------------------------- /settings-dialogs/xfwm4-dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/xfwm4-dialog.glade -------------------------------------------------------------------------------- /settings-dialogs/xfwm4-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/xfwm4-settings.c -------------------------------------------------------------------------------- /settings-dialogs/xfwm4-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/xfwm4-settings.h -------------------------------------------------------------------------------- /settings-dialogs/xfwm4.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/settings-dialogs/xfwm4.gresource.xml -------------------------------------------------------------------------------- /src/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/.indent.pro -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/client.h -------------------------------------------------------------------------------- /src/compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/compositor.c -------------------------------------------------------------------------------- /src/compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/compositor.h -------------------------------------------------------------------------------- /src/cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/cycle.c -------------------------------------------------------------------------------- /src/cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/cycle.h -------------------------------------------------------------------------------- /src/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/device.c -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/device.h -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/display.c -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/display.h -------------------------------------------------------------------------------- /src/event_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/event_filter.c -------------------------------------------------------------------------------- /src/event_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/event_filter.h -------------------------------------------------------------------------------- /src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/events.c -------------------------------------------------------------------------------- /src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/events.h -------------------------------------------------------------------------------- /src/focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/focus.c -------------------------------------------------------------------------------- /src/focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/focus.h -------------------------------------------------------------------------------- /src/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/frame.c -------------------------------------------------------------------------------- /src/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/frame.h -------------------------------------------------------------------------------- /src/gen-color-table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/gen-color-table.pl -------------------------------------------------------------------------------- /src/hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/hints.c -------------------------------------------------------------------------------- /src/hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/hints.h -------------------------------------------------------------------------------- /src/icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/icons.c -------------------------------------------------------------------------------- /src/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/icons.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/main.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/moveresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/moveresize.c -------------------------------------------------------------------------------- /src/moveresize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/moveresize.h -------------------------------------------------------------------------------- /src/mypixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/mypixmap.c -------------------------------------------------------------------------------- /src/mypixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/mypixmap.h -------------------------------------------------------------------------------- /src/mywindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/mywindow.c -------------------------------------------------------------------------------- /src/mywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/mywindow.h -------------------------------------------------------------------------------- /src/netwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/netwm.c -------------------------------------------------------------------------------- /src/netwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/netwm.h -------------------------------------------------------------------------------- /src/parserc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/parserc.c -------------------------------------------------------------------------------- /src/parserc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/parserc.h -------------------------------------------------------------------------------- /src/placement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/placement.c -------------------------------------------------------------------------------- /src/placement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/placement.h -------------------------------------------------------------------------------- /src/poswin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/poswin.c -------------------------------------------------------------------------------- /src/poswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/poswin.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/session.c -------------------------------------------------------------------------------- /src/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/session.h -------------------------------------------------------------------------------- /src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/settings.c -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/spinning_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/spinning_cursor.c -------------------------------------------------------------------------------- /src/spinning_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/spinning_cursor.h -------------------------------------------------------------------------------- /src/stacking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/stacking.c -------------------------------------------------------------------------------- /src/stacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/stacking.h -------------------------------------------------------------------------------- /src/startup_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/startup_notification.c -------------------------------------------------------------------------------- /src/startup_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/startup_notification.h -------------------------------------------------------------------------------- /src/tabwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/tabwin.c -------------------------------------------------------------------------------- /src/tabwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/tabwin.h -------------------------------------------------------------------------------- /src/terminate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/terminate.c -------------------------------------------------------------------------------- /src/terminate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/terminate.h -------------------------------------------------------------------------------- /src/transients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/transients.c -------------------------------------------------------------------------------- /src/transients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/transients.h -------------------------------------------------------------------------------- /src/ui_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/ui_style.c -------------------------------------------------------------------------------- /src/ui_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/ui_style.h -------------------------------------------------------------------------------- /src/wireframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/wireframe.c -------------------------------------------------------------------------------- /src/wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/wireframe.h -------------------------------------------------------------------------------- /src/workspaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/workspaces.c -------------------------------------------------------------------------------- /src/workspaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/workspaces.h -------------------------------------------------------------------------------- /src/xpm-color-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/xpm-color-table.h -------------------------------------------------------------------------------- /src/xsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/xsync.c -------------------------------------------------------------------------------- /src/xsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/src/xsync.h -------------------------------------------------------------------------------- /themes/daloa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/README -------------------------------------------------------------------------------- /themes/daloa/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-active.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-active.xpm -------------------------------------------------------------------------------- /themes/daloa/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-active.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-active.xpm -------------------------------------------------------------------------------- /themes/daloa/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-active.png -------------------------------------------------------------------------------- /themes/daloa/bottom-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-active.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-active.xpm -------------------------------------------------------------------------------- /themes/daloa/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/bottom-right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-active.png -------------------------------------------------------------------------------- /themes/daloa/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-active.svg -------------------------------------------------------------------------------- /themes/daloa/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-active.xpm -------------------------------------------------------------------------------- /themes/daloa/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-inactive.png -------------------------------------------------------------------------------- /themes/daloa/close-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-prelight.png -------------------------------------------------------------------------------- /themes/daloa/close-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-pressed.png -------------------------------------------------------------------------------- /themes/daloa/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/close-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-active.png -------------------------------------------------------------------------------- /themes/daloa/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-active.svg -------------------------------------------------------------------------------- /themes/daloa/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-active.xpm -------------------------------------------------------------------------------- /themes/daloa/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-inactive.png -------------------------------------------------------------------------------- /themes/daloa/hide-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-prelight.png -------------------------------------------------------------------------------- /themes/daloa/hide-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-pressed.png -------------------------------------------------------------------------------- /themes/daloa/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-active.png -------------------------------------------------------------------------------- /themes/daloa/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-active.svg -------------------------------------------------------------------------------- /themes/daloa/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-active.xpm -------------------------------------------------------------------------------- /themes/daloa/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/left-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-active.png -------------------------------------------------------------------------------- /themes/daloa/maximize-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-active.svg -------------------------------------------------------------------------------- /themes/daloa/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-active.xpm -------------------------------------------------------------------------------- /themes/daloa/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-inactive.png -------------------------------------------------------------------------------- /themes/daloa/maximize-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-prelight.png -------------------------------------------------------------------------------- /themes/daloa/maximize-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-pressed.png -------------------------------------------------------------------------------- /themes/daloa/maximize-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-toggled-active.svg -------------------------------------------------------------------------------- /themes/daloa/maximize-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/maximize-toggled-active.xpm -------------------------------------------------------------------------------- /themes/daloa/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-active.png -------------------------------------------------------------------------------- /themes/daloa/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-active.svg -------------------------------------------------------------------------------- /themes/daloa/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-active.xpm -------------------------------------------------------------------------------- /themes/daloa/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-inactive.png -------------------------------------------------------------------------------- /themes/daloa/menu-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-prelight.png -------------------------------------------------------------------------------- /themes/daloa/menu-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-pressed.png -------------------------------------------------------------------------------- /themes/daloa/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-active.png -------------------------------------------------------------------------------- /themes/daloa/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-active.svg -------------------------------------------------------------------------------- /themes/daloa/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-active.xpm -------------------------------------------------------------------------------- /themes/daloa/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/right-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-active.png -------------------------------------------------------------------------------- /themes/daloa/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-active.svg -------------------------------------------------------------------------------- /themes/daloa/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-active.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-inactive.png -------------------------------------------------------------------------------- /themes/daloa/shade-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-prelight.png -------------------------------------------------------------------------------- /themes/daloa/shade-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/shade-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-pressed.png -------------------------------------------------------------------------------- /themes/daloa/shade-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-active.svg -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-active.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-inactive.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-prelight.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-pressed.png -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/shade-toggled-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/shade-toggled-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-active.png -------------------------------------------------------------------------------- /themes/daloa/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-active.svg -------------------------------------------------------------------------------- /themes/daloa/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-active.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-inactive.png -------------------------------------------------------------------------------- /themes/daloa/stick-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-prelight.png -------------------------------------------------------------------------------- /themes/daloa/stick-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/stick-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-pressed.png -------------------------------------------------------------------------------- /themes/daloa/stick-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-active.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-active.svg -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-active.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-inactive.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-prelight.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-prelight.svg -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-prelight.xpm -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-pressed.png -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-pressed.svg -------------------------------------------------------------------------------- /themes/daloa/stick-toggled-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/stick-toggled-pressed.xpm -------------------------------------------------------------------------------- /themes/daloa/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/themerc -------------------------------------------------------------------------------- /themes/daloa/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-active.png -------------------------------------------------------------------------------- /themes/daloa/title-1-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-active.svg -------------------------------------------------------------------------------- /themes/daloa/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-active.xpm -------------------------------------------------------------------------------- /themes/daloa/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-1-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-1-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-active.png -------------------------------------------------------------------------------- /themes/daloa/title-2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-active.svg -------------------------------------------------------------------------------- /themes/daloa/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-active.xpm -------------------------------------------------------------------------------- /themes/daloa/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-2-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-2-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-active.png -------------------------------------------------------------------------------- /themes/daloa/title-3-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-active.svg -------------------------------------------------------------------------------- /themes/daloa/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-active.xpm -------------------------------------------------------------------------------- /themes/daloa/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-3-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-3-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-active.png -------------------------------------------------------------------------------- /themes/daloa/title-4-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-active.svg -------------------------------------------------------------------------------- /themes/daloa/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-active.xpm -------------------------------------------------------------------------------- /themes/daloa/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-4-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-4-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-active.png -------------------------------------------------------------------------------- /themes/daloa/title-5-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-active.svg -------------------------------------------------------------------------------- /themes/daloa/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-active.xpm -------------------------------------------------------------------------------- /themes/daloa/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-inactive.png -------------------------------------------------------------------------------- /themes/daloa/title-5-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/title-5-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-active.png -------------------------------------------------------------------------------- /themes/daloa/top-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-active.svg -------------------------------------------------------------------------------- /themes/daloa/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-active.xpm -------------------------------------------------------------------------------- /themes/daloa/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-inactive.png -------------------------------------------------------------------------------- /themes/daloa/top-left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-left-inactive.xpm -------------------------------------------------------------------------------- /themes/daloa/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-active.png -------------------------------------------------------------------------------- /themes/daloa/top-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-active.svg -------------------------------------------------------------------------------- /themes/daloa/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-active.xpm -------------------------------------------------------------------------------- /themes/daloa/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-inactive.png -------------------------------------------------------------------------------- /themes/daloa/top-right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-inactive.svg -------------------------------------------------------------------------------- /themes/daloa/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/daloa/top-right-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/README -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/bottom-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-prelight.svg -------------------------------------------------------------------------------- /themes/default-hdpi/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-prelight.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/close-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-prelight.svg -------------------------------------------------------------------------------- /themes/default-hdpi/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-prelight.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/left-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/maximize-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-prelight.svg -------------------------------------------------------------------------------- /themes/default-hdpi/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-prelight.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/right-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-prelight.svg -------------------------------------------------------------------------------- /themes/default-hdpi/shade-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-prelight.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/shade-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/shade-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-prelight.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-prelight.svg -------------------------------------------------------------------------------- /themes/default-hdpi/stick-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-prelight.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-pressed.png -------------------------------------------------------------------------------- /themes/default-hdpi/stick-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-pressed.svg -------------------------------------------------------------------------------- /themes/default-hdpi/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/stick-pressed.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/themerc -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-1-inactive.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-active.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-active.svg -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-active.xpm -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-inactive.png -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-inactive.svg -------------------------------------------------------------------------------- /themes/default-hdpi/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-hdpi/title-2-inactive.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/README -------------------------------------------------------------------------------- /themes/default-xhdpi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/close-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/close-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/close-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-pressed.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/left-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/left-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/left-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-pressed.png -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-pressed.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/right-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/right-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/right-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/shade-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/shade-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/shade-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/stick-active.png -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/stick-active.svg -------------------------------------------------------------------------------- /themes/default-xhdpi/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/stick-active.xpm -------------------------------------------------------------------------------- /themes/default-xhdpi/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default-xhdpi/themerc -------------------------------------------------------------------------------- /themes/default/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/README -------------------------------------------------------------------------------- /themes/default/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-active.png -------------------------------------------------------------------------------- /themes/default/bottom-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-active.svg -------------------------------------------------------------------------------- /themes/default/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-active.xpm -------------------------------------------------------------------------------- /themes/default/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-inactive.png -------------------------------------------------------------------------------- /themes/default/bottom-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-inactive.svg -------------------------------------------------------------------------------- /themes/default/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-inactive.xpm -------------------------------------------------------------------------------- /themes/default/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-left-active.png -------------------------------------------------------------------------------- /themes/default/bottom-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-left-active.svg -------------------------------------------------------------------------------- /themes/default/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/bottom-left-active.xpm -------------------------------------------------------------------------------- /themes/default/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-active.png -------------------------------------------------------------------------------- /themes/default/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-active.svg -------------------------------------------------------------------------------- /themes/default/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-active.xpm -------------------------------------------------------------------------------- /themes/default/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-inactive.png -------------------------------------------------------------------------------- /themes/default/close-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-inactive.svg -------------------------------------------------------------------------------- /themes/default/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-inactive.xpm -------------------------------------------------------------------------------- /themes/default/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-prelight.png -------------------------------------------------------------------------------- /themes/default/close-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-prelight.svg -------------------------------------------------------------------------------- /themes/default/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-prelight.xpm -------------------------------------------------------------------------------- /themes/default/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-pressed.png -------------------------------------------------------------------------------- /themes/default/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-pressed.svg -------------------------------------------------------------------------------- /themes/default/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/close-pressed.xpm -------------------------------------------------------------------------------- /themes/default/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-active.png -------------------------------------------------------------------------------- /themes/default/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-active.svg -------------------------------------------------------------------------------- /themes/default/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-active.xpm -------------------------------------------------------------------------------- /themes/default/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-inactive.png -------------------------------------------------------------------------------- /themes/default/hide-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-inactive.svg -------------------------------------------------------------------------------- /themes/default/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-inactive.xpm -------------------------------------------------------------------------------- /themes/default/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-prelight.png -------------------------------------------------------------------------------- /themes/default/hide-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-prelight.svg -------------------------------------------------------------------------------- /themes/default/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-prelight.xpm -------------------------------------------------------------------------------- /themes/default/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-pressed.png -------------------------------------------------------------------------------- /themes/default/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-pressed.svg -------------------------------------------------------------------------------- /themes/default/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/default/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-active.png -------------------------------------------------------------------------------- /themes/default/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-active.svg -------------------------------------------------------------------------------- /themes/default/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-active.xpm -------------------------------------------------------------------------------- /themes/default/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-inactive.png -------------------------------------------------------------------------------- /themes/default/left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-inactive.svg -------------------------------------------------------------------------------- /themes/default/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/left-inactive.xpm -------------------------------------------------------------------------------- /themes/default/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-active.png -------------------------------------------------------------------------------- /themes/default/maximize-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-active.svg -------------------------------------------------------------------------------- /themes/default/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-active.xpm -------------------------------------------------------------------------------- /themes/default/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-inactive.png -------------------------------------------------------------------------------- /themes/default/maximize-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-inactive.svg -------------------------------------------------------------------------------- /themes/default/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-inactive.xpm -------------------------------------------------------------------------------- /themes/default/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-prelight.png -------------------------------------------------------------------------------- /themes/default/maximize-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-prelight.svg -------------------------------------------------------------------------------- /themes/default/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-prelight.xpm -------------------------------------------------------------------------------- /themes/default/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-pressed.png -------------------------------------------------------------------------------- /themes/default/maximize-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-pressed.svg -------------------------------------------------------------------------------- /themes/default/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/maximize-pressed.xpm -------------------------------------------------------------------------------- /themes/default/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-active.png -------------------------------------------------------------------------------- /themes/default/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-active.svg -------------------------------------------------------------------------------- /themes/default/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-active.xpm -------------------------------------------------------------------------------- /themes/default/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-inactive.png -------------------------------------------------------------------------------- /themes/default/menu-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-inactive.svg -------------------------------------------------------------------------------- /themes/default/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-inactive.xpm -------------------------------------------------------------------------------- /themes/default/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-prelight.png -------------------------------------------------------------------------------- /themes/default/menu-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-prelight.svg -------------------------------------------------------------------------------- /themes/default/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-prelight.xpm -------------------------------------------------------------------------------- /themes/default/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-pressed.png -------------------------------------------------------------------------------- /themes/default/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-pressed.svg -------------------------------------------------------------------------------- /themes/default/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/default/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-active.png -------------------------------------------------------------------------------- /themes/default/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-active.svg -------------------------------------------------------------------------------- /themes/default/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-active.xpm -------------------------------------------------------------------------------- /themes/default/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-inactive.png -------------------------------------------------------------------------------- /themes/default/right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-inactive.svg -------------------------------------------------------------------------------- /themes/default/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/right-inactive.xpm -------------------------------------------------------------------------------- /themes/default/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-active.png -------------------------------------------------------------------------------- /themes/default/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-active.svg -------------------------------------------------------------------------------- /themes/default/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-active.xpm -------------------------------------------------------------------------------- /themes/default/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-inactive.png -------------------------------------------------------------------------------- /themes/default/shade-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-inactive.svg -------------------------------------------------------------------------------- /themes/default/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-inactive.xpm -------------------------------------------------------------------------------- /themes/default/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-prelight.png -------------------------------------------------------------------------------- /themes/default/shade-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-prelight.svg -------------------------------------------------------------------------------- /themes/default/shade-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-prelight.xpm -------------------------------------------------------------------------------- /themes/default/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-pressed.png -------------------------------------------------------------------------------- /themes/default/shade-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-pressed.svg -------------------------------------------------------------------------------- /themes/default/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/shade-pressed.xpm -------------------------------------------------------------------------------- /themes/default/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-active.png -------------------------------------------------------------------------------- /themes/default/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-active.svg -------------------------------------------------------------------------------- /themes/default/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-active.xpm -------------------------------------------------------------------------------- /themes/default/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-inactive.png -------------------------------------------------------------------------------- /themes/default/stick-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-inactive.svg -------------------------------------------------------------------------------- /themes/default/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-inactive.xpm -------------------------------------------------------------------------------- /themes/default/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-prelight.png -------------------------------------------------------------------------------- /themes/default/stick-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-prelight.svg -------------------------------------------------------------------------------- /themes/default/stick-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-prelight.xpm -------------------------------------------------------------------------------- /themes/default/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-pressed.png -------------------------------------------------------------------------------- /themes/default/stick-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-pressed.svg -------------------------------------------------------------------------------- /themes/default/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/stick-pressed.xpm -------------------------------------------------------------------------------- /themes/default/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/themerc -------------------------------------------------------------------------------- /themes/default/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-active.png -------------------------------------------------------------------------------- /themes/default/title-1-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-active.svg -------------------------------------------------------------------------------- /themes/default/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-active.xpm -------------------------------------------------------------------------------- /themes/default/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-inactive.png -------------------------------------------------------------------------------- /themes/default/title-1-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-inactive.svg -------------------------------------------------------------------------------- /themes/default/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-1-inactive.xpm -------------------------------------------------------------------------------- /themes/default/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-active.png -------------------------------------------------------------------------------- /themes/default/title-2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-active.svg -------------------------------------------------------------------------------- /themes/default/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-active.xpm -------------------------------------------------------------------------------- /themes/default/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-inactive.png -------------------------------------------------------------------------------- /themes/default/title-2-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-inactive.svg -------------------------------------------------------------------------------- /themes/default/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-2-inactive.xpm -------------------------------------------------------------------------------- /themes/default/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-active.png -------------------------------------------------------------------------------- /themes/default/title-3-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-active.svg -------------------------------------------------------------------------------- /themes/default/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-active.xpm -------------------------------------------------------------------------------- /themes/default/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-inactive.png -------------------------------------------------------------------------------- /themes/default/title-3-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-inactive.svg -------------------------------------------------------------------------------- /themes/default/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-3-inactive.xpm -------------------------------------------------------------------------------- /themes/default/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-active.png -------------------------------------------------------------------------------- /themes/default/title-4-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-active.svg -------------------------------------------------------------------------------- /themes/default/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-active.xpm -------------------------------------------------------------------------------- /themes/default/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-inactive.png -------------------------------------------------------------------------------- /themes/default/title-4-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-inactive.svg -------------------------------------------------------------------------------- /themes/default/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-4-inactive.xpm -------------------------------------------------------------------------------- /themes/default/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-active.png -------------------------------------------------------------------------------- /themes/default/title-5-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-active.svg -------------------------------------------------------------------------------- /themes/default/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-active.xpm -------------------------------------------------------------------------------- /themes/default/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-inactive.png -------------------------------------------------------------------------------- /themes/default/title-5-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-inactive.svg -------------------------------------------------------------------------------- /themes/default/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/title-5-inactive.xpm -------------------------------------------------------------------------------- /themes/default/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-active.png -------------------------------------------------------------------------------- /themes/default/top-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-active.svg -------------------------------------------------------------------------------- /themes/default/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-active.xpm -------------------------------------------------------------------------------- /themes/default/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-inactive.png -------------------------------------------------------------------------------- /themes/default/top-left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-inactive.svg -------------------------------------------------------------------------------- /themes/default/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-left-inactive.xpm -------------------------------------------------------------------------------- /themes/default/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-active.png -------------------------------------------------------------------------------- /themes/default/top-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-active.svg -------------------------------------------------------------------------------- /themes/default/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-active.xpm -------------------------------------------------------------------------------- /themes/default/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-inactive.png -------------------------------------------------------------------------------- /themes/default/top-right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-inactive.svg -------------------------------------------------------------------------------- /themes/default/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/default/top-right-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/README -------------------------------------------------------------------------------- /themes/kokodi/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-active.svg -------------------------------------------------------------------------------- /themes/kokodi/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-left-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-left-active.svg -------------------------------------------------------------------------------- /themes/kokodi/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-left-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-right-active.png -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-right-active.svg -------------------------------------------------------------------------------- /themes/kokodi/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/bottom-right-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-active.png -------------------------------------------------------------------------------- /themes/kokodi/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-active.svg -------------------------------------------------------------------------------- /themes/kokodi/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/close-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/close-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/close-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-active.png -------------------------------------------------------------------------------- /themes/kokodi/hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-active.svg -------------------------------------------------------------------------------- /themes/kokodi/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/hide-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/hide-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/hide-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-active.png -------------------------------------------------------------------------------- /themes/kokodi/left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-active.svg -------------------------------------------------------------------------------- /themes/kokodi/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/left-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-active.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-active.svg -------------------------------------------------------------------------------- /themes/kokodi/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/maximize-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/maximize-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-active.png -------------------------------------------------------------------------------- /themes/kokodi/menu-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-active.svg -------------------------------------------------------------------------------- /themes/kokodi/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/menu-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/menu-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/menu-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-active.png -------------------------------------------------------------------------------- /themes/kokodi/right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-active.svg -------------------------------------------------------------------------------- /themes/kokodi/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/right-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-active.png -------------------------------------------------------------------------------- /themes/kokodi/shade-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-active.svg -------------------------------------------------------------------------------- /themes/kokodi/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/shade-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/shade-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/shade-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/shade-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/shade-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-active.png -------------------------------------------------------------------------------- /themes/kokodi/stick-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-active.svg -------------------------------------------------------------------------------- /themes/kokodi/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/stick-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-prelight.png -------------------------------------------------------------------------------- /themes/kokodi/stick-prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-prelight.svg -------------------------------------------------------------------------------- /themes/kokodi/stick-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-prelight.xpm -------------------------------------------------------------------------------- /themes/kokodi/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-pressed.png -------------------------------------------------------------------------------- /themes/kokodi/stick-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-pressed.svg -------------------------------------------------------------------------------- /themes/kokodi/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/stick-pressed.xpm -------------------------------------------------------------------------------- /themes/kokodi/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/themerc -------------------------------------------------------------------------------- /themes/kokodi/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-1-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-active.svg -------------------------------------------------------------------------------- /themes/kokodi/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-1-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-1-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-active.svg -------------------------------------------------------------------------------- /themes/kokodi/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-2-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-2-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-3-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-active.svg -------------------------------------------------------------------------------- /themes/kokodi/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-3-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-3-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-4-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-active.svg -------------------------------------------------------------------------------- /themes/kokodi/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-4-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-4-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-active.png -------------------------------------------------------------------------------- /themes/kokodi/title-5-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-active.svg -------------------------------------------------------------------------------- /themes/kokodi/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/title-5-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/title-5-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-active.png -------------------------------------------------------------------------------- /themes/kokodi/top-left-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-active.svg -------------------------------------------------------------------------------- /themes/kokodi/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/top-left-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-left-inactive.xpm -------------------------------------------------------------------------------- /themes/kokodi/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-active.png -------------------------------------------------------------------------------- /themes/kokodi/top-right-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-active.svg -------------------------------------------------------------------------------- /themes/kokodi/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-active.xpm -------------------------------------------------------------------------------- /themes/kokodi/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-inactive.png -------------------------------------------------------------------------------- /themes/kokodi/top-right-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-inactive.svg -------------------------------------------------------------------------------- /themes/kokodi/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/kokodi/top-right-inactive.xpm -------------------------------------------------------------------------------- /themes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/meson.build -------------------------------------------------------------------------------- /themes/moheli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/README -------------------------------------------------------------------------------- /themes/moheli/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-active.xpm -------------------------------------------------------------------------------- /themes/moheli/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-inactive.png -------------------------------------------------------------------------------- /themes/moheli/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-left-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-left-active.xpm -------------------------------------------------------------------------------- /themes/moheli/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-right-active.png -------------------------------------------------------------------------------- /themes/moheli/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/bottom-right-active.xpm -------------------------------------------------------------------------------- /themes/moheli/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-active.png -------------------------------------------------------------------------------- /themes/moheli/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-active.xpm -------------------------------------------------------------------------------- /themes/moheli/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-inactive.png -------------------------------------------------------------------------------- /themes/moheli/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-pressed.png -------------------------------------------------------------------------------- /themes/moheli/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/close-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-active.png -------------------------------------------------------------------------------- /themes/moheli/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-active.xpm -------------------------------------------------------------------------------- /themes/moheli/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-inactive.png -------------------------------------------------------------------------------- /themes/moheli/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-pressed.png -------------------------------------------------------------------------------- /themes/moheli/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/hide-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/left-active.png -------------------------------------------------------------------------------- /themes/moheli/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/left-active.xpm -------------------------------------------------------------------------------- /themes/moheli/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/left-inactive.png -------------------------------------------------------------------------------- /themes/moheli/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/left-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-active.png -------------------------------------------------------------------------------- /themes/moheli/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-active.xpm -------------------------------------------------------------------------------- /themes/moheli/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-inactive.png -------------------------------------------------------------------------------- /themes/moheli/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-pressed.png -------------------------------------------------------------------------------- /themes/moheli/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/maximize-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-active.png -------------------------------------------------------------------------------- /themes/moheli/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-active.xpm -------------------------------------------------------------------------------- /themes/moheli/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-inactive.png -------------------------------------------------------------------------------- /themes/moheli/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-pressed.png -------------------------------------------------------------------------------- /themes/moheli/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/menu-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/right-active.png -------------------------------------------------------------------------------- /themes/moheli/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/right-active.xpm -------------------------------------------------------------------------------- /themes/moheli/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/right-inactive.png -------------------------------------------------------------------------------- /themes/moheli/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/right-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-active.png -------------------------------------------------------------------------------- /themes/moheli/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-active.xpm -------------------------------------------------------------------------------- /themes/moheli/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-inactive.png -------------------------------------------------------------------------------- /themes/moheli/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-pressed.png -------------------------------------------------------------------------------- /themes/moheli/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/shade-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-active.png -------------------------------------------------------------------------------- /themes/moheli/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-active.xpm -------------------------------------------------------------------------------- /themes/moheli/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-inactive.png -------------------------------------------------------------------------------- /themes/moheli/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-pressed.png -------------------------------------------------------------------------------- /themes/moheli/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/stick-pressed.xpm -------------------------------------------------------------------------------- /themes/moheli/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/themerc -------------------------------------------------------------------------------- /themes/moheli/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-1-active.png -------------------------------------------------------------------------------- /themes/moheli/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-1-active.xpm -------------------------------------------------------------------------------- /themes/moheli/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-1-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-1-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-2-active.png -------------------------------------------------------------------------------- /themes/moheli/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-2-active.xpm -------------------------------------------------------------------------------- /themes/moheli/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-2-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-2-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-3-active.png -------------------------------------------------------------------------------- /themes/moheli/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-3-active.xpm -------------------------------------------------------------------------------- /themes/moheli/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-3-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-3-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-4-active.png -------------------------------------------------------------------------------- /themes/moheli/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-4-active.xpm -------------------------------------------------------------------------------- /themes/moheli/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-4-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-4-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-5-active.png -------------------------------------------------------------------------------- /themes/moheli/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-5-active.xpm -------------------------------------------------------------------------------- /themes/moheli/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-5-inactive.png -------------------------------------------------------------------------------- /themes/moheli/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/title-5-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-left-active.png -------------------------------------------------------------------------------- /themes/moheli/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-left-active.xpm -------------------------------------------------------------------------------- /themes/moheli/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-left-inactive.png -------------------------------------------------------------------------------- /themes/moheli/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-left-inactive.xpm -------------------------------------------------------------------------------- /themes/moheli/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-right-active.png -------------------------------------------------------------------------------- /themes/moheli/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-right-active.xpm -------------------------------------------------------------------------------- /themes/moheli/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-right-inactive.png -------------------------------------------------------------------------------- /themes/moheli/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/themes/moheli/top-right-inactive.xpm -------------------------------------------------------------------------------- /xfce-revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfce-mirror/xfwm4/HEAD/xfce-revision.h.in --------------------------------------------------------------------------------