├── README.md ├── git-v1.sh ├── installation ├── 020-install-fastest-arch-mirrors-for-Belgium-v1.sh ├── 020-install-fastest-arch-mirrors-v1.sh ├── 030-install-xorg-ati.sh ├── 030-install-xorg-intel.sh ├── 030-install-xorg-nvidia.sh ├── 030-install-xorg-virtualbox.sh ├── 040-install-packer-for-aur-make-build-v1.sh ├── 050-install-xfce-core-v1.sh ├── 100-install-core-software-v1.sh ├── 110-install-printers-v1.sh ├── 120-install-sound-v1.sh ├── 130-install-network-v1.sh ├── 200-install-extra-software-v1.sh ├── 300-install-themes-icons-cursors-conky-v1.sh ├── 400-install-software-distro-specific-v1.sh ├── 500-install-samba-v1.sh ├── 600-install-personal-settings-v3.sh ├── 700-firefox-for-dark-themes-settings-v1.sh ├── Arc Colora │ ├── Arc-Blue │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── gnome-shell.css │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Bluer │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── gnome-shell.css │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Blue │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── dark-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Bluer │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── dark-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── assets-dark │ │ │ │ │ ├── arrow-down-insens.png │ │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ │ ├── arrow-down-small.png │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ ├── arrow-left-insens.png │ │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ ├── arrow-right-insens.png │ │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ ├── arrow-up-insens.png │ │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ │ ├── arrow-up-small.png │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ ├── button-active.png │ │ │ │ │ ├── button-hover.png │ │ │ │ │ ├── button-insensitive.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ │ ├── checkbox-checked.png │ │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ │ ├── combo-entry-button.png │ │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ │ ├── combo-entry-focus.png │ │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ │ ├── combo-entry.png │ │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ │ ├── down-background-disable.png │ │ │ │ │ ├── down-background-rtl.png │ │ │ │ │ ├── down-background.png │ │ │ │ │ ├── entry-active-bg.png │ │ │ │ │ ├── entry-active-notebook.png │ │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ │ ├── entry-background-disabled.png │ │ │ │ │ ├── entry-background.png │ │ │ │ │ ├── entry-bg.png │ │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ │ ├── entry-border-bg.png │ │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ │ ├── entry-notebook.png │ │ │ │ │ ├── entry-toolbar.png │ │ │ │ │ ├── focus-line.png │ │ │ │ │ ├── frame-gap-end.png │ │ │ │ │ ├── frame-gap-start.png │ │ │ │ │ ├── frame.png │ │ │ │ │ ├── handle-h.png │ │ │ │ │ ├── handle-v.png │ │ │ │ │ ├── inline-toolbar.png │ │ │ │ │ ├── line-h.png │ │ │ │ │ ├── line-v.png │ │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ │ ├── menu-arrow.png │ │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ │ ├── menu-radio-checked.png │ │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ │ ├── menubar.png │ │ │ │ │ ├── menubar_button.png │ │ │ │ │ ├── menuitem.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ │ ├── notebook.png │ │ │ │ │ ├── null.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── progressbar.png │ │ │ │ │ ├── progressbar_v.png │ │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ │ ├── radio-checked.png │ │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ │ ├── radio-unchecked.png │ │ │ │ │ ├── slider-horiz-active.png │ │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ │ ├── slider-horiz.png │ │ │ │ │ ├── slider-insensitive.png │ │ │ │ │ ├── slider-prelight.png │ │ │ │ │ ├── slider-vert-active.png │ │ │ │ │ ├── slider-vert-insens.png │ │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ │ ├── slider-vert.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── tab-bottom-active.png │ │ │ │ │ ├── tab-left-active.png │ │ │ │ │ ├── tab-right-active.png │ │ │ │ │ ├── tab-top-active.png │ │ │ │ │ ├── toolbar.png │ │ │ │ │ ├── tree_header.png │ │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ │ ├── trough-horizontal.png │ │ │ │ │ ├── trough-progressbar.png │ │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ │ ├── trough-vertical-active.png │ │ │ │ │ ├── trough-vertical.png │ │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ │ ├── up-background-disable.png │ │ │ │ │ ├── up-background-rtl.png │ │ │ │ │ └── up-background.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Dim-Gray │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ ├── window-list-active-left.svg │ │ │ │ │ ├── window-list-active-right.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── button-box.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Orange-Red │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ ├── window-list-active-left.svg │ │ │ │ │ ├── window-list-active-right.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── button-box.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Red │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── dark-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── assets-dark │ │ │ │ │ ├── arrow-down-insens.png │ │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ │ ├── arrow-down-small.png │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ ├── arrow-left-insens.png │ │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ ├── arrow-right-insens.png │ │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ ├── arrow-up-insens.png │ │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ │ ├── arrow-up-small.png │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ ├── button-active.png │ │ │ │ │ ├── button-hover.png │ │ │ │ │ ├── button-insensitive.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ │ ├── checkbox-checked.png │ │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ │ ├── combo-entry-button.png │ │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ │ ├── combo-entry-focus.png │ │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ │ ├── combo-entry.png │ │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ │ ├── down-background-disable.png │ │ │ │ │ ├── down-background-rtl.png │ │ │ │ │ ├── down-background.png │ │ │ │ │ ├── entry-active-bg.png │ │ │ │ │ ├── entry-active-notebook.png │ │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ │ ├── entry-background-disabled.png │ │ │ │ │ ├── entry-background.png │ │ │ │ │ ├── entry-bg.png │ │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ │ ├── entry-border-bg.png │ │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ │ ├── entry-notebook.png │ │ │ │ │ ├── entry-toolbar.png │ │ │ │ │ ├── focus-line.png │ │ │ │ │ ├── frame-gap-end.png │ │ │ │ │ ├── frame-gap-start.png │ │ │ │ │ ├── frame.png │ │ │ │ │ ├── handle-h.png │ │ │ │ │ ├── handle-v.png │ │ │ │ │ ├── inline-toolbar.png │ │ │ │ │ ├── line-h.png │ │ │ │ │ ├── line-v.png │ │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ │ ├── menu-arrow.png │ │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ │ ├── menu-radio-checked.png │ │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ │ ├── menubar.png │ │ │ │ │ ├── menubar_button.png │ │ │ │ │ ├── menuitem.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ │ ├── notebook.png │ │ │ │ │ ├── null.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── progressbar.png │ │ │ │ │ ├── progressbar_v.png │ │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ │ ├── radio-checked.png │ │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ │ ├── radio-unchecked.png │ │ │ │ │ ├── slider-horiz-active.png │ │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ │ ├── slider-horiz.png │ │ │ │ │ ├── slider-insensitive.png │ │ │ │ │ ├── slider-prelight.png │ │ │ │ │ ├── slider-vert-active.png │ │ │ │ │ ├── slider-vert-insens.png │ │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ │ ├── slider-vert.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── tab-bottom-active.png │ │ │ │ │ ├── tab-left-active.png │ │ │ │ │ ├── tab-right-active.png │ │ │ │ │ ├── tab-top-active.png │ │ │ │ │ ├── toolbar.png │ │ │ │ │ ├── tree_header.png │ │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ │ ├── trough-horizontal.png │ │ │ │ │ ├── trough-progressbar.png │ │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ │ ├── trough-vertical-active.png │ │ │ │ │ ├── trough-vertical.png │ │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ │ ├── up-background-disable.png │ │ │ │ │ ├── up-background-rtl.png │ │ │ │ │ └── up-background.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dark-Tacao │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ ├── window-list-active-left.svg │ │ │ │ │ ├── window-list-active-right.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── button-box.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── dark-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── submenu-open.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── message-active.svg │ │ │ │ │ ├── message-close-active.svg │ │ │ │ │ ├── message-close-hover.svg │ │ │ │ │ ├── message-close.svg │ │ │ │ │ ├── message-hover.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Blue │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Bluer │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Dim-Gray │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Orange-Red │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Red │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Darker-Tacao │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Dim-Gray │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ ├── window-list-active-left.svg │ │ │ │ │ ├── window-list-active-right.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── light-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── button-box.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── gnome-shell.css │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Orange-Red │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-left.svg │ │ │ │ │ ├── panel-right.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ ├── window-list-active-left.svg │ │ │ │ │ ├── window-list-active-right.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── light-assets │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ │ ├── checkbox-checked.svg │ │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu.svg │ │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ │ ├── button-box.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ └── switch-on.svg │ │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── gnome-shell.css │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ │ ├── combo-entry-border-focus.png │ │ │ │ ├── combo-entry-border-rtl.png │ │ │ │ ├── combo-entry-border.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ ├── gtk.css │ │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ ├── min-icon.svg │ │ │ └── thumbnail.png │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ ├── Arc-Red │ │ ├── cinnamon │ │ │ ├── cinnamon.css │ │ │ ├── common-assets │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── add-workspace-active.svg │ │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ │ ├── add-workspace.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple.svg │ │ │ │ │ ├── desklet-header.svg │ │ │ │ │ ├── desklet.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── overview-hover.png │ │ │ │ │ ├── overview.png │ │ │ │ │ └── trash-icon.svg │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-bottom.svg │ │ │ │ │ ├── panel-top.svg │ │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ │ └── window-list-active-top.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell │ │ │ ├── common-assets │ │ │ │ ├── dash │ │ │ │ │ ├── dash-left.svg │ │ │ │ │ ├── dash-placeholder.svg │ │ │ │ │ ├── dash-right.svg │ │ │ │ │ ├── running1.svg │ │ │ │ │ ├── running2.svg │ │ │ │ │ ├── running3.svg │ │ │ │ │ └── running4.svg │ │ │ │ ├── menu │ │ │ │ │ ├── menu-hover.svg │ │ │ │ │ └── menu-separator.svg │ │ │ │ ├── misc │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── close-active.svg │ │ │ │ │ ├── close-hover.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ │ ├── more-results.svg │ │ │ │ │ ├── osd.svg │ │ │ │ │ ├── page-indicator-active.svg │ │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ │ ├── process-working.svg │ │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ │ └── ws-switch-arrow-up.png │ │ │ │ ├── panel │ │ │ │ │ ├── activities-active.svg │ │ │ │ │ ├── activities.svg │ │ │ │ │ ├── panel-overview.svg │ │ │ │ │ └── panel.svg │ │ │ │ └── switch │ │ │ │ │ ├── switch-off-selected.svg │ │ │ │ │ └── switch-on-selected.svg │ │ │ ├── gnome-shell.css │ │ │ └── light-assets │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ │ ├── apps.rc │ │ │ ├── assets │ │ │ │ ├── arrow-down-insens.png │ │ │ │ ├── arrow-down-prelight.png │ │ │ │ ├── arrow-down-small-insens.png │ │ │ │ ├── arrow-down-small-prelight.png │ │ │ │ ├── arrow-down-small.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-insens.png │ │ │ │ ├── arrow-left-prelight.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-insens.png │ │ │ │ ├── arrow-right-prelight.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-insens.png │ │ │ │ ├── arrow-up-prelight.png │ │ │ │ ├── arrow-up-small-insens.png │ │ │ │ ├── arrow-up-small-prelight.png │ │ │ │ ├── arrow-up-small.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ │ ├── combo-entry-button-active.png │ │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ │ ├── combo-entry-button-insensitive.png │ │ │ │ ├── combo-entry-button-rtl.png │ │ │ │ ├── combo-entry-button.png │ │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ │ ├── combo-entry-focus-notebook.png │ │ │ │ ├── combo-entry-focus-rtl.png │ │ │ │ ├── combo-entry-focus.png │ │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ │ ├── combo-entry-insensitive.png │ │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ │ ├── combo-entry-notebook.png │ │ │ │ ├── combo-entry-rtl.png │ │ │ │ ├── combo-entry.png │ │ │ │ ├── down-background-disable-rtl.png │ │ │ │ ├── down-background-disable.png │ │ │ │ ├── down-background-rtl.png │ │ │ │ ├── down-background.png │ │ │ │ ├── entry-active-bg.png │ │ │ │ ├── entry-active-notebook.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-background-disabled.png │ │ │ │ ├── entry-background.png │ │ │ │ ├── entry-bg.png │ │ │ │ ├── entry-border-active-bg.png │ │ │ │ ├── entry-border-bg.png │ │ │ │ ├── entry-disabled-bg.png │ │ │ │ ├── entry-disabled-notebook.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-notebook.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── focus-line.png │ │ │ │ ├── frame-gap-end.png │ │ │ │ ├── frame-gap-start.png │ │ │ │ ├── frame.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── inline-toolbar.png │ │ │ │ ├── line-h.png │ │ │ │ ├── line-v.png │ │ │ │ ├── menu-arrow-prelight.png │ │ │ │ ├── menu-arrow.png │ │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ │ ├── menu-checkbox-checked.png │ │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ │ ├── menu-checkbox-unchecked.png │ │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ │ ├── menu-radio-checked-selected.png │ │ │ │ ├── menu-radio-checked.png │ │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ │ ├── menu-radio-unchecked.png │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button.png │ │ │ │ ├── menuitem.png │ │ │ │ ├── minus.png │ │ │ │ ├── notebook-gap-horiz.png │ │ │ │ ├── notebook-gap-vert.png │ │ │ │ ├── notebook.png │ │ │ │ ├── null.png │ │ │ │ ├── plus.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── progressbar_v.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── slider-horiz-active.png │ │ │ │ ├── slider-horiz-insens.png │ │ │ │ ├── slider-horiz-prelight.png │ │ │ │ ├── slider-horiz.png │ │ │ │ ├── slider-insensitive.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider-vert-active.png │ │ │ │ ├── slider-vert-insens.png │ │ │ │ ├── slider-vert-prelight.png │ │ │ │ ├── slider-vert.png │ │ │ │ ├── slider.png │ │ │ │ ├── tab-bottom-active.png │ │ │ │ ├── tab-left-active.png │ │ │ │ ├── tab-right-active.png │ │ │ │ ├── tab-top-active.png │ │ │ │ ├── toolbar.png │ │ │ │ ├── tree_header.png │ │ │ │ ├── trough-horizontal-active.png │ │ │ │ ├── trough-horizontal.png │ │ │ │ ├── trough-progressbar.png │ │ │ │ ├── trough-progressbar_v.png │ │ │ │ ├── trough-scrollbar-horiz.png │ │ │ │ ├── trough-scrollbar-vert.png │ │ │ │ ├── trough-vertical-active.png │ │ │ │ ├── trough-vertical.png │ │ │ │ ├── up-background-disable-rtl.png │ │ │ │ ├── up-background-disable.png │ │ │ │ ├── up-background-rtl.png │ │ │ │ └── up-background.png │ │ │ ├── gtkrc │ │ │ ├── main.rc │ │ │ ├── menubar-toolbar │ │ │ │ ├── button-active.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-insensitive.png │ │ │ │ ├── button.png │ │ │ │ ├── entry-active-toolbar-dark.png │ │ │ │ ├── entry-active-toolbar.png │ │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ │ ├── entry-disabled-toolbar.png │ │ │ │ ├── entry-toolbar-dark.png │ │ │ │ ├── entry-toolbar.png │ │ │ │ ├── menubar-dark.png │ │ │ │ ├── menubar-toolbar-dark.rc │ │ │ │ ├── menubar-toolbar.rc │ │ │ │ ├── menubar.png │ │ │ │ ├── menubar_button-dark.png │ │ │ │ └── menubar_button.png │ │ │ ├── panel.rc │ │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ │ ├── assets │ │ │ │ ├── checkbox-checked-dark.png │ │ │ │ ├── checkbox-checked-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ │ ├── checkbox-checked-insensitive.png │ │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ │ ├── checkbox-checked-selected.png │ │ │ │ ├── checkbox-checked-selected@2.png │ │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox-checked@2.png │ │ │ │ ├── checkbox-mixed-dark.png │ │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ │ ├── checkbox-mixed-selected.png │ │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ │ ├── checkbox-mixed.png │ │ │ │ ├── checkbox-mixed@2.png │ │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ │ ├── checkbox-selectionmode.png │ │ │ │ ├── checkbox-selectionmode@2.png │ │ │ │ ├── checkbox-unchecked-dark.png │ │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ │ ├── checkbox-unchecked-selected.png │ │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ │ ├── checkbox-unchecked.png │ │ │ │ ├── checkbox-unchecked@2.png │ │ │ │ ├── radio-checked-dark.png │ │ │ │ ├── radio-checked-dark@2.png │ │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ │ ├── radio-checked-insensitive.png │ │ │ │ ├── radio-checked-insensitive@2.png │ │ │ │ ├── radio-checked-selected.png │ │ │ │ ├── radio-checked-selected@2.png │ │ │ │ ├── radio-checked.png │ │ │ │ ├── radio-checked@2.png │ │ │ │ ├── radio-mixed-dark.png │ │ │ │ ├── radio-mixed-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ │ ├── radio-mixed-insensitive.png │ │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ │ ├── radio-mixed-selected.png │ │ │ │ ├── radio-mixed-selected@2.png │ │ │ │ ├── radio-mixed.png │ │ │ │ ├── radio-mixed@2.png │ │ │ │ ├── radio-unchecked-dark.png │ │ │ │ ├── radio-unchecked-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ │ ├── radio-unchecked-insensitive.png │ │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ │ ├── radio-unchecked-selected.png │ │ │ │ ├── radio-unchecked-selected@2.png │ │ │ │ ├── radio-unchecked.png │ │ │ │ ├── radio-unchecked@2.png │ │ │ │ ├── switch-active-dark.png │ │ │ │ ├── switch-active-dark@2.png │ │ │ │ ├── switch-active-header-dark.png │ │ │ │ ├── switch-active-header-dark@2.png │ │ │ │ ├── switch-active-header.png │ │ │ │ ├── switch-active-header@2.png │ │ │ │ ├── switch-active-insensitive-dark.png │ │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ │ ├── switch-active-insensitive-header.png │ │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ │ ├── switch-active-insensitive-selected.png │ │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ │ ├── switch-active-insensitive.png │ │ │ │ ├── switch-active-insensitive@2.png │ │ │ │ ├── switch-active-selected.png │ │ │ │ ├── switch-active-selected@2.png │ │ │ │ ├── switch-active.png │ │ │ │ ├── switch-active@2.png │ │ │ │ ├── switch-dark.png │ │ │ │ ├── switch-dark@2.png │ │ │ │ ├── switch-header-dark.png │ │ │ │ ├── switch-header-dark@2.png │ │ │ │ ├── switch-header.png │ │ │ │ ├── switch-header@2.png │ │ │ │ ├── switch-insensitive-dark.png │ │ │ │ ├── switch-insensitive-dark@2.png │ │ │ │ ├── switch-insensitive-header-dark.png │ │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ │ ├── switch-insensitive-header.png │ │ │ │ ├── switch-insensitive-header@2.png │ │ │ │ ├── switch-insensitive-selected.png │ │ │ │ ├── switch-insensitive-selected@2.png │ │ │ │ ├── switch-insensitive.png │ │ │ │ ├── switch-insensitive@2.png │ │ │ │ ├── switch-selected.png │ │ │ │ ├── switch-selected@2.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2.png │ │ │ │ ├── thumbnail-frame.png │ │ │ │ ├── titlebutton-close-active-dark.png │ │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ │ ├── titlebutton-close-active.png │ │ │ │ ├── titlebutton-close-active@2.png │ │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ │ ├── titlebutton-close-backdrop.png │ │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ │ ├── titlebutton-close-dark.png │ │ │ │ ├── titlebutton-close-dark@2.png │ │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ │ ├── titlebutton-close-hover.png │ │ │ │ ├── titlebutton-close-hover@2.png │ │ │ │ ├── titlebutton-close.png │ │ │ │ ├── titlebutton-close@2.png │ │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ │ ├── titlebutton-maximize-active.png │ │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ │ ├── titlebutton-maximize-dark.png │ │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ │ ├── titlebutton-maximize-hover.png │ │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ │ ├── titlebutton-maximize.png │ │ │ │ ├── titlebutton-maximize@2.png │ │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ │ ├── titlebutton-minimize-active.png │ │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ │ ├── titlebutton-minimize-dark.png │ │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ │ ├── titlebutton-minimize-hover.png │ │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ │ ├── titlebutton-minimize.png │ │ │ │ └── titlebutton-minimize@2.png │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1 │ │ │ ├── button-bg.svg │ │ │ ├── button-border.svg │ │ │ ├── close-icon.svg │ │ │ ├── max-icon.svg │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── min-icon.svg │ │ ├── unity │ │ │ ├── close.svg │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── close_focused_normal.svg │ │ │ ├── close_focused_prelight.svg │ │ │ ├── close_focused_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── close_unfocused_prelight.svg │ │ │ ├── close_unfocused_pressed.svg │ │ │ ├── dash │ │ │ │ ├── close_dash.svg │ │ │ │ ├── close_dash_disabled.svg │ │ │ │ ├── close_dash_prelight.svg │ │ │ │ ├── close_dash_pressed.svg │ │ │ │ ├── maximize_dash.svg │ │ │ │ ├── maximize_dash_disabled.svg │ │ │ │ ├── maximize_dash_prelight.svg │ │ │ │ ├── maximize_dash_pressed.svg │ │ │ │ ├── minimize_dash.svg │ │ │ │ ├── minimize_dash_disabled.svg │ │ │ │ ├── minimize_dash_prelight.svg │ │ │ │ └── minimize_dash_pressed.svg │ │ │ ├── launcher_arrow_ltr_19.svg │ │ │ ├── launcher_arrow_ltr_37.svg │ │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ │ ├── launcher_arrow_rtl_19.svg │ │ │ ├── launcher_arrow_rtl_37.svg │ │ │ ├── launcher_icon_back_150.svg │ │ │ ├── launcher_icon_back_54.svg │ │ │ ├── launcher_icon_edge_150.svg │ │ │ ├── launcher_icon_edge_54.svg │ │ │ ├── launcher_icon_glow_200.svg │ │ │ ├── launcher_icon_glow_62.svg │ │ │ ├── launcher_icon_selected_back_150.svg │ │ │ ├── launcher_icon_selected_back_54.svg │ │ │ ├── launcher_icon_shadow_200.svg │ │ │ ├── launcher_icon_shadow_62.svg │ │ │ ├── launcher_icon_shine_150.svg │ │ │ ├── launcher_icon_shine_54.svg │ │ │ ├── launcher_pip_ltr_19.svg │ │ │ ├── launcher_pip_ltr_37.svg │ │ │ ├── launcher_pip_rtl_19.svg │ │ │ ├── launcher_pip_rtl_37.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── maximize_focused_normal.svg │ │ │ ├── maximize_focused_prelight.svg │ │ │ ├── maximize_focused_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── maximize_unfocused_prelight.svg │ │ │ ├── maximize_unfocused_pressed.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ ├── minimize_dash_pressed.svg │ │ │ ├── minimize_focused_normal.svg │ │ │ ├── minimize_focused_prelight.svg │ │ │ ├── minimize_focused_pressed.svg │ │ │ ├── minimize_unfocused.svg │ │ │ ├── minimize_unfocused_prelight.svg │ │ │ ├── minimize_unfocused_pressed.svg │ │ │ ├── sheet_style_close_focused.svg │ │ │ ├── sheet_style_close_focused_prelight.svg │ │ │ ├── sheet_style_close_focused_pressed.svg │ │ │ ├── unmaximize.svg │ │ │ ├── unmaximize_dash.svg │ │ │ ├── unmaximize_dash_disabled.svg │ │ │ ├── unmaximize_dash_prelight.svg │ │ │ ├── unmaximize_dash_pressed.svg │ │ │ ├── unmaximize_focused_normal.svg │ │ │ ├── unmaximize_focused_prelight.svg │ │ │ ├── unmaximize_focused_pressed.svg │ │ │ ├── unmaximize_unfocused.svg │ │ │ ├── unmaximize_unfocused_prelight.svg │ │ │ ├── unmaximize_unfocused_pressed.svg │ │ │ └── window-buttons │ │ │ │ ├── close.svg │ │ │ │ ├── close_prelight.svg │ │ │ │ ├── close_pressed.svg │ │ │ │ ├── close_unfocused.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── maximize_prelight.svg │ │ │ │ ├── maximize_pressed.svg │ │ │ │ ├── maximize_unfocused.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minimize_prelight.svg │ │ │ │ ├── minimize_pressed.svg │ │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ │ ├── bottom-active.png │ │ │ ├── bottom-inactive.png │ │ │ ├── bottom-left-active.png │ │ │ ├── bottom-left-inactive.png │ │ │ ├── bottom-right-active.png │ │ │ ├── bottom-right-inactive.png │ │ │ ├── close-active.png │ │ │ ├── close-inactive.png │ │ │ ├── close-prelight.png │ │ │ ├── close-pressed.png │ │ │ ├── hide-active.png │ │ │ ├── hide-inactive.png │ │ │ ├── hide-prelight.png │ │ │ ├── hide-pressed.png │ │ │ ├── left-active.png │ │ │ ├── left-inactive.png │ │ │ ├── maximize-active.png │ │ │ ├── maximize-inactive.png │ │ │ ├── maximize-prelight.png │ │ │ ├── maximize-pressed.png │ │ │ ├── menu-active.png │ │ │ ├── menu-inactive.png │ │ │ ├── menu-pressed.png │ │ │ ├── right-active.png │ │ │ ├── right-inactive.png │ │ │ ├── shade-active.png │ │ │ ├── shade-inactive.png │ │ │ ├── shade-pressed.png │ │ │ ├── stick-active.png │ │ │ ├── stick-inactive.png │ │ │ ├── stick-pressed.png │ │ │ ├── themerc │ │ │ ├── title-1-active.png │ │ │ ├── title-1-inactive.png │ │ │ ├── title-2-active.png │ │ │ ├── title-2-inactive.png │ │ │ ├── title-3-active.png │ │ │ ├── title-3-inactive.png │ │ │ ├── title-4-active.png │ │ │ ├── title-4-inactive.png │ │ │ ├── title-5-active.png │ │ │ ├── title-5-inactive.png │ │ │ ├── top-left-active.png │ │ │ ├── top-left-inactive.png │ │ │ ├── top-right-active.png │ │ │ └── top-right-inactive.png │ └── Arc-Tacao │ │ ├── cinnamon │ │ ├── cinnamon.css │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── thumbnail.png │ │ ├── gnome-shell │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-left.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3.svg │ │ │ │ └── running4.svg │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── bg.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ └── ws-switch-arrow-up.png │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-overview.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── gnome-shell.css │ │ └── light-assets │ │ │ ├── checkbox │ │ │ ├── checkbox-checked-focused.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ ├── menu.svg │ │ │ ├── submenu-open.svg │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── message-active.svg │ │ │ ├── message-close-active.svg │ │ │ ├── message-close-hover.svg │ │ │ ├── message-close.svg │ │ │ ├── message-hover.svg │ │ │ ├── message.svg │ │ │ └── modal.svg │ │ │ └── switch │ │ │ ├── switch-off.svg │ │ │ └── switch-on.svg │ │ ├── gtk-2.0 │ │ ├── apps.rc │ │ ├── assets │ │ │ ├── arrow-down-insens.png │ │ │ ├── arrow-down-prelight.png │ │ │ ├── arrow-down-small-insens.png │ │ │ ├── arrow-down-small-prelight.png │ │ │ ├── arrow-down-small.png │ │ │ ├── arrow-down.png │ │ │ ├── arrow-left-insens.png │ │ │ ├── arrow-left-prelight.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right-insens.png │ │ │ ├── arrow-right-prelight.png │ │ │ ├── arrow-right.png │ │ │ ├── arrow-up-insens.png │ │ │ ├── arrow-up-prelight.png │ │ │ ├── arrow-up-small-insens.png │ │ │ ├── arrow-up-small-prelight.png │ │ │ ├── arrow-up-small.png │ │ │ ├── arrow-up.png │ │ │ ├── button-active.png │ │ │ ├── button-hover.png │ │ │ ├── button-insensitive.png │ │ │ ├── button.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── combo-entry-border-focus-rtl.png │ │ │ ├── combo-entry-border-focus.png │ │ │ ├── combo-entry-border-rtl.png │ │ │ ├── combo-entry-border.png │ │ │ ├── combo-entry-button-active-rtl.png │ │ │ ├── combo-entry-button-active.png │ │ │ ├── combo-entry-button-insensitive-rtl.png │ │ │ ├── combo-entry-button-insensitive.png │ │ │ ├── combo-entry-button-rtl.png │ │ │ ├── combo-entry-button.png │ │ │ ├── combo-entry-focus-notebook-rtl.png │ │ │ ├── combo-entry-focus-notebook.png │ │ │ ├── combo-entry-focus-rtl.png │ │ │ ├── combo-entry-focus.png │ │ │ ├── combo-entry-insensitive-notebook-rtl.png │ │ │ ├── combo-entry-insensitive-notebook.png │ │ │ ├── combo-entry-insensitive-rtl.png │ │ │ ├── combo-entry-insensitive.png │ │ │ ├── combo-entry-notebook-rtl.png │ │ │ ├── combo-entry-notebook.png │ │ │ ├── combo-entry-rtl.png │ │ │ ├── combo-entry.png │ │ │ ├── down-background-disable-rtl.png │ │ │ ├── down-background-disable.png │ │ │ ├── down-background-rtl.png │ │ │ ├── down-background.png │ │ │ ├── entry-active-bg.png │ │ │ ├── entry-active-notebook.png │ │ │ ├── entry-active-toolbar.png │ │ │ ├── entry-background-disabled.png │ │ │ ├── entry-background.png │ │ │ ├── entry-bg.png │ │ │ ├── entry-border-active-bg.png │ │ │ ├── entry-border-bg.png │ │ │ ├── entry-disabled-bg.png │ │ │ ├── entry-disabled-notebook.png │ │ │ ├── entry-disabled-toolbar.png │ │ │ ├── entry-notebook.png │ │ │ ├── entry-toolbar.png │ │ │ ├── focus-line.png │ │ │ ├── frame-gap-end.png │ │ │ ├── frame-gap-start.png │ │ │ ├── frame.png │ │ │ ├── handle-h.png │ │ │ ├── handle-v.png │ │ │ ├── inline-toolbar.png │ │ │ ├── line-h.png │ │ │ ├── line-v.png │ │ │ ├── menu-arrow-prelight.png │ │ │ ├── menu-arrow.png │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ ├── menu-checkbox-checked-selected.png │ │ │ ├── menu-checkbox-checked.png │ │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ │ ├── menu-checkbox-unchecked-selected.png │ │ │ ├── menu-checkbox-unchecked.png │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ ├── menu-radio-checked-selected.png │ │ │ ├── menu-radio-checked.png │ │ │ ├── menu-radio-unchecked-insensitive.png │ │ │ ├── menu-radio-unchecked-selected.png │ │ │ ├── menu-radio-unchecked.png │ │ │ ├── menubar.png │ │ │ ├── menubar_button.png │ │ │ ├── menuitem.png │ │ │ ├── minus.png │ │ │ ├── notebook-gap-horiz.png │ │ │ ├── notebook-gap-vert.png │ │ │ ├── notebook.png │ │ │ ├── null.png │ │ │ ├── plus.png │ │ │ ├── progressbar.png │ │ │ ├── progressbar_v.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked.png │ │ │ ├── slider-horiz-active.png │ │ │ ├── slider-horiz-insens.png │ │ │ ├── slider-horiz-prelight.png │ │ │ ├── slider-horiz.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-prelight.png │ │ │ ├── slider-vert-active.png │ │ │ ├── slider-vert-insens.png │ │ │ ├── slider-vert-prelight.png │ │ │ ├── slider-vert.png │ │ │ ├── slider.png │ │ │ ├── tab-bottom-active.png │ │ │ ├── tab-left-active.png │ │ │ ├── tab-right-active.png │ │ │ ├── tab-top-active.png │ │ │ ├── toolbar.png │ │ │ ├── tree_header.png │ │ │ ├── trough-horizontal-active.png │ │ │ ├── trough-horizontal.png │ │ │ ├── trough-progressbar.png │ │ │ ├── trough-progressbar_v.png │ │ │ ├── trough-scrollbar-horiz.png │ │ │ ├── trough-scrollbar-vert.png │ │ │ ├── trough-vertical-active.png │ │ │ ├── trough-vertical.png │ │ │ ├── up-background-disable-rtl.png │ │ │ ├── up-background-disable.png │ │ │ ├── up-background-rtl.png │ │ │ └── up-background.png │ │ ├── gtkrc │ │ ├── main.rc │ │ ├── menubar-toolbar │ │ │ ├── button-active.png │ │ │ ├── button-hover.png │ │ │ ├── button-insensitive.png │ │ │ ├── button.png │ │ │ ├── entry-active-toolbar-dark.png │ │ │ ├── entry-active-toolbar.png │ │ │ ├── entry-disabled-toolbar-dark.png │ │ │ ├── entry-disabled-toolbar.png │ │ │ ├── entry-toolbar-dark.png │ │ │ ├── entry-toolbar.png │ │ │ ├── menubar-dark.png │ │ │ ├── menubar-toolbar-dark.rc │ │ │ ├── menubar-toolbar.rc │ │ │ ├── menubar.png │ │ │ ├── menubar_button-dark.png │ │ │ └── menubar_button.png │ │ ├── panel.rc │ │ └── xfce-notify.rc │ │ ├── gtk-3.0 │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked-selectionmode-dark.png │ │ │ ├── checkbox-checked-selectionmode-dark@2.png │ │ │ ├── checkbox-checked-selectionmode.png │ │ │ ├── checkbox-checked-selectionmode@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-selectionmode-dark.png │ │ │ ├── checkbox-selectionmode-dark@2.png │ │ │ ├── checkbox-selectionmode.png │ │ │ ├── checkbox-selectionmode@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-header-dark.png │ │ │ ├── switch-active-header-dark@2.png │ │ │ ├── switch-active-header.png │ │ │ ├── switch-active-header@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-header-dark.png │ │ │ ├── switch-active-insensitive-header-dark@2.png │ │ │ ├── switch-active-insensitive-header.png │ │ │ ├── switch-active-insensitive-header@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-header-dark.png │ │ │ ├── switch-header-dark@2.png │ │ │ ├── switch-header.png │ │ │ ├── switch-header@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-header-dark.png │ │ │ ├── switch-insensitive-header-dark@2.png │ │ │ ├── switch-insensitive-header.png │ │ │ ├── switch-insensitive-header@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active-dark.png │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-backdrop-dark.png │ │ │ ├── titlebutton-close-backdrop-dark@2.png │ │ │ ├── titlebutton-close-backdrop.png │ │ │ ├── titlebutton-close-backdrop@2.png │ │ │ ├── titlebutton-close-dark.png │ │ │ ├── titlebutton-close-dark@2.png │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-close.png │ │ │ ├── titlebutton-close@2.png │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-backdrop-dark.png │ │ │ ├── titlebutton-maximize-backdrop-dark@2.png │ │ │ ├── titlebutton-maximize-backdrop.png │ │ │ ├── titlebutton-maximize-backdrop@2.png │ │ │ ├── titlebutton-maximize-dark.png │ │ │ ├── titlebutton-maximize-dark@2.png │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-maximize.png │ │ │ ├── titlebutton-maximize@2.png │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-backdrop-dark.png │ │ │ ├── titlebutton-minimize-backdrop-dark@2.png │ │ │ ├── titlebutton-minimize-backdrop.png │ │ │ ├── titlebutton-minimize-backdrop@2.png │ │ │ ├── titlebutton-minimize-dark.png │ │ │ ├── titlebutton-minimize-dark@2.png │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-minimize.png │ │ │ └── titlebutton-minimize@2.png │ │ ├── gtk-dark.css │ │ ├── gtk.css │ │ └── thumbnail.png │ │ ├── index.theme │ │ ├── metacity-1 │ │ ├── button-bg.svg │ │ ├── button-border.svg │ │ ├── close-icon.svg │ │ ├── max-icon.svg │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── min-icon.svg │ │ └── thumbnail.png │ │ ├── unity │ │ ├── close.svg │ │ ├── close_dash.svg │ │ ├── close_dash_disabled.svg │ │ ├── close_dash_prelight.svg │ │ ├── close_dash_pressed.svg │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── close_unfocused_pressed.svg │ │ ├── dash │ │ │ ├── close_dash.svg │ │ │ ├── close_dash_disabled.svg │ │ │ ├── close_dash_prelight.svg │ │ │ ├── close_dash_pressed.svg │ │ │ ├── maximize_dash.svg │ │ │ ├── maximize_dash_disabled.svg │ │ │ ├── maximize_dash_prelight.svg │ │ │ ├── maximize_dash_pressed.svg │ │ │ ├── minimize_dash.svg │ │ │ ├── minimize_dash_disabled.svg │ │ │ ├── minimize_dash_prelight.svg │ │ │ └── minimize_dash_pressed.svg │ │ ├── launcher_arrow_ltr_19.svg │ │ ├── launcher_arrow_ltr_37.svg │ │ ├── launcher_arrow_outline_ltr_19.svg │ │ ├── launcher_arrow_outline_ltr_37.svg │ │ ├── launcher_arrow_outline_rtl_19.svg │ │ ├── launcher_arrow_outline_rtl_37.svg │ │ ├── launcher_arrow_rtl_19.svg │ │ ├── launcher_arrow_rtl_37.svg │ │ ├── launcher_icon_back_150.svg │ │ ├── launcher_icon_back_54.svg │ │ ├── launcher_icon_edge_150.svg │ │ ├── launcher_icon_edge_54.svg │ │ ├── launcher_icon_glow_200.svg │ │ ├── launcher_icon_glow_62.svg │ │ ├── launcher_icon_selected_back_150.svg │ │ ├── launcher_icon_selected_back_54.svg │ │ ├── launcher_icon_shadow_200.svg │ │ ├── launcher_icon_shadow_62.svg │ │ ├── launcher_icon_shine_150.svg │ │ ├── launcher_icon_shine_54.svg │ │ ├── launcher_pip_ltr_19.svg │ │ ├── launcher_pip_ltr_37.svg │ │ ├── launcher_pip_rtl_19.svg │ │ ├── launcher_pip_rtl_37.svg │ │ ├── maximize.svg │ │ ├── maximize_dash.svg │ │ ├── maximize_dash_disabled.svg │ │ ├── maximize_dash_prelight.svg │ │ ├── maximize_dash_pressed.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── maximize_unfocused_pressed.svg │ │ ├── minimize.svg │ │ ├── minimize_dash.svg │ │ ├── minimize_dash_disabled.svg │ │ ├── minimize_dash_prelight.svg │ │ ├── minimize_dash_pressed.svg │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── minimize_unfocused_pressed.svg │ │ ├── sheet_style_close_focused.svg │ │ ├── sheet_style_close_focused_prelight.svg │ │ ├── sheet_style_close_focused_pressed.svg │ │ ├── unmaximize.svg │ │ ├── unmaximize_dash.svg │ │ ├── unmaximize_dash_disabled.svg │ │ ├── unmaximize_dash_prelight.svg │ │ ├── unmaximize_dash_pressed.svg │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ ├── unmaximize_unfocused_prelight.svg │ │ ├── unmaximize_unfocused_pressed.svg │ │ └── window-buttons │ │ │ ├── close.svg │ │ │ ├── close_prelight.svg │ │ │ ├── close_pressed.svg │ │ │ ├── close_unfocused.svg │ │ │ ├── maximize.svg │ │ │ ├── maximize_prelight.svg │ │ │ ├── maximize_pressed.svg │ │ │ ├── maximize_unfocused.svg │ │ │ ├── minimize.svg │ │ │ ├── minimize_prelight.svg │ │ │ ├── minimize_pressed.svg │ │ │ └── minimize_unfocused.svg │ │ └── xfwm4 │ │ ├── bottom-active.png │ │ ├── bottom-inactive.png │ │ ├── bottom-left-active.png │ │ ├── bottom-left-inactive.png │ │ ├── bottom-right-active.png │ │ ├── bottom-right-inactive.png │ │ ├── close-active.png │ │ ├── close-inactive.png │ │ ├── close-prelight.png │ │ ├── close-pressed.png │ │ ├── hide-active.png │ │ ├── hide-inactive.png │ │ ├── hide-prelight.png │ │ ├── hide-pressed.png │ │ ├── left-active.png │ │ ├── left-inactive.png │ │ ├── maximize-active.png │ │ ├── maximize-inactive.png │ │ ├── maximize-prelight.png │ │ ├── maximize-pressed.png │ │ ├── menu-active.png │ │ ├── menu-inactive.png │ │ ├── menu-pressed.png │ │ ├── right-active.png │ │ ├── right-inactive.png │ │ ├── shade-active.png │ │ ├── shade-inactive.png │ │ ├── shade-pressed.png │ │ ├── stick-active.png │ │ ├── stick-inactive.png │ │ ├── stick-pressed.png │ │ ├── themerc │ │ ├── title-1-active.png │ │ ├── title-1-inactive.png │ │ ├── title-2-active.png │ │ ├── title-2-inactive.png │ │ ├── title-3-active.png │ │ ├── title-3-inactive.png │ │ ├── title-4-active.png │ │ ├── title-4-inactive.png │ │ ├── title-5-active.png │ │ ├── title-5-inactive.png │ │ ├── top-left-active.png │ │ ├── top-left-inactive.png │ │ ├── top-right-active.png │ │ └── top-right-inactive.png ├── bose-bluetooth-headset-v1.sh ├── conky-aureola-v3.sh ├── fix-icon-sublime-text-v1.sh ├── hardcodefixer-v2.sh ├── icons-sardi-extra-v3.sh ├── icons-sardi-v3.sh ├── icons-sardi-vintage-v1.sh ├── icons-surfn-v3.sh ├── install-atom-editor-bin-v1.sh ├── install-atom-v1.sh ├── install-awesome-font-v1.sh ├── install-brackets-v1.sh ├── install-breeze-cursor-theme-v1.sh ├── install-canon-mg7750-v1.sh ├── install-cool-retro-term-v1.sh ├── install-corebird-v1.sh ├── install-discord-canary-v1.sh ├── install-downgrade-v1.sh ├── install-dropbox-v1.sh ├── install-etcher-v1.sh ├── install-font-manager-v1.sh ├── install-foxitreader-v1.sh ├── install-franz-v1.sh ├── install-gnome-terminal-transparency-v1.sh ├── install-google-earth-v1.sh ├── install-gradio-v1.sh ├── install-grub-customizer-v1.sh ├── install-gtk-arc-flatabulous-theme--v1.sh ├── install-gtk-arc-flatabulous-theme-v1.sh ├── install-gtk-arc-theme-git-v1.sh ├── install-icons-sardi-v1.sh ├── install-icons-surfn-v1.sh ├── install-insync-v1.sh ├── install-intelij-idea-ultimate-edition-v1.sh ├── install-mintstick-git-v1.sh ├── install-mpv-v1.sh ├── install-neofetch-v1.sh ├── install-numix-circle-icon-theme-git-v1.sh ├── install-pamac-aur-v1.sh ├── install-paper-icon-theme-git-v1.sh ├── install-paper-icon-theme-v1.sh ├── install-papirus-icon-theme-v1.sh ├── install-peek-v1.sh ├── install-pixeluvo-v1.sh ├── install-pkgcacheclean-v1.sh ├── install-radiotray-v1.sh ├── install-screenkey-v1.sh ├── install-simplescreenrecorder-v1.sh ├── install-skype-v1.sh ├── install-slack-v1.sh ├── install-spotify-v1.sh ├── install-sublime-text-v1.sh ├── install-teamspeak-v1.sh ├── install-teamviewer-v1.sh ├── install-telegram-v1.sh ├── install-temps-v1.sh ├── install-ttf-carlito-v1.sh ├── install-ttf-mac-fonts-v1.sh ├── install-viber-v1.sh ├── install-virtualbox-v1.sh ├── install-visual-studio-code-v1.sh ├── install-vivaldi-v1.sh ├── install-wire-v1.sh ├── install-wpsoffice-v1.sh ├── install-zsh-v1.sh ├── plank-themes-v2.sh ├── run-speedtest-cli-v1.sh └── settings │ ├── .bash_profile │ ├── .bashrc │ ├── .gtkrc-2.0 │ ├── .xinitrc │ ├── .zlogin │ ├── .zshrc │ ├── bookmarks │ ├── firefox │ ├── chrome │ │ └── userContent.css │ ├── stop firefox from saying well this is embarrasing │ └── text is not readable on youtube and others │ ├── gimp │ ├── scripts │ │ ├── gc-shadow.scm │ │ ├── gt-bevel.scm │ │ ├── layerfx.scm │ │ └── shadows-highlights-2.4.scm │ └── themes │ │ └── Gimp-CS6-Theme │ │ ├── gtkrc │ │ ├── imagerc │ │ └── images │ │ ├── airbrush-tool.png │ │ ├── blur-tool.png │ │ ├── brush-tool.png │ │ ├── brush-tool16.png │ │ ├── brush-tool18.png │ │ ├── clone-stamp-tool.png │ │ ├── color-picker-tool.png │ │ ├── crop-tool.png │ │ ├── dodge-tool.png │ │ ├── elliptical-selection-tool.png │ │ ├── eraser-tool.png │ │ ├── foreground-selection-tool.png │ │ ├── gradient-tool.png │ │ ├── healing-brush-tool.png │ │ ├── lasso-tool.png │ │ ├── layer-align.png │ │ ├── magic-wand-tool.png │ │ ├── magnetic-lasso-tool.png │ │ ├── measure-tool.png │ │ ├── move-tool.png │ │ ├── paint-bucket-tool.png │ │ ├── pen-tool.png │ │ ├── pencil-tool.png │ │ ├── perspective-clone-tool.png │ │ ├── rectangual-selection-tool.png │ │ ├── smudge-tool.png │ │ ├── stock-tool-brightness-contrast-22.png │ │ ├── stock-tool-by-color-select-22.png │ │ ├── stock-tool-cage-22.png │ │ ├── stock-tool-color-balance-c22.png │ │ ├── stock-tool-colorize-22.png │ │ ├── stock-tool-curves-c22.png │ │ ├── stock-tool-flip-22.png │ │ ├── stock-tool-hue-saturation-22.png │ │ ├── stock-tool-ink-22.png │ │ ├── stock-tool-levels-c22.png │ │ ├── stock-tool-measure-22.png │ │ ├── stock-tool-perspective-22.png │ │ ├── stock-tool-posterize-22.png │ │ ├── stock-tool-rotate-22.png │ │ ├── stock-tool-scale-22.png │ │ ├── stock-tool-shear-22.png │ │ ├── stock-tool-threshold-c22.png │ │ ├── type-tool.png │ │ └── zoom-tool.png │ ├── gnome-screenshot │ ├── set-gnome-screenshot-to-save-as-jpg.sh │ └── set-gnome-screenshot-to-save-as-png.sh │ ├── settings.ini │ └── sublimetext │ ├── Default.sublime-theme │ └── Preferences.sublime-settings └── setup-git-v1.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/README.md -------------------------------------------------------------------------------- /git-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/git-v1.sh -------------------------------------------------------------------------------- /installation/030-install-xorg-ati.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/030-install-xorg-ati.sh -------------------------------------------------------------------------------- /installation/030-install-xorg-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/030-install-xorg-intel.sh -------------------------------------------------------------------------------- /installation/030-install-xorg-nvidia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/030-install-xorg-nvidia.sh -------------------------------------------------------------------------------- /installation/050-install-xfce-core-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/050-install-xfce-core-v1.sh -------------------------------------------------------------------------------- /installation/120-install-sound-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/120-install-sound-v1.sh -------------------------------------------------------------------------------- /installation/130-install-network-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/130-install-network-v1.sh -------------------------------------------------------------------------------- /installation/500-install-samba-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/500-install-samba-v1.sh -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Blue/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Bluer/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Blue/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Bluer/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Dim-Gray/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Orange-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dark-Tacao/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Blue/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Bluer/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Dim-Gray/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Orange-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Darker-Tacao/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Dim-Gray/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Orange-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Red/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /installation/Arc Colora/Arc-Tacao/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /installation/conky-aureola-v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/conky-aureola-v3.sh -------------------------------------------------------------------------------- /installation/hardcodefixer-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/hardcodefixer-v2.sh -------------------------------------------------------------------------------- /installation/icons-sardi-extra-v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/icons-sardi-extra-v3.sh -------------------------------------------------------------------------------- /installation/icons-sardi-v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/icons-sardi-v3.sh -------------------------------------------------------------------------------- /installation/icons-sardi-vintage-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/icons-sardi-vintage-v1.sh -------------------------------------------------------------------------------- /installation/icons-surfn-v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/icons-surfn-v3.sh -------------------------------------------------------------------------------- /installation/install-atom-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-atom-v1.sh -------------------------------------------------------------------------------- /installation/install-brackets-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-brackets-v1.sh -------------------------------------------------------------------------------- /installation/install-corebird-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-corebird-v1.sh -------------------------------------------------------------------------------- /installation/install-downgrade-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-downgrade-v1.sh -------------------------------------------------------------------------------- /installation/install-dropbox-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-dropbox-v1.sh -------------------------------------------------------------------------------- /installation/install-etcher-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-etcher-v1.sh -------------------------------------------------------------------------------- /installation/install-foxitreader-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-foxitreader-v1.sh -------------------------------------------------------------------------------- /installation/install-franz-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-franz-v1.sh -------------------------------------------------------------------------------- /installation/install-gradio-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-gradio-v1.sh -------------------------------------------------------------------------------- /installation/install-icons-sardi-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-icons-sardi-v1.sh -------------------------------------------------------------------------------- /installation/install-icons-surfn-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-icons-surfn-v1.sh -------------------------------------------------------------------------------- /installation/install-insync-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-insync-v1.sh -------------------------------------------------------------------------------- /installation/install-mpv-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-mpv-v1.sh -------------------------------------------------------------------------------- /installation/install-neofetch-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-neofetch-v1.sh -------------------------------------------------------------------------------- /installation/install-pamac-aur-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-pamac-aur-v1.sh -------------------------------------------------------------------------------- /installation/install-peek-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-peek-v1.sh -------------------------------------------------------------------------------- /installation/install-pixeluvo-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-pixeluvo-v1.sh -------------------------------------------------------------------------------- /installation/install-radiotray-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-radiotray-v1.sh -------------------------------------------------------------------------------- /installation/install-screenkey-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-screenkey-v1.sh -------------------------------------------------------------------------------- /installation/install-skype-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-skype-v1.sh -------------------------------------------------------------------------------- /installation/install-slack-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-slack-v1.sh -------------------------------------------------------------------------------- /installation/install-spotify-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-spotify-v1.sh -------------------------------------------------------------------------------- /installation/install-teamspeak-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-teamspeak-v1.sh -------------------------------------------------------------------------------- /installation/install-teamviewer-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-teamviewer-v1.sh -------------------------------------------------------------------------------- /installation/install-telegram-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-telegram-v1.sh -------------------------------------------------------------------------------- /installation/install-temps-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-temps-v1.sh -------------------------------------------------------------------------------- /installation/install-ttf-carlito-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-ttf-carlito-v1.sh -------------------------------------------------------------------------------- /installation/install-viber-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-viber-v1.sh -------------------------------------------------------------------------------- /installation/install-virtualbox-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-virtualbox-v1.sh -------------------------------------------------------------------------------- /installation/install-vivaldi-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-vivaldi-v1.sh -------------------------------------------------------------------------------- /installation/install-wire-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-wire-v1.sh -------------------------------------------------------------------------------- /installation/install-wpsoffice-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-wpsoffice-v1.sh -------------------------------------------------------------------------------- /installation/install-zsh-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/install-zsh-v1.sh -------------------------------------------------------------------------------- /installation/plank-themes-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/plank-themes-v2.sh -------------------------------------------------------------------------------- /installation/run-speedtest-cli-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/run-speedtest-cli-v1.sh -------------------------------------------------------------------------------- /installation/settings/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/.bash_profile -------------------------------------------------------------------------------- /installation/settings/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/.bashrc -------------------------------------------------------------------------------- /installation/settings/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/.gtkrc-2.0 -------------------------------------------------------------------------------- /installation/settings/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/.xinitrc -------------------------------------------------------------------------------- /installation/settings/.zlogin: -------------------------------------------------------------------------------- 1 | [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx 2 | numlockx on -------------------------------------------------------------------------------- /installation/settings/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/.zshrc -------------------------------------------------------------------------------- /installation/settings/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/bookmarks -------------------------------------------------------------------------------- /installation/settings/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/installation/settings/settings.ini -------------------------------------------------------------------------------- /setup-git-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubois/ArchXfce4/HEAD/setup-git-v1.sh --------------------------------------------------------------------------------