├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .gitignore ├── .travis.yml ├── .tx ├── config └── config_20221028214815.bak ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── cursor-themes ├── Makefile.am ├── mate-black │ ├── Makefile.am │ ├── cursors │ │ ├── 00008160000006810000408080010102 │ │ ├── 028006030e0e7ebffc7f7070c0600140 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 14fef782d02440884392942c11205230 │ │ ├── 2870a09082c103050810ffdffffe0204 │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── X_cursor │ │ ├── alias │ │ ├── all-scroll │ │ ├── arrow │ │ ├── bd_double_arrow │ │ ├── bottom_left_corner │ │ ├── bottom_right_corner │ │ ├── bottom_side │ │ ├── bottom_tee │ │ ├── c7088f0f3e6c8088236ef8e1e3e70000 │ │ ├── cell │ │ ├── circle │ │ ├── col-resize │ │ ├── context-menu │ │ ├── copy │ │ ├── cross │ │ ├── cross_reverse │ │ ├── crossed_circle │ │ ├── crosshair │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── default │ │ ├── diamond_cross │ │ ├── dnd-ask │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── dot_box_mask │ │ ├── dotbox │ │ ├── double_arrow │ │ ├── draft_large │ │ ├── draft_small │ │ ├── draped_box │ │ ├── e-resize │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── ew-resize │ │ ├── fcf1c3c7cd4491d801f1e1c78f100000 │ │ ├── fd_double_arrow │ │ ├── fleur │ │ ├── grab │ │ ├── grabbing │ │ ├── h_double_arrow │ │ ├── hand │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── icon │ │ ├── left_ptr │ │ ├── left_ptr_help │ │ ├── left_ptr_watch │ │ ├── left_side │ │ ├── left_tee │ │ ├── link │ │ ├── ll_angle │ │ ├── lr_angle │ │ ├── move │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nesw-resize │ │ ├── no-drop │ │ ├── not-allowed │ │ ├── ns-resize │ │ ├── nw-resize │ │ ├── nwse-resize │ │ ├── pencil │ │ ├── pirate │ │ ├── plus │ │ ├── pointer │ │ ├── pointer-move │ │ ├── progress │ │ ├── question_arrow │ │ ├── right_ptr │ │ ├── right_side │ │ ├── right_tee │ │ ├── row-resize │ │ ├── s-resize │ │ ├── sb_down_arrow │ │ ├── sb_h_double_arrow │ │ ├── sb_left_arrow │ │ ├── sb_right_arrow │ │ ├── sb_up_arrow │ │ ├── sb_v_double_arrow │ │ ├── se-resize │ │ ├── size_all │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── size_hor │ │ ├── size_ver │ │ ├── sw-resize │ │ ├── target │ │ ├── tcross │ │ ├── text │ │ ├── top_left_arrow │ │ ├── top_left_corner │ │ ├── top_right_corner │ │ ├── top_side │ │ ├── top_tee │ │ ├── ul_angle │ │ ├── ur_angle │ │ ├── v_double_arrow │ │ ├── vertical-text │ │ ├── w-resize │ │ ├── wait │ │ ├── watch │ │ ├── xterm │ │ ├── zoom-in │ │ └── zoom-out │ └── index.theme.in └── mate-white │ ├── Makefile.am │ └── cursors │ ├── 00008160000006810000408080010102 │ ├── 028006030e0e7ebffc7f7070c0600140 │ ├── 03b6e0fcb3499374a867c041f52298f0 │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ ├── 1081e37283d90000800003c07f3ef6bf │ ├── 14fef782d02440884392942c11205230 │ ├── 2870a09082c103050810ffdffffe0204 │ ├── 3085a0e285430894940527032f8b26df │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ ├── 4498f0e0c1937ffe01fd06f973665830 │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ ├── 6407b0e94181790501fd1e167b474872 │ ├── 640fb0e74195791501fd1ed57b41487f │ ├── 9081237383d90e509aa00f00170e968f │ ├── 9d800788f1b08800ae810202380a0822 │ ├── AUTHORS │ ├── Makefile.am │ ├── X_cursor │ ├── alias │ ├── all-scroll │ ├── arrow │ ├── bd_double_arrow │ ├── bottom_left_corner │ ├── bottom_right_corner │ ├── bottom_side │ ├── bottom_tee │ ├── cell │ ├── circle │ ├── col-resize │ ├── color-picker │ ├── context-menu │ ├── copy │ ├── cross │ ├── cross_reverse │ ├── crossed_circle │ ├── crosshair │ ├── default │ ├── diamond_cross │ ├── dnd-ask │ ├── dnd-copy │ ├── dnd-link │ ├── dnd-move │ ├── dnd-no-drop │ ├── dnd-none │ ├── dot_box_mask │ ├── dotbox │ ├── double_arrow │ ├── draft_large │ ├── draft_small │ ├── draped_box │ ├── e-resize │ ├── ew-resize │ ├── fcf1c3c7cd4491d801f1e1c78f100000 │ ├── fd_double_arrow │ ├── fleur │ ├── grab │ ├── grabbing │ ├── h_double_arrow │ ├── hand │ ├── hand1 │ ├── hand2 │ ├── help │ ├── icon │ ├── left_ptr │ ├── left_ptr_help │ ├── left_ptr_watch │ ├── left_side │ ├── left_tee │ ├── link │ ├── ll_angle │ ├── lr_angle │ ├── move │ ├── n-resize │ ├── ne-resize │ ├── nesw-resize │ ├── no-drop │ ├── not-allowed │ ├── ns-resize │ ├── nw-resize │ ├── nwse-resize │ ├── pencil │ ├── pirate │ ├── plus │ ├── pointer │ ├── pointer-move │ ├── progress │ ├── question_arrow │ ├── right_ptr │ ├── right_side │ ├── right_tee │ ├── row-resize │ ├── s-resize │ ├── sb_down_arrow │ ├── sb_h_double_arrow │ ├── sb_left_arrow │ ├── sb_right_arrow │ ├── sb_up_arrow │ ├── sb_v_double_arrow │ ├── se-resize │ ├── size_all │ ├── size_bdiag │ ├── size_fdiag │ ├── size_hor │ ├── size_ver │ ├── sw-resize │ ├── target │ ├── tcross │ ├── text │ ├── top_left_arrow │ ├── top_left_corner │ ├── top_right_corner │ ├── top_side │ ├── top_tee │ ├── ul_angle │ ├── ur_angle │ ├── v_double_arrow │ ├── vertical-text │ ├── w-resize │ ├── wait │ ├── watch │ ├── xterm │ ├── zoom-in │ └── zoom-out ├── desktop-themes ├── BlackMATE-border │ ├── Makefile.am │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── bar.png │ │ ├── bar_unfocused.png │ │ ├── button-close-focus.png │ │ ├── button-max-focus.png │ │ ├── button-max-focus1.png │ │ ├── button-min-focus.png │ │ ├── menu-button-pressed.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── neutral.png │ │ ├── unabove-button-unfocus.png │ │ ├── unabove-button.png │ │ ├── unfocus.png │ │ └── yellow.png ├── BlackMATE │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── apps │ │ ├── Makefile.am │ │ └── yumex.css │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace-hover.png │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── checkbox-focused.svg │ │ ├── checkbox-off-focused.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox.svg │ │ ├── cinnamon.css │ │ ├── close.svg │ │ ├── corner-ripple.png │ │ ├── overview-hover.png │ │ ├── overview.png │ │ ├── panel-button-highlight-narrow.svg │ │ ├── radiobutton-off.svg │ │ ├── radiobutton.svg │ │ ├── thumbnail.png │ │ ├── toggle-off-intl.png │ │ ├── toggle-off-us.png │ │ ├── toggle-on-intl.png │ │ ├── toggle-on-us.png │ │ └── trash-icon.png │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── Styles │ │ │ ├── Makefile.am │ │ │ ├── caja.rc │ │ │ └── terminal.rc │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── bg-entry.png │ │ │ ├── bg.png │ │ │ ├── border-entry.png │ │ │ └── resize-grip.png │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── button-active-border-dark.svg │ │ │ ├── button-active-border-dark1.svg │ │ │ ├── button-border-dark.svg │ │ │ ├── button-border-dark1.svg │ │ │ ├── button-default-active-border-dark.svg │ │ │ ├── button-default-border-dark.svg │ │ │ ├── checkbox-checked-dark.svg │ │ │ ├── checkbox-checked-insensitive-dark.svg │ │ │ ├── checkbox-checked-lessdark.svg │ │ │ ├── checkbox-menuitem-checked-insensitive.svg │ │ │ ├── checkbox-menuitem-checked-prelight.svg │ │ │ ├── checkbox-menuitem-checked.svg │ │ │ ├── checkbox-menuitem-mixed-insensitive.svg │ │ │ ├── checkbox-menuitem-mixed-prelight.svg │ │ │ ├── checkbox-menuitem-mixed.svg │ │ │ ├── checkbox-mixed-dark.svg │ │ │ ├── checkbox-mixed-insensitive-dark.svg │ │ │ ├── checkbox-mixed-lessdark.svg │ │ │ ├── checkbox-unchecked-dark.svg │ │ │ ├── checkbox-unchecked-insensitive-dark.svg │ │ │ ├── checkbox-unchecked-lessdark.svg │ │ │ ├── entry-border-focused-dark.svg │ │ │ ├── entry-border-normal-dark.svg │ │ │ ├── entry-border-normal-dark1.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── menu-border-dark.svg │ │ │ ├── notebook-pane-separator-grip-hover.svg │ │ │ ├── notebook-pane-separator-grip-vertical-hover.svg │ │ │ ├── notebook-pane-separator-grip-vertical.svg │ │ │ ├── notebook-pane-separator-grip.svg │ │ │ ├── pane-separator-grip-hover.svg │ │ │ ├── pane-separator-grip-vertical-hover.svg │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── panel-grid.svg │ │ │ ├── primary-toolbar-button-active-border-dark.svg │ │ │ ├── primary-toolbar-raised-button-border-dark.svg │ │ │ ├── progressbar-border-dark.svg │ │ │ ├── progressbar-border-vertical-dark.svg │ │ │ ├── radio-menuitem-checked-insensitive.svg │ │ │ ├── radio-menuitem-checked-prelight.svg │ │ │ ├── radio-menuitem-checked.svg │ │ │ ├── radio-menuitem-mixed-insensitive.svg │ │ │ ├── radio-menuitem-mixed-prelight.svg │ │ │ ├── radio-menuitem-mixed.svg │ │ │ ├── radio-mixed-dark.svg │ │ │ ├── radio-mixed-insensitive-dark.svg │ │ │ ├── radio-mixed-lessdark.svg │ │ │ ├── radio-selected-dark.svg │ │ │ ├── radio-selected-insensitive-dark.svg │ │ │ ├── radio-selected-lessdark.svg │ │ │ ├── radio-unselected-dark.svg │ │ │ ├── radio-unselected-insensitive-dark.svg │ │ │ ├── radio-unselected-lessdark.svg │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-horizontal-dark.svg │ │ │ ├── scale-slider-horizontal-insensitive-dark.svg │ │ │ ├── scale-slider-marks-above-horizontal-dark.svg │ │ │ ├── scale-slider-marks-above-horizontal-insensitive-dark.svg │ │ │ ├── scale-slider-marks-above-vertical-dark.svg │ │ │ ├── scale-slider-marks-above-vertical-insensitive-dark.svg │ │ │ ├── scale-slider-marks-below-horizontal-dark.svg │ │ │ ├── scale-slider-marks-below-horizontal-insensitive-dark.svg │ │ │ ├── scale-slider-marks-below-vertical-dark.svg │ │ │ ├── scale-slider-marks-below-vertical-insensitive-dark.svg │ │ │ ├── scale-slider-vertical-dark.svg │ │ │ ├── scale-slider-vertical-insensitive-dark.svg │ │ │ ├── sidebar-radio-checked-dark.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-dark.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── slider_fine_horizontal.svg │ │ │ ├── slider_fine_vertical.svg │ │ │ ├── switch-slider-grip.svg │ │ │ ├── tab-active-border.svg │ │ │ ├── tab-bottom-active-border.svg │ │ │ ├── tab-left-active-border.svg │ │ │ ├── tab-right-active-border.svg │ │ │ ├── treeview-border-dark.svg │ │ │ ├── treeview-focus-border-dark.svg │ │ │ ├── trough-border-horizontal-dark.svg │ │ │ ├── trough-border-horizontal-dark1.svg │ │ │ ├── trough-border-switch-dark.svg │ │ │ ├── trough-border-vertical-dark.svg │ │ │ └── trough-border-vertical-dark1.svg │ │ ├── gnome-applications.css │ │ ├── gtk-dark.css │ │ ├── gtk-main-dark.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets-dark.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ ├── settings.ini.in │ │ ├── unity.css │ │ ├── window-controls.css │ │ └── window-controls │ │ │ ├── Makefile.am │ │ │ ├── button-close-focus.png │ │ │ ├── button-max-focus.png │ │ │ ├── button-max-focus1.png │ │ │ ├── button-min-focus.png │ │ │ ├── menu-button-pressed.png │ │ │ ├── neutral.png │ │ │ ├── unabove-button-unfocus.png │ │ │ ├── unabove-button.png │ │ │ ├── unfocus.png │ │ │ └── yellow.png │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ ├── bar.png │ │ ├── bar_unfocused.png │ │ ├── button-close-focus.png │ │ ├── button-max-focus.png │ │ ├── button-max-focus1.png │ │ ├── button-min-focus.png │ │ ├── menu-button-pressed.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── neutral.png │ │ ├── unabove-button-unfocus.png │ │ ├── unabove-button.png │ │ ├── unfocus.png │ │ └── yellow.png │ └── unity │ │ ├── Makefile.am │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ └── unmaximize_unfocused_pressed.png ├── Blue-Submarine-border │ ├── Makefile.am │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── metacity-theme-1.xml │ │ └── stripes.png ├── Blue-Submarine │ ├── Makefile.am │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── cinnamon.css │ │ ├── close-window.svg │ │ ├── close.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── filter-selected-ltr.svg │ │ ├── filter-selected-rtl.svg │ │ ├── gdm.css │ │ ├── menu.png │ │ ├── overview1.png │ │ ├── overview2.png │ │ ├── panel-button-border.svg │ │ ├── panel-button-highlight-narrow.svg │ │ ├── panel-button-highlight-wide.svg │ │ ├── player-paused.svg │ │ ├── player-playing.svg │ │ ├── player-stopped.svg │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── scroll-hhandle.svg │ │ ├── scroll-vhandle.svg │ │ ├── source-button-border.svg │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── thumbnail.png │ │ ├── ws-switch-arrow-down.svg │ │ └── ws-switch-arrow-up.svg │ ├── emerald │ │ ├── Makefile.am │ │ └── blue-submarine.emerald │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── apps │ │ │ ├── Handles │ │ │ │ ├── Makefile.am │ │ │ │ ├── handle-caja.png │ │ │ │ └── resize-grip.png │ │ │ ├── Makefile.am │ │ │ ├── Panel │ │ │ │ ├── Makefile.am │ │ │ │ ├── arrow-blank.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── panel-bg.png │ │ │ │ ├── panel-button-active.png │ │ │ │ ├── panel-button-hover.png │ │ │ │ └── panel-button-inactive.png │ │ │ ├── caja.rc │ │ │ ├── gmusicbrowser.rc │ │ │ ├── panel.rc │ │ │ ├── pcmanfm.rc │ │ │ ├── pluma.rc │ │ │ ├── terminal.rc │ │ │ └── thunar.rc │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── handle.png │ │ │ ├── notebook-gap-bottom.png │ │ │ ├── notebook-gap-left.png │ │ │ ├── notebook-gap-right.png │ │ │ ├── notebook-gap-top.png │ │ │ ├── notebook.png │ │ │ ├── null.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-selected-insensitive.png │ │ │ ├── radio-selected.png │ │ │ ├── radio-unselected-insensitive.png │ │ │ ├── radio-unselected.png │ │ │ ├── resize-grip.png │ │ │ ├── resize-grip.svg │ │ │ ├── scroll-background.png │ │ │ ├── slider-horizontal.png │ │ │ ├── slider-vertical.png │ │ │ └── toolbar.png │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-menuitem-checked-insensitive.svg │ │ │ ├── checkbox-menuitem-checked-prelight.svg │ │ │ ├── checkbox-menuitem-checked.svg │ │ │ ├── checkbox-menuitem-mixed-insensitive.svg │ │ │ ├── checkbox-menuitem-mixed-prelight.svg │ │ │ ├── checkbox-menuitem-mixed.svg │ │ │ ├── checkbox-menuitem-unchecked.svg │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed.svg │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-menuitem-checked-insensitive.svg │ │ │ ├── radio-menuitem-checked-prelight.svg │ │ │ ├── radio-menuitem-checked.svg │ │ │ ├── radio-menuitem-mixed-insensitive.svg │ │ │ ├── radio-menuitem-mixed-prelight.svg │ │ │ ├── radio-menuitem-mixed.svg │ │ │ ├── radio-menuitem-unselected.svg │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed.svg │ │ │ ├── radio-selected-insensitive.png │ │ │ ├── radio-selected.png │ │ │ ├── radio-selected.svg │ │ │ ├── radio-unselected-insensitive.png │ │ │ ├── radio-unselected.png │ │ │ ├── radio-unselected.svg │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-hover.svg │ │ │ ├── scale-slider-insensitive.svg │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-above-horizontal.png │ │ │ ├── scale-slider-marks-above-vertical-insensitive.png │ │ │ ├── scale-slider-marks-above-vertical.png │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-below-horizontal.png │ │ │ ├── scale-slider-marks-below-vertical-insensitive.png │ │ │ ├── scale-slider-marks-below-vertical.png │ │ │ ├── scale-slider.svg │ │ │ ├── sidebar-radio-checked.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── sidebar-radio-selected.svg │ │ │ ├── slider_fine_horizontal.svg │ │ │ ├── slider_fine_vertical.svg │ │ │ ├── switch-dark-off-disabled.svg │ │ │ ├── switch-dark-off.svg │ │ │ ├── switch-dark-on-disabled.svg │ │ │ ├── switch-dark-on.svg │ │ │ ├── switch-off-disabled.svg │ │ │ ├── switch-off.svg │ │ │ ├── switch-on-disabled.svg │ │ │ └── switch-on.svg │ │ ├── gnome-applications.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── menu.css │ │ ├── other-applications.css │ │ ├── scrollbar.css │ │ ├── settings.ini.in │ │ └── sidebar.css │ ├── index.theme.in │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── metacity-theme-1.xml │ │ └── stripes.png ├── BlueMenta-border │ ├── COPYING │ ├── Makefile.am │ ├── README │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── menu.png │ │ ├── menu_prelight.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── trough_left.png │ │ ├── trough_middle.png │ │ ├── trough_right.png │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ └── unmaximize_unfocused_prelight.svg ├── BlueMenta-dark │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── cinnamon.css │ │ ├── close-window.svg │ │ ├── close.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── filter-selected-ltr.svg │ │ ├── filter-selected-rtl.svg │ │ ├── gdm.css │ │ ├── menu.png │ │ ├── overview1.png │ │ ├── overview2.png │ │ ├── panel-button-border.svg │ │ ├── panel-button-highlight-narrow.svg │ │ ├── panel-button-highlight-wide.svg │ │ ├── player-paused.svg │ │ ├── player-playing.svg │ │ ├── player-stopped.svg │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── scroll-hhandle.svg │ │ ├── scroll-vhandle.svg │ │ ├── source-button-border.svg │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── thumbnail.png │ │ ├── ws-switch-arrow-down.svg │ │ └── ws-switch-arrow-up.svg │ ├── emerald │ │ ├── Makefile.am │ │ ├── Menta.emerald │ │ └── README │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── apps │ │ │ ├── Caja │ │ │ │ ├── Makefile.am │ │ │ │ ├── breadcrumb_active.png │ │ │ │ ├── breadcrumb_normal.png │ │ │ │ ├── breadcrumb_prelight.png │ │ │ │ ├── caja-toolbar.png │ │ │ │ ├── extra-widget.png │ │ │ │ ├── left_slider_normal.png │ │ │ │ ├── mode_normal.png │ │ │ │ ├── mode_prelight.png │ │ │ │ ├── mode_pressed.png │ │ │ │ ├── resize-grip.png │ │ │ │ ├── right_slider_normal.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider.png │ │ │ │ └── trough.png │ │ │ ├── Handles │ │ │ │ ├── Makefile.am │ │ │ │ ├── handle-caja.png │ │ │ │ └── resize_grip.png │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── Others │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── caja.rc │ │ │ ├── chromium.rc │ │ │ ├── combo_down.png │ │ │ ├── dummy.png │ │ │ ├── pluma.rc │ │ │ ├── stock_back.png │ │ │ ├── stock_find.png │ │ │ ├── stock_forward.png │ │ │ ├── stock_home.png │ │ │ ├── stock_refresh.png │ │ │ ├── stock_stop.png │ │ │ └── thunar.rc │ │ ├── gtkrc │ │ └── widgets │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ ├── Makefile.am │ │ │ └── null.png │ │ │ ├── Others │ │ │ ├── Makefile.am │ │ │ ├── close.png │ │ │ ├── handle.png │ │ │ ├── null.png │ │ │ └── resize-grip.png │ │ │ ├── Panel │ │ │ ├── Makefile.am │ │ │ ├── arrow-blank.png │ │ │ ├── arrow-down.png │ │ │ ├── handle-h.png │ │ │ ├── handle-v.png │ │ │ ├── panel-bg.png │ │ │ ├── panel-button-active.png │ │ │ ├── panel-button-hover.png │ │ │ └── panel-button-inactive.png │ │ │ ├── Scale │ │ │ ├── Makefile.am │ │ │ ├── slider-hover.png │ │ │ ├── slider-ins.png │ │ │ ├── slider.png │ │ │ ├── trough-horizontal.png │ │ │ └── trough-vertical.png │ │ │ └── panel.rc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── check-active-ins.png │ │ │ ├── check-active.png │ │ │ ├── check-mixed-active-ins.png │ │ │ ├── check-mixed-active.png │ │ │ ├── check-normal-ins.png │ │ │ ├── check-normal.png │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── menuitem-checkbox-checked-insensitive.svg │ │ │ ├── menuitem-checkbox-checked-selected.svg │ │ │ ├── menuitem-checkbox-checked.svg │ │ │ ├── menuitem-checkbox-mixed-insensitive.svg │ │ │ ├── menuitem-checkbox-mixed-selected.svg │ │ │ ├── menuitem-checkbox-mixed.svg │ │ │ ├── menuitem-radio-checked-insensitive.svg │ │ │ ├── menuitem-radio-checked-selected.svg │ │ │ ├── menuitem-radio-checked.svg │ │ │ ├── null.png │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-active-ins.png │ │ │ ├── radio-active.png │ │ │ ├── radio-mixed-active-ins.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-normal-ins.png │ │ │ ├── radio-normal.png │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-marks-above-horizontal-active.png │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-above-horizontal.png │ │ │ ├── scale-slider-marks-above-vertical-active.png │ │ │ ├── scale-slider-marks-above-vertical-insensitive.png │ │ │ ├── scale-slider-marks-above-vertical.png │ │ │ ├── scale-slider-marks-below-horizontal-active.png │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-below-horizontal.png │ │ │ ├── scale-slider-marks-below-vertical-active.png │ │ │ ├── scale-slider-marks-below-vertical-insensitive.png │ │ │ ├── scale-slider-marks-below-vertical.png │ │ │ ├── sidebar-radio-checked.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── sidebar-radio-selected.svg │ │ │ ├── slider-hover.svg │ │ │ ├── slider-ins.svg │ │ │ ├── slider.svg │ │ │ ├── switch-off-ins.png │ │ │ ├── switch-off-ins.svg │ │ │ ├── switch-off.png │ │ │ ├── switch-off.svg │ │ │ ├── switch-on-ins.png │ │ │ ├── switch-on-ins.svg │ │ │ ├── switch-on.png │ │ │ ├── switch-on.svg │ │ │ └── thumbnail-frame.png │ │ ├── borders │ │ │ ├── Makefile.am │ │ │ ├── button-active-focus.png │ │ │ ├── button-active-ins.png │ │ │ ├── button-active.png │ │ │ ├── button-focus.png │ │ │ ├── button-ins.png │ │ │ ├── button.png │ │ │ └── nohl-generic-border.png │ │ ├── gnome-applications.css │ │ ├── gtk-fallback.css │ │ ├── gtk-main-common.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets-backgrounds.css │ │ ├── gtk-widgets-borders.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ ├── settings.ini.in │ │ ├── unity.css │ │ ├── window-controls.css │ │ └── window-controls │ │ │ ├── Makefile.am │ │ │ ├── close_focused_normal.png │ │ │ ├── close_focused_prelight.png │ │ │ ├── close_focused_pressed.png │ │ │ ├── close_unfocused.png │ │ │ ├── close_unfocused_prelight.png │ │ │ ├── maximize_focused_normal.png │ │ │ ├── maximize_focused_prelight.png │ │ │ ├── maximize_focused_pressed.png │ │ │ ├── maximize_unfocused.png │ │ │ ├── maximize_unfocused_prelight.png │ │ │ ├── menu.png │ │ │ ├── menu_prelight.png │ │ │ ├── minimize_focused_normal.png │ │ │ ├── minimize_focused_prelight.png │ │ │ ├── minimize_focused_pressed.png │ │ │ ├── minimize_unfocused.png │ │ │ └── minimize_unfocused_prelight.png │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── menu.png │ │ ├── menu_prelight.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── trough_left.png │ │ ├── trough_middle.png │ │ ├── trough_right.png │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ └── unmaximize_unfocused_prelight.svg │ ├── unity │ │ ├── Makefile.am │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ └── unmaximize_unfocused_pressed.png │ └── xfwm4 │ │ ├── Makefile.am │ │ ├── bottom-active.png │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.png │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.png │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.png │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.png │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.png │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-prelight.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-prelight.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.png │ │ ├── left-active.xpm │ │ ├── left-inactive.png │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-prelight.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-prelight.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.png │ │ ├── right-active.xpm │ │ ├── right-inactive.png │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active-shaded.xpm │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── title-left-active.png │ │ ├── title-right-active.png │ │ ├── top-left-active-shaded.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active-shaded.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm ├── BlueMenta │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── cinnamon.css │ │ ├── close-window.svg │ │ ├── close.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── filter-selected-ltr.svg │ │ ├── filter-selected-rtl.svg │ │ ├── gdm.css │ │ ├── menu.png │ │ ├── overview1.png │ │ ├── overview2.png │ │ ├── panel-button-border.svg │ │ ├── panel-button-highlight-narrow.svg │ │ ├── panel-button-highlight-wide.svg │ │ ├── player-paused.svg │ │ ├── player-playing.svg │ │ ├── player-stopped.svg │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── scroll-hhandle.svg │ │ ├── scroll-vhandle.svg │ │ ├── source-button-border.svg │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── thumbnail.png │ │ ├── ws-switch-arrow-down.svg │ │ └── ws-switch-arrow-up.svg │ ├── emerald │ │ ├── Makefile.am │ │ ├── Menta.emerald │ │ └── README │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── apps │ │ │ ├── Caja │ │ │ │ ├── Makefile.am │ │ │ │ ├── breadcrumb_active.png │ │ │ │ ├── breadcrumb_normal.png │ │ │ │ ├── breadcrumb_prelight.png │ │ │ │ ├── caja-toolbar.png │ │ │ │ ├── extra-widget.png │ │ │ │ ├── left_slider_normal.png │ │ │ │ ├── mode_normal.png │ │ │ │ ├── mode_prelight.png │ │ │ │ ├── mode_pressed.png │ │ │ │ ├── resize-grip.png │ │ │ │ ├── right_slider_normal.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider.png │ │ │ │ └── trough.png │ │ │ ├── Handles │ │ │ │ ├── Makefile.am │ │ │ │ ├── handle-caja.png │ │ │ │ └── resize_grip.png │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── Others │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── caja.rc │ │ │ ├── chromium.rc │ │ │ ├── combo_down.png │ │ │ ├── dummy.png │ │ │ ├── pluma.rc │ │ │ ├── stock_back.png │ │ │ ├── stock_find.png │ │ │ ├── stock_forward.png │ │ │ ├── stock_home.png │ │ │ ├── stock_refresh.png │ │ │ ├── stock_stop.png │ │ │ └── thunar.rc │ │ ├── gtkrc │ │ └── widgets │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ ├── Makefile.am │ │ │ └── null.png │ │ │ ├── Others │ │ │ ├── Makefile.am │ │ │ ├── close.png │ │ │ ├── handle.png │ │ │ ├── null.png │ │ │ └── resize-grip.png │ │ │ ├── Panel │ │ │ ├── Makefile.am │ │ │ ├── arrow-blank.png │ │ │ ├── arrow-down.png │ │ │ ├── handle-h.png │ │ │ ├── handle-v.png │ │ │ ├── panel-bg.png │ │ │ ├── panel-button-active.png │ │ │ ├── panel-button-hover.png │ │ │ └── panel-button-inactive.png │ │ │ ├── Scale │ │ │ ├── Makefile.am │ │ │ ├── slider-hover.png │ │ │ ├── slider-ins.png │ │ │ ├── slider.png │ │ │ ├── trough-horizontal.png │ │ │ └── trough-vertical.png │ │ │ └── panel.rc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── check-active-ins.png │ │ │ ├── check-active.png │ │ │ ├── check-mixed-active-ins.png │ │ │ ├── check-mixed-active.png │ │ │ ├── check-normal-ins.png │ │ │ ├── check-normal.png │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── menuitem-checkbox-checked-insensitive.svg │ │ │ ├── menuitem-checkbox-checked-selected.svg │ │ │ ├── menuitem-checkbox-checked.svg │ │ │ ├── menuitem-checkbox-mixed-insensitive.svg │ │ │ ├── menuitem-checkbox-mixed-selected.svg │ │ │ ├── menuitem-checkbox-mixed.svg │ │ │ ├── menuitem-radio-checked-insensitive.svg │ │ │ ├── menuitem-radio-checked-selected.svg │ │ │ ├── menuitem-radio-checked.svg │ │ │ ├── null.png │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-active-ins.png │ │ │ ├── radio-active.png │ │ │ ├── radio-mixed-active-ins.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-normal-ins.png │ │ │ ├── radio-normal.png │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-marks-above-horizontal-active.png │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-above-horizontal.png │ │ │ ├── scale-slider-marks-above-vertical-active.png │ │ │ ├── scale-slider-marks-above-vertical-insensitive.png │ │ │ ├── scale-slider-marks-above-vertical.png │ │ │ ├── scale-slider-marks-below-horizontal-active.png │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-below-horizontal.png │ │ │ ├── scale-slider-marks-below-vertical-active.png │ │ │ ├── scale-slider-marks-below-vertical-insensitive.png │ │ │ ├── scale-slider-marks-below-vertical.png │ │ │ ├── sidebar-radio-checked.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── sidebar-radio-selected.svg │ │ │ ├── slider-hover.svg │ │ │ ├── slider-ins.svg │ │ │ ├── slider.svg │ │ │ ├── switch-off-ins.png │ │ │ ├── switch-off-ins.svg │ │ │ ├── switch-off.png │ │ │ ├── switch-off.svg │ │ │ ├── switch-on-ins.png │ │ │ ├── switch-on-ins.svg │ │ │ ├── switch-on.png │ │ │ ├── switch-on.svg │ │ │ └── thumbnail-frame.png │ │ ├── borders │ │ │ ├── Makefile.am │ │ │ ├── button-active-focus.png │ │ │ ├── button-active-ins.png │ │ │ ├── button-active.png │ │ │ ├── button-focus.png │ │ │ ├── button-ins.png │ │ │ ├── button.png │ │ │ └── nohl-generic-border.png │ │ ├── gnome-applications.css │ │ ├── gtk-fallback.css │ │ ├── gtk-main-common.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets-backgrounds.css │ │ ├── gtk-widgets-borders.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ ├── settings.ini.in │ │ ├── unity.css │ │ ├── window-controls.css │ │ └── window-controls │ │ │ ├── Makefile.am │ │ │ ├── close_focused_normal.png │ │ │ ├── close_focused_prelight.png │ │ │ ├── close_focused_pressed.png │ │ │ ├── close_unfocused.png │ │ │ ├── close_unfocused_prelight.png │ │ │ ├── maximize_focused_normal.png │ │ │ ├── maximize_focused_prelight.png │ │ │ ├── maximize_focused_pressed.png │ │ │ ├── maximize_unfocused.png │ │ │ ├── maximize_unfocused_prelight.png │ │ │ ├── menu.png │ │ │ ├── menu_prelight.png │ │ │ ├── minimize_focused_normal.png │ │ │ ├── minimize_focused_prelight.png │ │ │ ├── minimize_focused_pressed.png │ │ │ ├── minimize_unfocused.png │ │ │ └── minimize_unfocused_prelight.png │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── menu.png │ │ ├── menu_prelight.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── trough_left.png │ │ ├── trough_middle.png │ │ ├── trough_right.png │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ └── unmaximize_unfocused_prelight.svg │ ├── unity │ │ ├── Makefile.am │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ └── unmaximize_unfocused_pressed.png │ └── xfwm4 │ │ ├── Makefile.am │ │ ├── bottom-active.png │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.png │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.png │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.png │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.png │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.png │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-prelight.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-prelight.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.png │ │ ├── left-active.xpm │ │ ├── left-inactive.png │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-prelight.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-prelight.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.png │ │ ├── right-active.xpm │ │ ├── right-inactive.png │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active-shaded.xpm │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── title-left-active.png │ │ ├── title-right-active.png │ │ ├── top-left-active-shaded.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active-shaded.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm ├── ContrastHigh │ ├── Makefile.am │ └── index.theme.in ├── Green-Submarine-border │ ├── Makefile.am │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── metacity-theme-1.xml │ │ └── stripes.png ├── Green-Submarine │ ├── Makefile.am │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── cinnamon.css │ │ ├── close-window.svg │ │ ├── close.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── filter-selected-ltr.svg │ │ ├── filter-selected-rtl.svg │ │ ├── gdm.css │ │ ├── menu.png │ │ ├── overview1.png │ │ ├── overview2.png │ │ ├── panel-button-border.svg │ │ ├── panel-button-highlight-narrow.svg │ │ ├── panel-button-highlight-wide.svg │ │ ├── player-paused.svg │ │ ├── player-playing.svg │ │ ├── player-stopped.svg │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── scroll-hhandle.svg │ │ ├── scroll-vhandle.svg │ │ ├── source-button-border.svg │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── thumbnail.png │ │ ├── ws-switch-arrow-down.svg │ │ └── ws-switch-arrow-up.svg │ ├── emerald │ │ ├── Makefile.am │ │ └── green-submarine.emerald │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── apps │ │ │ ├── Handles │ │ │ │ ├── Makefile.am │ │ │ │ ├── handle-caja.png │ │ │ │ └── resize-grip.png │ │ │ ├── Makefile.am │ │ │ ├── Panel │ │ │ │ ├── Makefile.am │ │ │ │ ├── arrow-blank.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── handle-h.png │ │ │ │ ├── handle-v.png │ │ │ │ ├── panel-bg.png │ │ │ │ ├── panel-button-active.png │ │ │ │ ├── panel-button-hover.png │ │ │ │ └── panel-button-inactive.png │ │ │ ├── caja.rc │ │ │ ├── gmusicbrowser.rc │ │ │ ├── panel.rc │ │ │ ├── pcmanfm.rc │ │ │ ├── pluma.rc │ │ │ ├── terminal.rc │ │ │ └── thunar.rc │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── handle.png │ │ │ ├── notebook-gap-bottom.png │ │ │ ├── notebook-gap-left.png │ │ │ ├── notebook-gap-right.png │ │ │ ├── notebook-gap-top.png │ │ │ ├── notebook.png │ │ │ ├── null.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-selected-insensitive.png │ │ │ ├── radio-selected.png │ │ │ ├── radio-unselected-insensitive.png │ │ │ ├── radio-unselected.png │ │ │ ├── resize-grip.png │ │ │ ├── resize-grip.svg │ │ │ ├── scroll-background.png │ │ │ ├── slider-horizontal.png │ │ │ ├── slider-vertical.png │ │ │ └── toolbar.png │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-menuitem-checked-insensitive.svg │ │ │ ├── checkbox-menuitem-checked-prelight.svg │ │ │ ├── checkbox-menuitem-checked.svg │ │ │ ├── checkbox-menuitem-mixed-insensitive.svg │ │ │ ├── checkbox-menuitem-mixed-prelight.svg │ │ │ ├── checkbox-menuitem-mixed.svg │ │ │ ├── checkbox-menuitem-unchecked.svg │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed.svg │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-menuitem-checked-insensitive.svg │ │ │ ├── radio-menuitem-checked-prelight.svg │ │ │ ├── radio-menuitem-checked.svg │ │ │ ├── radio-menuitem-mixed-insensitive.svg │ │ │ ├── radio-menuitem-mixed-prelight.svg │ │ │ ├── radio-menuitem-mixed.svg │ │ │ ├── radio-menuitem-unselected.svg │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed.svg │ │ │ ├── radio-selected-insensitive.png │ │ │ ├── radio-selected.png │ │ │ ├── radio-selected.svg │ │ │ ├── radio-unselected-insensitive.png │ │ │ ├── radio-unselected.png │ │ │ ├── radio-unselected.svg │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-hover.svg │ │ │ ├── scale-slider-insensitive.svg │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-above-horizontal.png │ │ │ ├── scale-slider-marks-above-vertical-insensitive.png │ │ │ ├── scale-slider-marks-above-vertical.png │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-below-horizontal.png │ │ │ ├── scale-slider-marks-below-vertical-insensitive.png │ │ │ ├── scale-slider-marks-below-vertical.png │ │ │ ├── scale-slider.svg │ │ │ ├── sidebar-radio-checked.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── sidebar-radio-selected.svg │ │ │ ├── slider_fine_horizontal.svg │ │ │ ├── slider_fine_vertical.svg │ │ │ ├── switch-dark-off-disabled.svg │ │ │ ├── switch-dark-off.svg │ │ │ ├── switch-dark-on-disabled.svg │ │ │ ├── switch-dark-on.svg │ │ │ ├── switch-off-disabled.svg │ │ │ ├── switch-off.svg │ │ │ ├── switch-on-disabled.svg │ │ │ └── switch-on.svg │ │ ├── gnome-applications.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── menu.css │ │ ├── other-applications.css │ │ ├── scrollbar.css │ │ ├── settings.ini.in │ │ └── sidebar.css │ ├── index.theme.in │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── metacity-theme-1.xml │ │ └── stripes.png ├── GreenLaguna-border │ ├── COPYING │ ├── Makefile.am │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── button-close-focus.png │ │ ├── button-max-focus.png │ │ ├── button-max-focus1.png │ │ ├── button-min-focus.png │ │ ├── menu-button-pressed.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── neutral.png │ │ ├── unabove-button-unfocus.png │ │ ├── unabove-button.png │ │ ├── unfocus.png │ │ └── yellow.png ├── GreenLaguna │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── Styles │ │ │ ├── Makefile.am │ │ │ └── caja.rc │ │ ├── bg.png │ │ ├── gtkrc │ │ └── resize-grip.png │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── button-active-border.svg │ │ │ ├── button-border.svg │ │ │ ├── button-default-active-border.svg │ │ │ ├── button-default-border.svg │ │ │ ├── checkbox-checked-insensitive.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-menuitem-checked-insensitive.svg │ │ │ ├── checkbox-menuitem-checked-prelight.svg │ │ │ ├── checkbox-menuitem-checked.svg │ │ │ ├── checkbox-menuitem-mixed-insensitive.svg │ │ │ ├── checkbox-menuitem-mixed-prelight.svg │ │ │ ├── checkbox-menuitem-mixed.svg │ │ │ ├── checkbox-menuitem-unchecked-insensitive.svg │ │ │ ├── checkbox-menuitem-unchecked.svg │ │ │ ├── checkbox-mixed-insensitive.svg │ │ │ ├── checkbox-mixed.svg │ │ │ ├── checkbox-unchecked-insensitive.svg │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── entry-border-normal.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── menu-border.svg │ │ │ ├── pane-separator-grip-hover.svg │ │ │ ├── pane-separator-grip-vertical-hover.svg │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-menuitem-checked-insensitive.svg │ │ │ ├── radio-menuitem-checked-prelight.svg │ │ │ ├── radio-menuitem-checked.svg │ │ │ ├── radio-menuitem-mixed-insensitive.svg │ │ │ ├── radio-menuitem-mixed-prelight.svg │ │ │ ├── radio-menuitem-mixed.svg │ │ │ ├── radio-menuitem-unselected.svg │ │ │ ├── radio-mixed-insensitive.svg │ │ │ ├── radio-mixed.svg │ │ │ ├── radio-selected-insensitive.svg │ │ │ ├── radio-selected.svg │ │ │ ├── radio-unselected-insensitive.svg │ │ │ ├── radio-unselected.svg │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-horizontal-insensitive.svg │ │ │ ├── scale-slider-horizontal.svg │ │ │ ├── scale-slider-marks-above-horizontal-dark.svg │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.svg │ │ │ ├── scale-slider-marks-above-horizontal.svg │ │ │ ├── scale-slider-marks-above-vertical-insensitive.svg │ │ │ ├── scale-slider-marks-above-vertical.svg │ │ │ ├── scale-slider-marks-below-horizontal-dark.svg │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.svg │ │ │ ├── scale-slider-marks-below-horizontal.svg │ │ │ ├── scale-slider-marks-below-vertical-insensitive.svg │ │ │ ├── scale-slider-marks-below-vertical.svg │ │ │ ├── scale-slider-vertical-insensitive.svg │ │ │ ├── scale-slider-vertical.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── slider_fine_horizontal.svg │ │ │ ├── slider_fine_vertical.svg │ │ │ ├── switch-slider-grip.svg │ │ │ ├── switch-trough-border-active.svg │ │ │ └── toolbar-button-border.svg │ │ ├── gnome-applications.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ ├── settings.ini.in │ │ ├── unity.css │ │ ├── window-controls.css │ │ └── window-controls │ │ │ ├── Makefile.am │ │ │ ├── button-close-focus.png │ │ │ ├── button-max-focus.png │ │ │ ├── button-max-focus1.png │ │ │ ├── button-min-focus.png │ │ │ ├── menu-button-pressed.png │ │ │ ├── neutral.png │ │ │ ├── unabove-button-unfocus.png │ │ │ ├── unabove-button.png │ │ │ ├── unfocus.png │ │ │ └── yellow.png │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ ├── button-close-focus.png │ │ ├── button-max-focus.png │ │ ├── button-max-focus1.png │ │ ├── button-min-focus.png │ │ ├── menu-button-pressed.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── neutral.png │ │ ├── unabove-button-unfocus.png │ │ ├── unabove-button.png │ │ ├── unfocus.png │ │ └── yellow.png │ └── unity │ │ ├── Makefile.am │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ └── unmaximize_unfocused_pressed.png ├── HighContrastInverse │ ├── Makefile.am │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ └── gtkrc.in │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ └── metacity-theme-1.xml │ └── pixmaps │ │ ├── Makefile.am │ │ ├── double-click-maybe.png │ │ ├── double-click-off.png │ │ ├── double-click-on.png │ │ ├── marco-delete.png │ │ ├── marco-maximize.png │ │ ├── marco-minimize.png │ │ ├── media-backward.png │ │ ├── media-eject.png │ │ ├── media-forward.png │ │ ├── media-next.png │ │ ├── media-pause.png │ │ ├── media-play.png │ │ ├── media-prev.png │ │ ├── media-record.png │ │ ├── media-stop.png │ │ ├── printer-broken.png │ │ ├── printer-default.png │ │ ├── printer-inkjet.png │ │ ├── printer-personal-laser.png │ │ ├── printer-workgroup-laser.png │ │ ├── stock_about.png │ │ ├── stock_accessories.png │ │ ├── stock_add.png │ │ ├── stock_amusements.png │ │ ├── stock_apply.png │ │ ├── stock_attach.png │ │ ├── stock_bold.png │ │ ├── stock_book.png │ │ ├── stock_cancel.png │ │ ├── stock_cde-menu.png │ │ ├── stock_cdrom.png │ │ ├── stock_clear.png │ │ ├── stock_close.png │ │ ├── stock_commandline-browser.xpm │ │ ├── stock_commandline-history.xpm │ │ ├── stock_connect.png │ │ ├── stock_convert.png │ │ ├── stock_copy.png │ │ ├── stock_cut.png │ │ ├── stock_delete.png │ │ ├── stock_dialog_error.png │ │ ├── stock_dialog_info.png │ │ ├── stock_dialog_question.png │ │ ├── stock_dialog_warning.png │ │ ├── stock_disconnect.png │ │ ├── stock_dnd.png │ │ ├── stock_dnd_multiple.png │ │ ├── stock_drawer.png │ │ ├── stock_edit.png │ │ ├── stock_empty.png │ │ ├── stock_execute.png │ │ ├── stock_export.png │ │ ├── stock_find-and-replace.png │ │ ├── stock_find.png │ │ ├── stock_floppy.png │ │ ├── stock_go-back.png │ │ ├── stock_go-down.png │ │ ├── stock_go-forward.png │ │ ├── stock_go-up.png │ │ ├── stock_goto-bottom.png │ │ ├── stock_goto-first.png │ │ ├── stock_goto-last.png │ │ ├── stock_goto-top.png │ │ ├── stock_harddisk.png │ │ ├── stock_help.png │ │ ├── stock_home.png │ │ ├── stock_import.png │ │ ├── stock_index.png │ │ ├── stock_info.png │ │ ├── stock_insert-image.png │ │ ├── stock_insert-object.png │ │ ├── stock_insert-table.png │ │ ├── stock_internet.png │ │ ├── stock_italic.png │ │ ├── stock_jump-to.png │ │ ├── stock_justify-center.png │ │ ├── stock_justify-fill.png │ │ ├── stock_justify-left.png │ │ ├── stock_justify-right.png │ │ ├── stock_launcher-program.png │ │ ├── stock_line-in.png │ │ ├── stock_lockscreen.png │ │ ├── stock_logout.png │ │ ├── stock_mate-logo.png │ │ ├── stock_mate-util.png │ │ ├── stock_mic.png │ │ ├── stock_missing-image.png │ │ ├── stock_multimedia.png │ │ ├── stock_new.png │ │ ├── stock_no.png │ │ ├── stock_ok.png │ │ ├── stock_open.png │ │ ├── stock_paste.png │ │ ├── stock_preferences.png │ │ ├── stock_print-preview.png │ │ ├── stock_print.png │ │ ├── stock_properties.png │ │ ├── stock_quit.png │ │ ├── stock_redo.png │ │ ├── stock_refresh.png │ │ ├── stock_remove.png │ │ ├── stock_revert-to-saved.png │ │ ├── stock_run.png │ │ ├── stock_save-as.png │ │ ├── stock_save.png │ │ ├── stock_screenshot.png │ │ ├── stock_searchtool.png │ │ ├── stock_select-color.png │ │ ├── stock_select-font.png │ │ ├── stock_sort-ascending.png │ │ ├── stock_sort-descending.png │ │ ├── stock_spell-check.png │ │ ├── stock_stop.png │ │ ├── stock_strikethrough.png │ │ ├── stock_undelete.png │ │ ├── stock_underline.png │ │ ├── stock_undo.png │ │ ├── stock_volume.png │ │ ├── stock_yes.png │ │ ├── stock_zoom-100.png │ │ ├── stock_zoom-fit.png │ │ ├── stock_zoom-in.png │ │ ├── stock_zoom-out.png │ │ ├── volume-max.png │ │ ├── volume-medium.png │ │ ├── volume-min.png │ │ ├── volume-mute.png │ │ └── volume-zero.png ├── Makefile.am ├── Menta-border │ ├── COPYING │ ├── Makefile.am │ ├── README │ └── metacity-1 │ │ ├── Makefile.am │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── menu.png │ │ ├── menu_prelight.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── trough_left.png │ │ ├── trough_middle.png │ │ ├── trough_right.png │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ └── unmaximize_unfocused_prelight.svg ├── Menta │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── cinnamon │ │ ├── Makefile.am │ │ ├── add-workspace.png │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── cinnamon.css │ │ ├── close-window.svg │ │ ├── close.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── filter-selected-ltr.svg │ │ ├── filter-selected-rtl.svg │ │ ├── gdm.css │ │ ├── menu.png │ │ ├── overview1.png │ │ ├── overview2.png │ │ ├── panel-button-border.svg │ │ ├── panel-button-highlight-narrow.svg │ │ ├── panel-button-highlight-wide.svg │ │ ├── player-paused.svg │ │ ├── player-playing.svg │ │ ├── player-stopped.svg │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── scroll-hhandle.svg │ │ ├── scroll-vhandle.svg │ │ ├── source-button-border.svg │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── thumbnail.png │ │ ├── ws-switch-arrow-down.svg │ │ └── ws-switch-arrow-up.svg │ ├── emerald │ │ ├── Makefile.am │ │ ├── Menta.emerald │ │ └── README │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── apps │ │ │ ├── Caja │ │ │ │ ├── Makefile.am │ │ │ │ ├── breadcrumb_active.png │ │ │ │ ├── breadcrumb_normal.png │ │ │ │ ├── breadcrumb_prelight.png │ │ │ │ ├── caja-toolbar.png │ │ │ │ ├── extra-widget.png │ │ │ │ ├── left_slider_normal.png │ │ │ │ ├── mode_normal.png │ │ │ │ ├── mode_prelight.png │ │ │ │ ├── mode_pressed.png │ │ │ │ ├── resize-grip.png │ │ │ │ ├── right_slider_normal.png │ │ │ │ ├── slider-prelight.png │ │ │ │ ├── slider.png │ │ │ │ └── trough.png │ │ │ ├── Handles │ │ │ │ ├── Makefile.am │ │ │ │ ├── handle-caja.png │ │ │ │ └── resize_grip.png │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── Others │ │ │ │ ├── Makefile.am │ │ │ │ └── null.png │ │ │ ├── caja.rc │ │ │ ├── chromium.rc │ │ │ ├── combo_down.png │ │ │ ├── dummy.png │ │ │ ├── pluma.rc │ │ │ ├── stock_back.png │ │ │ ├── stock_find.png │ │ │ ├── stock_forward.png │ │ │ ├── stock_home.png │ │ │ ├── stock_refresh.png │ │ │ ├── stock_stop.png │ │ │ └── thunar.rc │ │ ├── gtkrc │ │ └── widgets │ │ │ ├── Makefile.am │ │ │ ├── Null │ │ │ ├── Makefile.am │ │ │ └── null.png │ │ │ ├── Others │ │ │ ├── Makefile.am │ │ │ ├── close.png │ │ │ ├── handle.png │ │ │ ├── null.png │ │ │ ├── resize-grip.png │ │ │ └── toolbar.png │ │ │ ├── Panel │ │ │ ├── Makefile.am │ │ │ ├── arrow-blank.png │ │ │ ├── arrow-down.png │ │ │ ├── handle-h.png │ │ │ ├── handle-v.png │ │ │ ├── panel-bg-black.png │ │ │ ├── panel-bg-dark-grey.png │ │ │ ├── panel-bg.png │ │ │ ├── panel-button-active.png │ │ │ ├── panel-button-hover.png │ │ │ └── panel-button-inactive.png │ │ │ ├── README │ │ │ ├── Scale │ │ │ ├── Makefile.am │ │ │ ├── slider-hover.png │ │ │ ├── slider-ins.png │ │ │ ├── slider.png │ │ │ ├── trough-horizontal.png │ │ │ └── trough-vertical.png │ │ │ ├── panel-black.rc │ │ │ ├── panel-dark-grey.rc │ │ │ └── panel.rc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── check-active-ins.png │ │ │ ├── check-active.png │ │ │ ├── check-mixed-active-ins.png │ │ │ ├── check-mixed-active.png │ │ │ ├── check-normal-ins.png │ │ │ ├── check-normal.png │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked.svg │ │ │ ├── grid-selection-unchecked.svg │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── menuitem-checkbox-checked-insensitive.svg │ │ │ ├── menuitem-checkbox-checked-selected.svg │ │ │ ├── menuitem-checkbox-checked.svg │ │ │ ├── menuitem-checkbox-mixed-insensitive.svg │ │ │ ├── menuitem-checkbox-mixed-selected.svg │ │ │ ├── menuitem-checkbox-mixed.svg │ │ │ ├── menuitem-radio-checked-insensitive.svg │ │ │ ├── menuitem-radio-checked-selected.svg │ │ │ ├── menuitem-radio-checked.svg │ │ │ ├── null.png │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── panel-grid.svg │ │ │ ├── radio-active-ins.png │ │ │ ├── radio-active.png │ │ │ ├── radio-mixed-active-ins.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-normal-ins.png │ │ │ ├── radio-normal.png │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-marks-above-horizontal-active.png │ │ │ ├── scale-slider-marks-above-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-above-horizontal.png │ │ │ ├── scale-slider-marks-above-vertical-active.png │ │ │ ├── scale-slider-marks-above-vertical-insensitive.png │ │ │ ├── scale-slider-marks-above-vertical.png │ │ │ ├── scale-slider-marks-below-horizontal-active.png │ │ │ ├── scale-slider-marks-below-horizontal-insensitive.png │ │ │ ├── scale-slider-marks-below-horizontal.png │ │ │ ├── scale-slider-marks-below-vertical-active.png │ │ │ ├── scale-slider-marks-below-vertical-insensitive.png │ │ │ ├── scale-slider-marks-below-vertical.png │ │ │ ├── sidebar-radio-checked.svg │ │ │ ├── sidebar-radio-prelight.svg │ │ │ ├── sidebar-radio-selected-prelight.svg │ │ │ ├── sidebar-radio-selected.svg │ │ │ ├── slider-hover.svg │ │ │ ├── slider-ins.svg │ │ │ ├── slider.svg │ │ │ ├── switch-off-ins.png │ │ │ ├── switch-off-ins.svg │ │ │ ├── switch-off.png │ │ │ ├── switch-off.svg │ │ │ ├── switch-on-ins.png │ │ │ ├── switch-on-ins.svg │ │ │ ├── switch-on.png │ │ │ ├── switch-on.svg │ │ │ └── thumbnail-frame.png │ │ ├── borders │ │ │ ├── Makefile.am │ │ │ ├── button-active-focus.png │ │ │ ├── button-active-ins.png │ │ │ ├── button-active.png │ │ │ ├── button-focus.png │ │ │ ├── button-ins.png │ │ │ ├── button.png │ │ │ └── nohl-generic-border.png │ │ ├── gnome-applications.css │ │ ├── gtk-fallback.css │ │ ├── gtk-main-common.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets-backgrounds.css │ │ ├── gtk-widgets-borders.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ ├── settings.ini.in │ │ ├── unity.css │ │ ├── window-controls.css │ │ └── window-controls │ │ │ ├── Makefile.am │ │ │ ├── close_focused_normal.png │ │ │ ├── close_focused_prelight.png │ │ │ ├── close_focused_pressed.png │ │ │ ├── close_unfocused.png │ │ │ ├── close_unfocused_prelight.png │ │ │ ├── maximize_focused_normal.png │ │ │ ├── maximize_focused_prelight.png │ │ │ ├── maximize_focused_pressed.png │ │ │ ├── maximize_unfocused.png │ │ │ ├── maximize_unfocused_prelight.png │ │ │ ├── menu.png │ │ │ ├── menu_prelight.png │ │ │ ├── minimize_focused_normal.png │ │ │ ├── minimize_focused_prelight.png │ │ │ ├── minimize_focused_pressed.png │ │ │ ├── minimize_unfocused.png │ │ │ └── minimize_unfocused_prelight.png │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── menu.png │ │ ├── menu_prelight.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── trough_left.png │ │ ├── trough_middle.png │ │ ├── trough_right.png │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ └── unmaximize_unfocused_prelight.svg │ ├── unity │ │ ├── Makefile.am │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ └── unmaximize_unfocused_pressed.png │ └── xfwm4 │ │ ├── Makefile.am │ │ ├── bottom-active.png │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.png │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.png │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.png │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.png │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.png │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-prelight.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-prelight.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.png │ │ ├── left-active.xpm │ │ ├── left-inactive.png │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-prelight.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-prelight.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.png │ │ ├── right-active.xpm │ │ ├── right-inactive.png │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active-shaded.xpm │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── title-left-active.png │ │ ├── title-right-active.png │ │ ├── top-left-active-shaded.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active-shaded.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm ├── TraditionalGreen │ ├── COPYING │ ├── Makefile.am │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── applications.rc │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── applications.css │ │ ├── gtk-widgets-img.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── img │ │ │ ├── Makefile.am │ │ │ ├── border-error.svg │ │ │ ├── border-focused-ptb.svg │ │ │ ├── border-focused-switch.svg │ │ │ ├── border-focused.svg │ │ │ ├── border-gnome-panel-button.svg │ │ │ ├── border-inline-button.svg │ │ │ ├── border-insensitive.svg │ │ │ ├── border.svg │ │ │ ├── checkbox-checked-hover.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-hover.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-hover.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── menuitem-checkbox-checked-hover.png │ │ │ ├── menuitem-checkbox-checked-insensitive.png │ │ │ ├── menuitem-checkbox-checked.png │ │ │ ├── menuitem-checkbox-hover.png │ │ │ ├── menuitem-checkbox-insensitive.png │ │ │ ├── menuitem-checkbox-mixed-hover.png │ │ │ ├── menuitem-checkbox-mixed-insensitive.png │ │ │ ├── menuitem-checkbox-mixed.png │ │ │ ├── menuitem-checkbox.png │ │ │ ├── menuitem-radio-checked-hover.png │ │ │ ├── menuitem-radio-checked-insensitive.png │ │ │ ├── menuitem-radio-checked.png │ │ │ ├── menuitem-radio-hover.png │ │ │ ├── menuitem-radio-insensitive.png │ │ │ ├── menuitem-radio-mixed-hover.png │ │ │ ├── menuitem-radio-mixed-insensitive.png │ │ │ ├── menuitem-radio-mixed.png │ │ │ ├── menuitem-radio.png │ │ │ ├── pane-separator-grip-horz.png │ │ │ ├── pane-separator-grip-vert.png │ │ │ ├── panel-grid.svg │ │ │ ├── radio-checked-hover.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed-hover.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-unchecked-hover.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked.png │ │ │ ├── resize-grip.png │ │ │ ├── scale-slider-horz-hover.png │ │ │ ├── scale-slider-horz-insensitive.png │ │ │ ├── scale-slider-horz.png │ │ │ ├── scale-slider-vert-hover.png │ │ │ ├── scale-slider-vert-insensitive.png │ │ │ ├── scale-slider-vert.png │ │ │ ├── slider-horz-grip.png │ │ │ └── slider-vert-grip.png │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ └── settings.ini.in │ ├── index.theme.in │ └── metacity-1 │ │ ├── Makefile.am │ │ └── metacity-theme-1.xml ├── TraditionalOk │ ├── COPYING │ ├── Makefile.am │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── applications.rc │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── applications.css │ │ ├── gtk-widgets-img.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── img │ │ │ ├── Makefile.am │ │ │ ├── border-error.svg │ │ │ ├── border-focused-ptb.svg │ │ │ ├── border-focused-switch.svg │ │ │ ├── border-focused.svg │ │ │ ├── border-gnome-panel-button.svg │ │ │ ├── border-inline-button.svg │ │ │ ├── border-insensitive.svg │ │ │ ├── border.svg │ │ │ ├── checkbox-checked-hover.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-hover.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-hover.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── menuitem-checkbox-checked-hover.png │ │ │ ├── menuitem-checkbox-checked-insensitive.png │ │ │ ├── menuitem-checkbox-checked.png │ │ │ ├── menuitem-checkbox-hover.png │ │ │ ├── menuitem-checkbox-insensitive.png │ │ │ ├── menuitem-checkbox-mixed-hover.png │ │ │ ├── menuitem-checkbox-mixed-insensitive.png │ │ │ ├── menuitem-checkbox-mixed.png │ │ │ ├── menuitem-checkbox.png │ │ │ ├── menuitem-radio-checked-hover.png │ │ │ ├── menuitem-radio-checked-insensitive.png │ │ │ ├── menuitem-radio-checked.png │ │ │ ├── menuitem-radio-hover.png │ │ │ ├── menuitem-radio-insensitive.png │ │ │ ├── menuitem-radio-mixed-hover.png │ │ │ ├── menuitem-radio-mixed-insensitive.png │ │ │ ├── menuitem-radio-mixed.png │ │ │ ├── menuitem-radio.png │ │ │ ├── pane-separator-grip-horz.png │ │ │ ├── pane-separator-grip-vert.png │ │ │ ├── panel-grid.svg │ │ │ ├── radio-checked-hover.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed-hover.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-unchecked-hover.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked.png │ │ │ ├── resize-grip.png │ │ │ ├── scale-slider-horz-hover.png │ │ │ ├── scale-slider-horz-insensitive.png │ │ │ ├── scale-slider-horz.png │ │ │ ├── scale-slider-vert-hover.png │ │ │ ├── scale-slider-vert-insensitive.png │ │ │ ├── scale-slider-vert.png │ │ │ ├── slider-horz-grip.png │ │ │ └── slider-vert-grip.png │ │ ├── mate-applications.css │ │ ├── other-applications.css │ │ └── settings.ini.in │ ├── index.theme.in │ ├── metacity-1 │ │ ├── Makefile.am │ │ └── metacity-theme-1.xml │ ├── openbox-3 │ │ ├── Makefile.am │ │ └── themerc │ └── xfwm4 │ │ ├── Makefile.am │ │ ├── README │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.xpm │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-pressed.xpm │ │ ├── maximize-toggled-active.xpm │ │ ├── maximize-toggled-inactive.xpm │ │ ├── maximize-toggled-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-pressed.xpm │ │ ├── png │ │ ├── Makefile.am │ │ ├── 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-pressed.png │ │ ├── hide-active.png │ │ ├── hide-inactive.png │ │ ├── hide-pressed.png │ │ ├── left-active.png │ │ ├── left-inactive.png │ │ ├── maximize-active.png │ │ ├── maximize-inactive.png │ │ ├── maximize-pressed.png │ │ ├── maximize-toggled-active.png │ │ ├── maximize-toggled-inactive.png │ │ ├── maximize-toggled-pressed.png │ │ ├── menu-active.png │ │ ├── menu-inactive.png │ │ ├── menu-pressed.png │ │ ├── right-active.png │ │ ├── right-inactive.png │ │ ├── title-1-active.png │ │ ├── title-1-inactive.png │ │ ├── top-left-active.png │ │ ├── top-left-inactive.png │ │ ├── top-right-active.png │ │ └── top-right-inactive.png │ │ ├── right-active.xpm │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── top-left-active.png │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active.png │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm ├── YaruGreen │ ├── COPYING │ ├── Makefile.am │ ├── gtk-2.0 │ │ ├── Makefile.am │ │ ├── applications.rc │ │ └── gtkrc │ ├── gtk-3.0 │ │ ├── Makefile.am │ │ ├── README │ │ ├── _apps.scss │ │ ├── _colors-public.scss │ │ ├── _colors.scss │ │ ├── _common.scss │ │ ├── _drawing.scss │ │ ├── _headerbar.scss │ │ ├── _headerbar_buttons.scss │ │ ├── _palette.scss │ │ ├── _tweaks.scss │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── Makefile.am │ │ │ ├── bullet-symbolic.svg │ │ │ ├── bullet-symbolic.symbolic.png │ │ │ ├── check-symbolic.svg │ │ │ ├── check-symbolic.symbolic.png │ │ │ ├── dash-symbolic.svg │ │ │ ├── dash-symbolic.symbolic.png │ │ │ ├── panel-grid.svg │ │ │ ├── slider-horz-grip.png │ │ │ ├── slider-horz-scale-has-marks-above-active-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-active-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-active.png │ │ │ ├── slider-horz-scale-has-marks-above-active@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop@2.png │ │ │ ├── slider-horz-scale-has-marks-above-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-hover-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-hover-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-hover.png │ │ │ ├── slider-horz-scale-has-marks-above-hover@2.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-above.png │ │ │ ├── slider-horz-scale-has-marks-above@2.png │ │ │ ├── slider-horz-scale-has-marks-below-active-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-active-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-active.png │ │ │ ├── slider-horz-scale-has-marks-below-active@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop@2.png │ │ │ ├── slider-horz-scale-has-marks-below-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-hover-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-hover-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-hover.png │ │ │ ├── slider-horz-scale-has-marks-below-hover@2.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-below.png │ │ │ ├── slider-horz-scale-has-marks-below@2.png │ │ │ ├── slider-vert-grip.png │ │ │ ├── slider-vert-scale-has-marks-above-active-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-active-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-active.png │ │ │ ├── slider-vert-scale-has-marks-above-active@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop@2.png │ │ │ ├── slider-vert-scale-has-marks-above-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-hover-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-hover-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-hover.png │ │ │ ├── slider-vert-scale-has-marks-above-hover@2.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-above.png │ │ │ ├── slider-vert-scale-has-marks-above@2.png │ │ │ ├── slider-vert-scale-has-marks-below-active-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-active-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-active.png │ │ │ ├── slider-vert-scale-has-marks-below-active@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop@2.png │ │ │ ├── slider-vert-scale-has-marks-below-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-hover-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-hover-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-hover.png │ │ │ ├── slider-vert-scale-has-marks-below-hover@2.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-below.png │ │ │ ├── slider-vert-scale-has-marks-below@2.png │ │ │ ├── text-select-end-active-dark.png │ │ │ ├── text-select-end-active-dark@2.png │ │ │ ├── text-select-end-active.png │ │ │ ├── text-select-end-active@2.png │ │ │ ├── text-select-end-dark.png │ │ │ ├── text-select-end-dark@2.png │ │ │ ├── text-select-end-hover-dark.png │ │ │ ├── text-select-end-hover-dark@2.png │ │ │ ├── text-select-end-hover.png │ │ │ ├── text-select-end-hover@2.png │ │ │ ├── text-select-end.png │ │ │ ├── text-select-end@2.png │ │ │ ├── text-select-start-active-dark.png │ │ │ ├── text-select-start-active-dark@2.png │ │ │ ├── text-select-start-active.png │ │ │ ├── text-select-start-active@2.png │ │ │ ├── text-select-start-dark.png │ │ │ ├── text-select-start-dark@2.png │ │ │ ├── text-select-start-hover-dark.png │ │ │ ├── text-select-start-hover-dark@2.png │ │ │ ├── text-select-start-hover.png │ │ │ ├── text-select-start-hover@2.png │ │ │ ├── text-select-start.png │ │ │ └── text-select-start@2.png │ │ ├── gtk.css │ │ ├── gtk.scss │ │ ├── libhandy │ │ │ ├── _Adwaita-base.scss │ │ │ ├── _definitions.scss │ │ │ ├── _fallback-base.scss │ │ │ ├── _headerbar.scss │ │ │ └── _shared-base.scss │ │ ├── parse-sass.sh │ │ └── settings.ini.in │ ├── gtk-4.0 │ │ ├── README │ │ ├── _colors-public.scss │ │ ├── _colors.scss │ │ ├── _common.scss │ │ ├── _drawing.scss │ │ ├── _headerbar.scss │ │ ├── _palette.scss │ │ ├── _tweaks.scss │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── bullet-symbolic.svg │ │ │ ├── bullet-symbolic.symbolic.png │ │ │ ├── bullet@2-symbolic.symbolic.png │ │ │ ├── check-symbolic.svg │ │ │ ├── check-symbolic.symbolic.png │ │ │ ├── check@2-symbolic.symbolic.png │ │ │ ├── dash-symbolic.svg │ │ │ ├── dash-symbolic.symbolic.png │ │ │ ├── dash@2-symbolic.symbolic.png │ │ │ ├── slider-horz-scale-has-marks-above-active-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-active-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-active.png │ │ │ ├── slider-horz-scale-has-marks-above-active@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop.png │ │ │ ├── slider-horz-scale-has-marks-above-backdrop@2.png │ │ │ ├── slider-horz-scale-has-marks-above-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-hover-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-hover-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-hover.png │ │ │ ├── slider-horz-scale-has-marks-above-hover@2.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-above-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-above.png │ │ │ ├── slider-horz-scale-has-marks-above@2.png │ │ │ ├── slider-horz-scale-has-marks-below-active-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-active-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-active.png │ │ │ ├── slider-horz-scale-has-marks-below-active@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop.png │ │ │ ├── slider-horz-scale-has-marks-below-backdrop@2.png │ │ │ ├── slider-horz-scale-has-marks-below-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-hover-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-hover-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-hover.png │ │ │ ├── slider-horz-scale-has-marks-below-hover@2.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark@2.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive.png │ │ │ ├── slider-horz-scale-has-marks-below-insensitive@2.png │ │ │ ├── slider-horz-scale-has-marks-below.png │ │ │ ├── slider-horz-scale-has-marks-below@2.png │ │ │ ├── slider-vert-scale-has-marks-above-active-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-active-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-active.png │ │ │ ├── slider-vert-scale-has-marks-above-active@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop.png │ │ │ ├── slider-vert-scale-has-marks-above-backdrop@2.png │ │ │ ├── slider-vert-scale-has-marks-above-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-hover-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-hover-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-hover.png │ │ │ ├── slider-vert-scale-has-marks-above-hover@2.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-above-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-above.png │ │ │ ├── slider-vert-scale-has-marks-above@2.png │ │ │ ├── slider-vert-scale-has-marks-below-active-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-active-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-active.png │ │ │ ├── slider-vert-scale-has-marks-below-active@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop.png │ │ │ ├── slider-vert-scale-has-marks-below-backdrop@2.png │ │ │ ├── slider-vert-scale-has-marks-below-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-hover-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-hover-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-hover.png │ │ │ ├── slider-vert-scale-has-marks-below-hover@2.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark@2.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive.png │ │ │ ├── slider-vert-scale-has-marks-below-insensitive@2.png │ │ │ ├── slider-vert-scale-has-marks-below.png │ │ │ ├── slider-vert-scale-has-marks-below@2.png │ │ │ ├── text-select-end-active-dark.png │ │ │ ├── text-select-end-active-dark@2.png │ │ │ ├── text-select-end-active.png │ │ │ ├── text-select-end-active@2.png │ │ │ ├── text-select-end-dark.png │ │ │ ├── text-select-end-dark@2.png │ │ │ ├── text-select-end-hover-dark.png │ │ │ ├── text-select-end-hover-dark@2.png │ │ │ ├── text-select-end-hover.png │ │ │ ├── text-select-end-hover@2.png │ │ │ ├── text-select-end.png │ │ │ ├── text-select-end@2.png │ │ │ ├── text-select-start-active-dark.png │ │ │ ├── text-select-start-active-dark@2.png │ │ │ ├── text-select-start-active.png │ │ │ ├── text-select-start-active@2.png │ │ │ ├── text-select-start-dark.png │ │ │ ├── text-select-start-dark@2.png │ │ │ ├── text-select-start-hover-dark.png │ │ │ ├── text-select-start-hover-dark@2.png │ │ │ ├── text-select-start-hover.png │ │ │ ├── text-select-start-hover@2.png │ │ │ ├── text-select-start.png │ │ │ └── text-select-start@2.png │ │ ├── gtk.css │ │ ├── gtk.scss │ │ ├── parse-sass.sh │ │ └── render-assets.sh │ ├── index.theme.in │ └── metacity-1 │ │ ├── Makefile.am │ │ └── metacity-theme-1.xml └── YaruOk │ ├── COPYING │ ├── Makefile.am │ ├── gtk-2.0 │ ├── Makefile.am │ ├── applications.rc │ └── gtkrc │ ├── gtk-3.0 │ ├── Makefile.am │ ├── README │ ├── _apps.scss │ ├── _colors-public.scss │ ├── _colors.scss │ ├── _common.scss │ ├── _drawing.scss │ ├── _headerbar.scss │ ├── _headerbar_buttons.scss │ ├── _palette.scss │ ├── _tweaks.scss │ ├── assets.svg │ ├── assets.txt │ ├── assets │ │ ├── Makefile.am │ │ ├── bullet-symbolic.svg │ │ ├── bullet-symbolic.symbolic.png │ │ ├── check-symbolic.svg │ │ ├── check-symbolic.symbolic.png │ │ ├── dash-symbolic.svg │ │ ├── dash-symbolic.symbolic.png │ │ ├── panel-grid.svg │ │ ├── slider-horz-grip.png │ │ ├── slider-horz-scale-has-marks-above-active-dark.png │ │ ├── slider-horz-scale-has-marks-above-active-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-active.png │ │ ├── slider-horz-scale-has-marks-above-active@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop.png │ │ ├── slider-horz-scale-has-marks-above-backdrop@2.png │ │ ├── slider-horz-scale-has-marks-above-dark.png │ │ ├── slider-horz-scale-has-marks-above-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-hover-dark.png │ │ ├── slider-horz-scale-has-marks-above-hover-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-hover.png │ │ ├── slider-horz-scale-has-marks-above-hover@2.png │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-insensitive.png │ │ ├── slider-horz-scale-has-marks-above-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-above.png │ │ ├── slider-horz-scale-has-marks-above@2.png │ │ ├── slider-horz-scale-has-marks-below-active-dark.png │ │ ├── slider-horz-scale-has-marks-below-active-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-active.png │ │ ├── slider-horz-scale-has-marks-below-active@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop.png │ │ ├── slider-horz-scale-has-marks-below-backdrop@2.png │ │ ├── slider-horz-scale-has-marks-below-dark.png │ │ ├── slider-horz-scale-has-marks-below-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-hover-dark.png │ │ ├── slider-horz-scale-has-marks-below-hover-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-hover.png │ │ ├── slider-horz-scale-has-marks-below-hover@2.png │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-insensitive.png │ │ ├── slider-horz-scale-has-marks-below-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-below.png │ │ ├── slider-horz-scale-has-marks-below@2.png │ │ ├── slider-vert-grip.png │ │ ├── slider-vert-scale-has-marks-above-active-dark.png │ │ ├── slider-vert-scale-has-marks-above-active-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-active.png │ │ ├── slider-vert-scale-has-marks-above-active@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop.png │ │ ├── slider-vert-scale-has-marks-above-backdrop@2.png │ │ ├── slider-vert-scale-has-marks-above-dark.png │ │ ├── slider-vert-scale-has-marks-above-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-hover-dark.png │ │ ├── slider-vert-scale-has-marks-above-hover-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-hover.png │ │ ├── slider-vert-scale-has-marks-above-hover@2.png │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-insensitive.png │ │ ├── slider-vert-scale-has-marks-above-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-above.png │ │ ├── slider-vert-scale-has-marks-above@2.png │ │ ├── slider-vert-scale-has-marks-below-active-dark.png │ │ ├── slider-vert-scale-has-marks-below-active-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-active.png │ │ ├── slider-vert-scale-has-marks-below-active@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop.png │ │ ├── slider-vert-scale-has-marks-below-backdrop@2.png │ │ ├── slider-vert-scale-has-marks-below-dark.png │ │ ├── slider-vert-scale-has-marks-below-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-hover-dark.png │ │ ├── slider-vert-scale-has-marks-below-hover-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-hover.png │ │ ├── slider-vert-scale-has-marks-below-hover@2.png │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-insensitive.png │ │ ├── slider-vert-scale-has-marks-below-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-below.png │ │ ├── slider-vert-scale-has-marks-below@2.png │ │ ├── text-select-end-active-dark.png │ │ ├── text-select-end-active-dark@2.png │ │ ├── text-select-end-active.png │ │ ├── text-select-end-active@2.png │ │ ├── text-select-end-dark.png │ │ ├── text-select-end-dark@2.png │ │ ├── text-select-end-hover-dark.png │ │ ├── text-select-end-hover-dark@2.png │ │ ├── text-select-end-hover.png │ │ ├── text-select-end-hover@2.png │ │ ├── text-select-end.png │ │ ├── text-select-end@2.png │ │ ├── text-select-start-active-dark.png │ │ ├── text-select-start-active-dark@2.png │ │ ├── text-select-start-active.png │ │ ├── text-select-start-active@2.png │ │ ├── text-select-start-dark.png │ │ ├── text-select-start-dark@2.png │ │ ├── text-select-start-hover-dark.png │ │ ├── text-select-start-hover-dark@2.png │ │ ├── text-select-start-hover.png │ │ ├── text-select-start-hover@2.png │ │ ├── text-select-start.png │ │ └── text-select-start@2.png │ ├── gtk.css │ ├── gtk.scss │ ├── libhandy │ │ ├── _Adwaita-base.scss │ │ ├── _definitions.scss │ │ ├── _fallback-base.scss │ │ ├── _headerbar.scss │ │ └── _shared-base.scss │ ├── parse-sass.sh │ └── settings.ini.in │ ├── gtk-4.0 │ ├── README │ ├── _colors-public.scss │ ├── _colors.scss │ ├── _common.scss │ ├── _drawing.scss │ ├── _headerbar.scss │ ├── _palette.scss │ ├── _tweaks.scss │ ├── assets.svg │ ├── assets.txt │ ├── assets │ │ ├── bullet-symbolic.svg │ │ ├── bullet-symbolic.symbolic.png │ │ ├── bullet@2-symbolic.symbolic.png │ │ ├── check-symbolic.svg │ │ ├── check-symbolic.symbolic.png │ │ ├── check@2-symbolic.symbolic.png │ │ ├── dash-symbolic.svg │ │ ├── dash-symbolic.symbolic.png │ │ ├── dash@2-symbolic.symbolic.png │ │ ├── slider-horz-scale-has-marks-above-active-dark.png │ │ ├── slider-horz-scale-has-marks-above-active-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-active.png │ │ ├── slider-horz-scale-has-marks-above-active@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive.png │ │ ├── slider-horz-scale-has-marks-above-backdrop-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-above-backdrop.png │ │ ├── slider-horz-scale-has-marks-above-backdrop@2.png │ │ ├── slider-horz-scale-has-marks-above-dark.png │ │ ├── slider-horz-scale-has-marks-above-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-hover-dark.png │ │ ├── slider-horz-scale-has-marks-above-hover-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-hover.png │ │ ├── slider-horz-scale-has-marks-above-hover@2.png │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-above-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-above-insensitive.png │ │ ├── slider-horz-scale-has-marks-above-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-above.png │ │ ├── slider-horz-scale-has-marks-above@2.png │ │ ├── slider-horz-scale-has-marks-below-active-dark.png │ │ ├── slider-horz-scale-has-marks-below-active-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-active.png │ │ ├── slider-horz-scale-has-marks-below-active@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive.png │ │ ├── slider-horz-scale-has-marks-below-backdrop-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-below-backdrop.png │ │ ├── slider-horz-scale-has-marks-below-backdrop@2.png │ │ ├── slider-horz-scale-has-marks-below-dark.png │ │ ├── slider-horz-scale-has-marks-below-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-hover-dark.png │ │ ├── slider-horz-scale-has-marks-below-hover-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-hover.png │ │ ├── slider-horz-scale-has-marks-below-hover@2.png │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark.png │ │ ├── slider-horz-scale-has-marks-below-insensitive-dark@2.png │ │ ├── slider-horz-scale-has-marks-below-insensitive.png │ │ ├── slider-horz-scale-has-marks-below-insensitive@2.png │ │ ├── slider-horz-scale-has-marks-below.png │ │ ├── slider-horz-scale-has-marks-below@2.png │ │ ├── slider-vert-scale-has-marks-above-active-dark.png │ │ ├── slider-vert-scale-has-marks-above-active-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-active.png │ │ ├── slider-vert-scale-has-marks-above-active@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive.png │ │ ├── slider-vert-scale-has-marks-above-backdrop-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-above-backdrop.png │ │ ├── slider-vert-scale-has-marks-above-backdrop@2.png │ │ ├── slider-vert-scale-has-marks-above-dark.png │ │ ├── slider-vert-scale-has-marks-above-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-hover-dark.png │ │ ├── slider-vert-scale-has-marks-above-hover-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-hover.png │ │ ├── slider-vert-scale-has-marks-above-hover@2.png │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-above-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-above-insensitive.png │ │ ├── slider-vert-scale-has-marks-above-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-above.png │ │ ├── slider-vert-scale-has-marks-above@2.png │ │ ├── slider-vert-scale-has-marks-below-active-dark.png │ │ ├── slider-vert-scale-has-marks-below-active-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-active.png │ │ ├── slider-vert-scale-has-marks-below-active@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive.png │ │ ├── slider-vert-scale-has-marks-below-backdrop-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-below-backdrop.png │ │ ├── slider-vert-scale-has-marks-below-backdrop@2.png │ │ ├── slider-vert-scale-has-marks-below-dark.png │ │ ├── slider-vert-scale-has-marks-below-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-hover-dark.png │ │ ├── slider-vert-scale-has-marks-below-hover-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-hover.png │ │ ├── slider-vert-scale-has-marks-below-hover@2.png │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark.png │ │ ├── slider-vert-scale-has-marks-below-insensitive-dark@2.png │ │ ├── slider-vert-scale-has-marks-below-insensitive.png │ │ ├── slider-vert-scale-has-marks-below-insensitive@2.png │ │ ├── slider-vert-scale-has-marks-below.png │ │ ├── slider-vert-scale-has-marks-below@2.png │ │ ├── text-select-end-active-dark.png │ │ ├── text-select-end-active-dark@2.png │ │ ├── text-select-end-active.png │ │ ├── text-select-end-active@2.png │ │ ├── text-select-end-dark.png │ │ ├── text-select-end-dark@2.png │ │ ├── text-select-end-hover-dark.png │ │ ├── text-select-end-hover-dark@2.png │ │ ├── text-select-end-hover.png │ │ ├── text-select-end-hover@2.png │ │ ├── text-select-end.png │ │ ├── text-select-end@2.png │ │ ├── text-select-start-active-dark.png │ │ ├── text-select-start-active-dark@2.png │ │ ├── text-select-start-active.png │ │ ├── text-select-start-active@2.png │ │ ├── text-select-start-dark.png │ │ ├── text-select-start-dark@2.png │ │ ├── text-select-start-hover-dark.png │ │ ├── text-select-start-hover-dark@2.png │ │ ├── text-select-start-hover.png │ │ ├── text-select-start-hover@2.png │ │ ├── text-select-start.png │ │ └── text-select-start@2.png │ ├── gtk.css │ ├── gtk.scss │ ├── parse-sass.sh │ └── render-assets.sh │ ├── index.theme.in │ ├── metacity-1 │ ├── Makefile.am │ └── metacity-theme-1.xml │ ├── openbox-3 │ ├── Makefile.am │ └── themerc │ └── xfwm4 │ ├── Makefile.am │ ├── README │ ├── bottom-active.xpm │ ├── bottom-inactive.xpm │ ├── bottom-left-active.xpm │ ├── bottom-left-inactive.xpm │ ├── bottom-right-active.xpm │ ├── bottom-right-inactive.xpm │ ├── close-active.xpm │ ├── close-inactive.xpm │ ├── close-pressed.xpm │ ├── hide-active.xpm │ ├── hide-inactive.xpm │ ├── hide-pressed.xpm │ ├── left-active.xpm │ ├── left-inactive.xpm │ ├── maximize-active.xpm │ ├── maximize-inactive.xpm │ ├── maximize-pressed.xpm │ ├── maximize-toggled-active.xpm │ ├── maximize-toggled-inactive.xpm │ ├── maximize-toggled-pressed.xpm │ ├── menu-active.xpm │ ├── menu-inactive.xpm │ ├── menu-pressed.xpm │ ├── png │ ├── Makefile.am │ ├── 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-pressed.png │ ├── hide-active.png │ ├── hide-inactive.png │ ├── hide-pressed.png │ ├── left-active.png │ ├── left-inactive.png │ ├── maximize-active.png │ ├── maximize-inactive.png │ ├── maximize-pressed.png │ ├── maximize-toggled-active.png │ ├── maximize-toggled-inactive.png │ ├── maximize-toggled-pressed.png │ ├── menu-active.png │ ├── menu-inactive.png │ ├── menu-pressed.png │ ├── right-active.png │ ├── right-inactive.png │ ├── title-1-active.png │ ├── title-1-inactive.png │ ├── top-left-active.png │ ├── top-left-inactive.png │ ├── top-right-active.png │ └── top-right-inactive.png │ ├── right-active.xpm │ ├── right-inactive.xpm │ ├── themerc │ ├── title-1-active.xpm │ ├── title-1-inactive.xpm │ ├── title-2-active.xpm │ ├── title-2-inactive.xpm │ ├── title-3-active.xpm │ ├── title-3-inactive.xpm │ ├── title-4-active.xpm │ ├── title-4-inactive.xpm │ ├── title-5-active.xpm │ ├── title-5-inactive.xpm │ ├── top-left-active.png │ ├── top-left-active.xpm │ ├── top-left-inactive.xpm │ ├── top-right-active.png │ ├── top-right-active.xpm │ └── top-right-inactive.xpm ├── icon-themes ├── ContrastHigh │ ├── 16x16 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── applications-blender.png │ │ │ ├── atril.png │ │ │ ├── audiobook.png │ │ │ ├── ax-applet.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── cheese.png │ │ │ ├── clock.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── desktop.png │ │ │ ├── devhelp.png │ │ │ ├── display-capplet.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── engrampa.png │ │ │ ├── eog.png │ │ │ ├── eom.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── ghex.png │ │ │ ├── gimp.png │ │ │ ├── gkb.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gok.png │ │ │ ├── gtkam-camera.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-application-generic.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-invest-applet.png │ │ │ ├── mate-log.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-notification-properties.png │ │ │ ├── mate-panel-clock.png │ │ │ ├── mate-panel-drawer.png │ │ │ ├── mate-panel-force-quit.png │ │ │ ├── mate-panel-launcher.png │ │ │ ├── mate-panel-window-list.png │ │ │ ├── mate-panel-window-menu.png │ │ │ ├── mate-panel-workspace-switcher.png │ │ │ ├── mate-power-manager.png │ │ │ ├── mate-session-properties.png │ │ │ ├── miro.png │ │ │ ├── mozo.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── orca.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-default-applications.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-sound.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-session.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── smc.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── terminal.png │ │ │ ├── text-editor.png │ │ │ ├── thunderbird-icon.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── window-capplet.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── nm-applet.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── distributor-logo.png │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── 22x22 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── applications-blender.png │ │ │ ├── atril.png │ │ │ ├── audiobook.png │ │ │ ├── ax-applet.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── charpick.png │ │ │ ├── cheese.png │ │ │ ├── clock.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── desktop.png │ │ │ ├── devhelp.png │ │ │ ├── display-capplet.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── engrampa.png │ │ │ ├── eog.png │ │ │ ├── eom.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── ghex.png │ │ │ ├── gimp.png │ │ │ ├── gkb.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gok.png │ │ │ ├── gtkam-camera.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-application-generic.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-invest-applet.png │ │ │ ├── mate-log.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-notification-properties.png │ │ │ ├── mate-panel-clock.png │ │ │ ├── mate-panel-drawer.png │ │ │ ├── mate-panel-force-quit.png │ │ │ ├── mate-panel-launcher.png │ │ │ ├── mate-panel-window-list.png │ │ │ ├── mate-panel-window-menu.png │ │ │ ├── mate-panel-workspace-switcher.png │ │ │ ├── mate-power-manager.png │ │ │ ├── mate-session-properties.png │ │ │ ├── miro.png │ │ │ ├── mozo.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── orca.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-sound.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-session.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── smc.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── terminal.png │ │ │ ├── text-editor.png │ │ │ ├── thunderbird-icon.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── window-capplet.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-office.png │ │ │ ├── applications-other.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── nm-applet.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── distributor-logo.png │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── 24x24 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── applications-blender.png │ │ │ ├── atril.png │ │ │ ├── audiobook.png │ │ │ ├── ax-applet.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── charpick.png │ │ │ ├── cheese.png │ │ │ ├── clock.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── desktop.png │ │ │ ├── devhelp.png │ │ │ ├── display-capplet.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── engrampa.png │ │ │ ├── eog.png │ │ │ ├── eom.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── ghex.png │ │ │ ├── gimp.png │ │ │ ├── gkb.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gok.png │ │ │ ├── gtkam-camera.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-application-generic.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-invest-applet.png │ │ │ ├── mate-log.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-notification-properties.png │ │ │ ├── mate-panel-clock.png │ │ │ ├── mate-panel-drawer.png │ │ │ ├── mate-panel-force-quit.png │ │ │ ├── mate-panel-launcher.png │ │ │ ├── mate-panel-window-list.png │ │ │ ├── mate-panel-window-menu.png │ │ │ ├── mate-panel-workspace-switcher.png │ │ │ ├── mate-power-manager.png │ │ │ ├── mate-session-properties.png │ │ │ ├── miro.png │ │ │ ├── mozo.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── orca.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-default-applications.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-sound.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-session.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── smc.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── terminal.png │ │ │ ├── text-editor.png │ │ │ ├── thunderbird-icon.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── window-capplet.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── nm-applet.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mate-logo-icon-transparent.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── distributor-logo.png │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── 256x256 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── audiobook.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── cheese.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── devhelp.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── eog.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── gimp.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-power-manager.png │ │ │ ├── miro.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── text-editor.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── 32x32 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── applications-blender.png │ │ │ ├── atril.png │ │ │ ├── audiobook.png │ │ │ ├── ax-applet.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── charpick.png │ │ │ ├── cheese.png │ │ │ ├── clock.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── desktop.png │ │ │ ├── devhelp.png │ │ │ ├── display-capplet.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── engrampa.png │ │ │ ├── eog.png │ │ │ ├── eom.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── ghex.png │ │ │ ├── gimp.png │ │ │ ├── gkb.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gok.png │ │ │ ├── gtkam-camera.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-application-generic.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-invest-applet.png │ │ │ ├── mate-log.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-notification-properties.png │ │ │ ├── mate-panel-clock.png │ │ │ ├── mate-panel-drawer.png │ │ │ ├── mate-panel-force-quit.png │ │ │ ├── mate-panel-launcher.png │ │ │ ├── mate-panel-window-list.png │ │ │ ├── mate-panel-window-menu.png │ │ │ ├── mate-panel-workspace-switcher.png │ │ │ ├── mate-power-manager.png │ │ │ ├── mate-session-properties.png │ │ │ ├── miro.png │ │ │ ├── mozo.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── orca.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-default-applications.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-sound.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-session.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── smc.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── terminal.png │ │ │ ├── text-editor.png │ │ │ ├── thunderbird-icon.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── window-capplet.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── nm-applet.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── distributor-logo.png │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── 48x48 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── action-unavailable.png │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-add.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-end.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── color-select.png │ │ │ ├── contact-new.png │ │ │ ├── content-loading.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── drive-multidisk.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-select.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── find-location.png │ │ │ ├── folder-new.png │ │ │ ├── font-select.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump-rtl.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove-all.png │ │ │ ├── list-remove.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── media-view-subtitles.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── object-select.png │ │ │ ├── open-menu.png │ │ │ ├── pan-down.png │ │ │ ├── pan-end.png │ │ │ ├── pan-start.png │ │ │ ├── pan-up.png │ │ │ ├── process-stop.png │ │ │ ├── selection-end.png │ │ │ ├── selection-start.png │ │ │ ├── send-to.png │ │ │ ├── star-new.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tab-new.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-continuous.png │ │ │ ├── view-dual.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-grid.png │ │ │ ├── view-list.png │ │ │ ├── view-more.png │ │ │ ├── view-paged.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-maximize.png │ │ │ ├── window-minimize.png │ │ │ ├── window-restore.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ ├── animations │ │ │ ├── Makefile.am │ │ │ ├── process-idle.png │ │ │ ├── process-idle.svg │ │ │ └── process-working.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ ├── abrt-gui.png │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── aisleriot.png │ │ │ ├── anaconda.png │ │ │ ├── anjuta6.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── applications-blender.png │ │ │ ├── atril.png │ │ │ ├── audiobook.png │ │ │ ├── ax-applet.png │ │ │ ├── bijiben.png │ │ │ ├── blender.png │ │ │ ├── bluetooth.png │ │ │ ├── boxes.png │ │ │ ├── brasero.png │ │ │ ├── cheese.png │ │ │ ├── clock.png │ │ │ ├── config-firewall.png │ │ │ ├── configuration-editor.png │ │ │ ├── dconf-editor.png │ │ │ ├── deja-dup.png │ │ │ ├── desktop.png │ │ │ ├── devhelp.png │ │ │ ├── display-capplet.png │ │ │ ├── documents.png │ │ │ ├── empathy.png │ │ │ ├── engrampa.png │ │ │ ├── eog.png │ │ │ ├── eom.png │ │ │ ├── evince.png │ │ │ ├── evolution.png │ │ │ ├── fedora-release-notes.png │ │ │ ├── file-roller.png │ │ │ ├── firefox.png │ │ │ ├── folder-saved-search-alt.png │ │ │ ├── frogr.png │ │ │ ├── gcolor2.png │ │ │ ├── ghex.png │ │ │ ├── gimp.png │ │ │ ├── gkb.png │ │ │ ├── glade.png │ │ │ ├── gnome-abrt.png │ │ │ ├── gnome-aisleriot.png │ │ │ ├── gnome-boxes.png │ │ │ ├── gnome-disks.png │ │ │ ├── gnome-documents.png │ │ │ ├── gnome-freecell.png │ │ │ ├── gnome-nettool.png │ │ │ ├── gnome-tweak-tool.png │ │ │ ├── gnome-weather.png │ │ │ ├── gnomine.png │ │ │ ├── goa-panel.png │ │ │ ├── gok.png │ │ │ ├── gtkam-camera.png │ │ │ ├── gtranslator.png │ │ │ ├── haguichi.png │ │ │ ├── headpin.png │ │ │ ├── help-browser.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── ifolder.png │ │ │ ├── inkscape.png │ │ │ ├── katello.png │ │ │ ├── libreoffice-base.png │ │ │ ├── libreoffice-calc.png │ │ │ ├── libreoffice-draw.png │ │ │ ├── libreoffice-impress.png │ │ │ ├── libreoffice-main.png │ │ │ ├── libreoffice-math.png │ │ │ ├── libreoffice-startcenter.png │ │ │ ├── libreoffice-writer.png │ │ │ ├── liveinst.png │ │ │ ├── logviewer.png │ │ │ ├── maps.png │ │ │ ├── mate-application-generic.png │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-desktop.png │ │ │ ├── mate-invest-applet.png │ │ │ ├── mate-log.png │ │ │ ├── mate-logo-icon-transparent.png │ │ │ ├── mate-netspeed-applet.png │ │ │ ├── mate-notification-properties.png │ │ │ ├── mate-panel-clock.png │ │ │ ├── mate-panel-drawer.png │ │ │ ├── mate-panel-force-quit.png │ │ │ ├── mate-panel-launcher.png │ │ │ ├── mate-panel-window-list.png │ │ │ ├── mate-panel-window-menu.png │ │ │ ├── mate-panel-workspace-switcher.png │ │ │ ├── mate-power-manager.png │ │ │ ├── mate-session-properties.png │ │ │ ├── mate-starthere.png │ │ │ ├── miro.png │ │ │ ├── mozo.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── orca.png │ │ │ ├── org.gnome.Weather.Application.png │ │ │ ├── palimpsest.png │ │ │ ├── pidgin.png │ │ │ ├── pino.png │ │ │ ├── preferences-color.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-default-applications.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-sound.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-date-and-time.png │ │ │ ├── preferences-system-network-proxy.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-session.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-time.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── rhythmbox.png │ │ │ ├── scribus.png │ │ │ ├── seahorse.png │ │ │ ├── session-properties.png │ │ │ ├── shotwell.png │ │ │ ├── smc.png │ │ │ ├── sound-juicer.png │ │ │ ├── sparkleshare.png │ │ │ ├── system-config-authentication.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── tasque.png │ │ │ ├── terminal.png │ │ │ ├── text-editor.png │ │ │ ├── thunderbird-icon.png │ │ │ ├── tomboy.png │ │ │ ├── totem.png │ │ │ ├── transmission.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ ├── vim.png │ │ │ ├── web-browser.png │ │ │ ├── window-capplet.png │ │ │ ├── xchat-gnome.png │ │ │ └── xchat.png │ │ ├── categories │ │ │ ├── Makefile.am │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-science.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── colorimeter-colorhug.png │ │ │ ├── computer-apple-ipad.png │ │ │ ├── computer.png │ │ │ ├── display-projector.png │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ ├── drive-harddisk-solidstate.png │ │ │ ├── drive-harddisk-system.png │ │ │ ├── drive-harddisk-usb.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk-alt.png │ │ │ ├── drive-multidisk-alt2.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── headphones.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical-bd.png │ │ │ ├── media-optical-cd-audio.png │ │ │ ├── media-optical-dvd.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── media-zip.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player-apple-ipod-touch.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── nm-applet.png │ │ │ ├── pda.png │ │ │ ├── phone-apple-iphone.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── tv.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ ├── emblems │ │ │ ├── Makefile.am │ │ │ ├── emblem-default.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-music.png │ │ │ ├── emblem-ok.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ └── emblem-videos.png │ │ ├── emotes │ │ │ ├── Makefile.am │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-confused.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-shutmouth.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-surprised.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ ├── face-worried.png │ │ │ └── face-yawn.png │ │ ├── mimetypes │ │ │ ├── Makefile.am │ │ │ ├── application-certificate.png │ │ │ ├── application-rss+xml.png │ │ │ ├── application-x-appliance.png │ │ │ ├── application-x-executable.png │ │ │ ├── audio-x-generic.png │ │ │ ├── folder-publicshare.png │ │ │ ├── image-x-generic.png │ │ │ ├── inode-directory.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-x-generic.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation.png │ │ │ └── x-office-spreadsheet.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── distributor-logo.png │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── airplane-mode.png │ │ │ ├── alarm.png │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty-charging.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── bluetooth-active.png │ │ │ ├── bluetooth-disabled.png │ │ │ ├── call-missed.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── channel-insecure.png │ │ │ ├── channel-secure.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox.png │ │ │ ├── computer-fail.png │ │ │ ├── content-loading.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── display-brightness.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── keyboard-brightness.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ ├── media-playlist-consecutive.png │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ ├── media-playlist-repeat-song.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-3g.png │ │ │ ├── network-cellular-4g.png │ │ │ ├── network-cellular-acquiring.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-cellular-edge.png │ │ │ ├── network-cellular-gprs.png │ │ │ ├── network-cellular-hspa.png │ │ │ ├── network-cellular-no-route.png │ │ │ ├── network-cellular-offline.png │ │ │ ├── network-cellular-signal-excellent.png │ │ │ ├── network-cellular-signal-good.png │ │ │ ├── network-cellular-signal-none.png │ │ │ ├── network-cellular-signal-ok.png │ │ │ ├── network-cellular-signal-weak.png │ │ │ ├── network-cellular-umts.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-no-route.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-vpn-acquiring.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired-acquiring.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── network-wired-no-route.png │ │ │ ├── network-wired-offline.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless-acquiring.png │ │ │ ├── network-wireless-connected.png │ │ │ ├── network-wireless-encrypted.png │ │ │ ├── network-wireless-hotspot.png │ │ │ ├── network-wireless-no-route.png │ │ │ ├── network-wireless-offline.png │ │ │ ├── network-wireless-signal-excellent.png │ │ │ ├── network-wireless-signal-good.png │ │ │ ├── network-wireless-signal-none.png │ │ │ ├── network-wireless-signal-ok.png │ │ │ ├── network-wireless-signal-weak.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── printer-warning.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio.png │ │ │ ├── rotation-allowed.png │ │ │ ├── rotation-locked.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── system-lock-screen.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── touchpad-disabled.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-status-pending.png │ │ │ ├── user-trash-full.png │ │ │ ├── view-wrapped-rtl.png │ │ │ ├── view-wrapped.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ │ └── stock │ │ │ ├── Makefile.am │ │ │ ├── gtk-apply.png │ │ │ ├── gtk-bold.png │ │ │ ├── gtk-cancel.png │ │ │ ├── gtk-connect.png │ │ │ ├── gtk-convert.png │ │ │ ├── gtk-disconnect.png │ │ │ ├── gtk-dnd-multiple.png │ │ │ ├── gtk-dnd.png │ │ │ ├── gtk-edit.png │ │ │ ├── gtk-index.png │ │ │ ├── gtk-no.png │ │ │ ├── gtk-ok.png │ │ │ ├── gtk-preferences.png │ │ │ ├── gtk-select-color.png │ │ │ ├── gtk-select-font.png │ │ │ ├── gtk-undelete.png │ │ │ └── gtk-yes.png │ ├── Makefile.am │ ├── index.theme.in │ └── scalable │ │ ├── Makefile.am │ │ ├── actions-extra │ │ ├── Makefile.am │ │ ├── bookmark-view.svg │ │ └── history-view.svg │ │ ├── actions │ │ ├── Makefile.am │ │ ├── application-exit.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── contact-new.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-ok.svg │ │ ├── document-new.svg │ │ ├── document-open-recent.svg │ │ ├── document-open.svg │ │ ├── document-page-setup.svg │ │ ├── document-print-preview.svg │ │ ├── document-print.svg │ │ ├── document-properties.svg │ │ ├── document-revert.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── edit-clear.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-undo.svg │ │ ├── folder-new.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-justify-center.svg │ │ ├── format-justify-fill.svg │ │ ├── format-justify-left.svg │ │ ├── format-justify-right.svg │ │ ├── format-text-bold.svg │ │ ├── format-text-italic.svg │ │ ├── format-text-strikethrough.svg │ │ ├── format-text-underline.svg │ │ ├── go-bottom.svg │ │ ├── go-down.svg │ │ ├── go-first.svg │ │ ├── go-home.svg │ │ ├── go-jump.svg │ │ ├── go-last.svg │ │ ├── go-next.svg │ │ ├── go-previous.svg │ │ ├── go-top.svg │ │ ├── go-up.svg │ │ ├── help-about.svg │ │ ├── help-contents.svg │ │ ├── help-faq.svg │ │ ├── insert-image.svg │ │ ├── insert-object.svg │ │ ├── insert-text.svg │ │ ├── list-add.svg │ │ ├── list-remove.svg │ │ ├── mail-forward.svg │ │ ├── mail-mark-important.svg │ │ ├── mail-mark-read.svg │ │ ├── mail-mark-unread.svg │ │ ├── mail-message-new.svg │ │ ├── mail-reply-all.svg │ │ ├── mail-reply-sender.svg │ │ ├── mail-send-receive.svg │ │ ├── media-eject.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-start.svg │ │ ├── media-playback-stop.svg │ │ ├── media-record.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── object-flip-horizontal.svg │ │ ├── object-flip-vertical.svg │ │ ├── object-rotate-left.svg │ │ ├── object-rotate-right.svg │ │ ├── process-stop.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-run.svg │ │ ├── system-search.svg │ │ ├── system-shutdown.svg │ │ ├── tool-check-spelling.svg │ │ ├── tools-check-spelling.svg │ │ ├── view-fullscreen.svg │ │ ├── view-refresh.svg │ │ ├── view-restore.svg │ │ ├── view-sort-ascending.svg │ │ ├── view-sort-descending.svg │ │ ├── window-close.svg │ │ ├── window-new.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-in.svg │ │ ├── zoom-original.svg │ │ └── zoom-out.svg │ │ ├── apps-extra │ │ ├── Makefile.am │ │ ├── brasero.svg │ │ ├── bug-buddy.svg │ │ ├── firefox-icon.svg │ │ ├── internet-group-chat.svg │ │ ├── internet-mail.svg │ │ ├── orca.svg │ │ ├── pidgin.svg │ │ ├── preferences-system-windows.svg │ │ ├── rhythmbox.svg │ │ ├── sound-juicer.svg │ │ ├── thunderbird-icon.svg │ │ ├── tomboy.svg │ │ └── totem.svg │ │ ├── apps │ │ ├── Makefile.am │ │ ├── accessories-calculator.svg │ │ ├── accessories-character-map.svg │ │ ├── accessories-text-editor.svg │ │ ├── atril.svg │ │ ├── haguichi.svg │ │ ├── help-browser.svg │ │ ├── mate-desktop.svg │ │ ├── mate-invest-applet.svg │ │ ├── meld.svg │ │ ├── preferences-desktop-accessibility.svg │ │ ├── preferences-desktop-font.svg │ │ ├── preferences-desktop-locale.svg │ │ ├── preferences-desktop-screensaver.svg │ │ ├── system-file-manager.svg │ │ ├── utilities-system-monitor.svg │ │ └── utilities-terminal.svg │ │ ├── categories │ │ ├── Makefile.am │ │ ├── applications-accessories.svg │ │ ├── applications-development.svg │ │ ├── applications-games.svg │ │ ├── applications-graphics.svg │ │ ├── applications-internet.svg │ │ ├── applications-multimedia.svg │ │ ├── applications-science.svg │ │ ├── applications-system.svg │ │ ├── preferences-desktop-peripherals.svg │ │ ├── preferences-desktop-personal.svg │ │ ├── preferences-desktop.svg │ │ └── preferences-system.svg │ │ ├── devices │ │ ├── Makefile.am │ │ ├── audio-input-microphone.svg │ │ ├── battery.svg │ │ ├── camera-photo.svg │ │ ├── camera-video.svg │ │ ├── computer.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-optical.svg │ │ ├── drive-removable-media.svg │ │ ├── input-keyboard.svg │ │ ├── input-mouse.svg │ │ ├── media-flash.svg │ │ ├── media-floppy.svg │ │ ├── media-optical.svg │ │ ├── media-tape.svg │ │ ├── multimedia-player.svg │ │ ├── network-wired.svg │ │ ├── network-wireless.svg │ │ ├── phone.svg │ │ ├── printer.svg │ │ └── video-display.svg │ │ ├── emblems │ │ ├── Makefile.am │ │ ├── emblem-default.svg │ │ ├── emblem-documents.svg │ │ ├── emblem-downloads.svg │ │ ├── emblem-favorite.svg │ │ ├── emblem-important.svg │ │ ├── emblem-mail.svg │ │ ├── emblem-photos.svg │ │ ├── emblem-readonly.svg │ │ ├── emblem-symbolic-link.svg │ │ ├── emblem-system.svg │ │ └── emblem-unreadable.svg │ │ ├── mimetypes │ │ ├── Makefile.am │ │ ├── application-x-executable.svg │ │ ├── audio-x-generic.svg │ │ ├── font-x-generic.svg │ │ ├── image-x-generic.svg │ │ ├── package-x-generic.svg │ │ ├── text-html.svg │ │ ├── text-x-generic-template.svg │ │ ├── text-x-generic.svg │ │ ├── text-x-preview.svg │ │ ├── text-x-script.svg │ │ ├── video-x-generic.svg │ │ ├── x-office-address-book.svg │ │ ├── x-office-calendar.svg │ │ ├── x-office-document.svg │ │ ├── x-office-presentation.svg │ │ └── x-office-spreadsheet.svg │ │ ├── places-extra │ │ ├── Makefile.am │ │ ├── library-internet-radio.svg │ │ ├── library-podcast.svg │ │ ├── playlist-automatic.svg │ │ └── playlist.svg │ │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.svg │ │ ├── folder.svg │ │ ├── network-server.svg │ │ ├── network-workgroup.svg │ │ ├── start-here.svg │ │ ├── user-bookmarks.svg │ │ ├── user-desktop.svg │ │ ├── user-home.svg │ │ └── user-trash.svg │ │ ├── status-extra │ │ ├── Makefile.am │ │ ├── nm-signal-100.svg │ │ ├── nm-signal-25.svg │ │ ├── nm-signal-50.svg │ │ ├── nm-signal-75.svg │ │ └── user.svg │ │ └── status │ │ ├── Makefile.am │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted.svg │ │ ├── battery-caution.svg │ │ ├── battery-low.svg │ │ ├── dialog-error.svg │ │ ├── dialog-information.svg │ │ ├── dialog-password.svg │ │ ├── dialog-question.svg │ │ ├── dialog-warning.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-open.svg │ │ ├── folder-visiting.svg │ │ ├── image-missing.svg │ │ ├── mail-attachment.svg │ │ ├── media-playlist-repeat.svg │ │ ├── media-playlist-shuffle.svg │ │ ├── network-offline.svg │ │ ├── network-online.svg │ │ ├── printer-error.svg │ │ ├── printer-printing.svg │ │ ├── software-update-available.svg │ │ ├── software-update-urgent.svg │ │ ├── user-trash-full.svg │ │ ├── weather-clear-night.svg │ │ ├── weather-clear.svg │ │ ├── weather-few-clouds-night.svg │ │ ├── weather-few-clouds.svg │ │ ├── weather-fog.svg │ │ ├── weather-overcast.svg │ │ ├── weather-showers-scattered.svg │ │ ├── weather-showers.svg │ │ ├── weather-snow.svg │ │ └── weather-storm.svg ├── Fog │ ├── 128x128 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 16x16 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-new.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 22x22 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-new.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 24x24 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-new.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 256x256 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 32x32 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-new.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 48x48 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 64x64 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── 96x96 │ │ ├── Makefile.am │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ ├── document-open.png │ │ │ └── folder-new.png │ │ ├── apps │ │ │ ├── Makefile.am │ │ │ └── preferences-desktop-display.png │ │ ├── devices │ │ │ ├── Makefile.am │ │ │ ├── computer.png │ │ │ └── video-display.png │ │ ├── places │ │ │ ├── Makefile.am │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── user-desktop.png │ │ │ └── user-home.png │ │ └── status │ │ │ ├── Makefile.am │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ └── folder-visiting.png │ ├── Makefile.am │ └── index.theme.in ├── Makefile.am └── Quid │ ├── 128x128 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 16x16 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 22x22 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 24x24 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 256x256 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 32x32 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 48x48 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 64x64 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── 96x96 │ ├── Makefile.am │ ├── actions │ │ ├── Makefile.am │ │ ├── document-open.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ └── view-refresh.png │ ├── places │ │ ├── Makefile.am │ │ ├── folder-remote.png │ │ ├── folder-saved-search.png │ │ ├── folder.png │ │ └── user-home.png │ └── status │ │ ├── Makefile.am │ │ ├── folder-drag-accept.png │ │ ├── folder-open.png │ │ └── folder-visiting.png │ ├── Makefile.am │ ├── index.theme.in │ └── scalable │ ├── Makefile.am │ ├── actions │ ├── Makefile.am │ ├── document-open.svg │ ├── go-bottom.svg │ ├── go-down.svg │ ├── go-first.svg │ ├── go-home.svg │ ├── go-last.svg │ ├── go-next.svg │ ├── go-previous.svg │ ├── go-top.svg │ ├── go-up.svg │ └── view-refresh.svg │ ├── places │ ├── Makefile.am │ ├── folder-remote.svg │ ├── folder-saved-search.svg │ ├── folder.svg │ └── user-home.svg │ └── status │ ├── Makefile.am │ ├── folder-drag-accept.svg │ ├── folder-open.svg │ └── folder-visiting.svg ├── makepot ├── marco-themes ├── Aldabra │ ├── background.png │ ├── button_close.png │ ├── button_close_prelight.png │ ├── button_close_pressed.png │ ├── metacity-theme-1.xml │ ├── metacity-theme-2.xml │ └── metacity-theme-3.xml ├── Fog │ └── metacity-theme-1.xml ├── Glider │ └── metacity-theme-1.xml ├── HighContrast │ └── metacity-theme-1.xml ├── Makefile.am ├── Quid │ ├── active-above-button.png │ ├── active-border-top-left-border.png │ ├── active-border-top-right-border.png │ ├── active-bottom-left-border.png │ ├── active-bottom-left-corner.png │ ├── active-bottom-mid-left-border.png │ ├── active-bottom-mid-right-border.png │ ├── active-bottom-right-border.png │ ├── active-bottom-right-corner.png │ ├── active-button-prelight.png │ ├── active-button-pressed.png │ ├── active-button.png │ ├── active-close-button.png │ ├── active-left-border.png │ ├── active-left-top-border-shaded.png │ ├── active-left-top-border.png │ ├── active-maximize-button.png │ ├── active-menu-button-prelight.png │ ├── active-menu-button-pressed.png │ ├── active-menu-button.png │ ├── active-minimize-button.png │ ├── active-restore-button.png │ ├── active-right-border.png │ ├── active-right-top-border-shaded.png │ ├── active-right-top-border.png │ ├── active-shade-button.png │ ├── active-stick-button.png │ ├── active-top-center-left.png │ ├── active-top-center-mid-left.png │ ├── active-top-center-mid-right.png │ ├── active-top-center-right.png │ ├── active-top-left-border.png │ ├── active-top-left-corner.png │ ├── active-top-mid-left-border.png │ ├── active-top-mid-right-border.png │ ├── active-top-right-border.png │ ├── active-top-right-corner.png │ ├── active-unabove-button.png │ ├── active-unshade-button.png │ ├── active-unstick-button.png │ ├── inactive-above-button.png │ ├── inactive-border-top-left-border.png │ ├── inactive-border-top-right-border.png │ ├── inactive-bottom-left-border.png │ ├── inactive-bottom-left-corner.png │ ├── inactive-bottom-mid-border.png │ ├── inactive-bottom-right-border.png │ ├── inactive-bottom-right-corner.png │ ├── inactive-button-prelight.png │ ├── inactive-button-pressed.png │ ├── inactive-button.png │ ├── inactive-close-button.png │ ├── inactive-left-border.png │ ├── inactive-left-top-border-shaded.png │ ├── inactive-left-top-border.png │ ├── inactive-maximize-button.png │ ├── inactive-menu-button-prelight.png │ ├── inactive-menu-button-pressed.png │ ├── inactive-menu-button.png │ ├── inactive-minimize-button.png │ ├── inactive-restore-button.png │ ├── inactive-right-border.png │ ├── inactive-right-top-border-shaded.png │ ├── inactive-right-top-border.png │ ├── inactive-shade-button.png │ ├── inactive-stick-button.png │ ├── inactive-top-center-left.png │ ├── inactive-top-center-mid.png │ ├── inactive-top-center-right.png │ ├── inactive-top-left-border.png │ ├── inactive-top-left-corner.png │ ├── inactive-top-mid-border.png │ ├── inactive-top-right-border.png │ ├── inactive-top-right-corner.png │ ├── inactive-unabove-button.png │ ├── inactive-unshade-button.png │ ├── inactive-unstick-button.png │ ├── metacity-theme-1.xml │ └── metacity-theme-2.xml └── Shiny │ └── metacity-theme-1.xml ├── mate-themes.pot └── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── POTFILES.skip ├── af.po ├── am.po ├── an.po ├── ar.po ├── ar_AE.po ├── ar_SA.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── bqi.po ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cmn.po ├── crh.po ├── cs.po ├── csb.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── de_AT.po ├── de_CH.po ├── dz.po ├── el.po ├── en_AU.po ├── en_BR.po ├── en_CA.po ├── en_DE.po ├── en_GB.po ├── en_US.po ├── eo.po ├── es.po ├── es_419.po ├── es_AR.po ├── es_CL.po ├── es_CO.po ├── es_CR.po ├── es_DO.po ├── es_EC.po ├── es_ES.po ├── es_MX.po ├── es_NI.po ├── es_PA.po ├── es_PE.po ├── es_PR.po ├── es_SV.po ├── es_US.po ├── es_UY.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fil.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fr_FR.po ├── frp.po ├── fur.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gnome-copyrights.txt ├── gu.po ├── gug_PY.po ├── ha.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── is.po ├── it.po ├── ja.po ├── ja_JP.po ├── jv.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── ks.po ├── ku.po ├── ku_IQ.po ├── ky.po ├── la.po ├── lb.po ├── lfn.po ├── li.po ├── lo.po ├── lt.po ├── lt_LT.po ├── lv.po ├── mai.po ├── mg.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── my.po ├── nah.po ├── nan.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── no.po ├── nqo.po ├── nso.po ├── oc.po ├── om.po ├── or.po ├── pa.po ├── pl.po ├── pl_PL.po ├── pms.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── ru_RU.po ├── rw.po ├── sc.po ├── sco.po ├── si.po ├── sk.po ├── sl.po ├── so.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── tk.po ├── tl.po ├── tr.po ├── ts.po ├── tt.po ├── tzm.po ├── ug.po ├── uk.po ├── uk_UA.po ├── ur.po ├── ur_PK.po ├── uz.po ├── uz@Latn.po ├── vi.po ├── wa.po ├── xh.po ├── yi.po ├── yo.po ├── zh-Hans.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.build.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.tx/config -------------------------------------------------------------------------------- /.tx/config_20221028214815.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/.tx/config_20221028214815.bak -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/configure.ac -------------------------------------------------------------------------------- /cursor-themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/Makefile.am -------------------------------------------------------------------------------- /cursor-themes/mate-black/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/Makefile.am -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/028006030e0e7ebffc7f7070c0600140: -------------------------------------------------------------------------------- 1 | h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | crossed_circle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/14fef782d02440884392942c11205230: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/2870a09082c103050810ffdffffe0204: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/AUTHORS -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/Makefile.am -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/X_cursor -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/alias: -------------------------------------------------------------------------------- 1 | dnd-link -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/all-scroll -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/bottom_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/bottom_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/bottom_tee -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/c7088f0f3e6c8088236ef8e1e3e70000: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/cell -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/circle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/col-resize: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/copy: -------------------------------------------------------------------------------- 1 | dnd-copy -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/cross -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/cross_reverse: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/crosshair: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/default: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/diamond_cross: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-ask -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-copy -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-link -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-move -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-no-drop -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dnd-none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dnd-none -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dot_box_mask: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/dotbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/draft_large: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/draft_small: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/draped_box: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/e-resize: -------------------------------------------------------------------------------- 1 | right_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ew-resize: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/fcf1c3c7cd4491d801f1e1c78f100000: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/fleur: -------------------------------------------------------------------------------- 1 | grabbing -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/grab: -------------------------------------------------------------------------------- 1 | hand1 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/grabbing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/grabbing -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/hand: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/hand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/hand1 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/hand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/help: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/icon: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/left_ptr_help: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/left_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/left_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/left_tee -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/link -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ll_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/ll_angle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/lr_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/lr_angle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/move -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/n-resize: -------------------------------------------------------------------------------- 1 | top_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | top_right_corner -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/no-drop: -------------------------------------------------------------------------------- 1 | dnd-no-drop -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | crossed_circle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ns-resize: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | top_left_corner -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/pencil -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/pirate: -------------------------------------------------------------------------------- 1 | X_cursor -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/plus -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/pointer: -------------------------------------------------------------------------------- 1 | hand -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/progress: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/right_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/right_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/right_tee -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/row-resize: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/s-resize: -------------------------------------------------------------------------------- 1 | bottom_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/sb_up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/sb_up_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/se-resize: -------------------------------------------------------------------------------- 1 | bottom_right_corner -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/size_bdiag: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/size_fdiag: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/size_hor: -------------------------------------------------------------------------------- 1 | h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/size_ver: -------------------------------------------------------------------------------- 1 | v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | bottom_left_corner -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/target: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/tcross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/tcross -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/top_left_arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/top_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/top_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/top_tee -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ul_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/ul_angle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/ur_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/ur_angle -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/w-resize: -------------------------------------------------------------------------------- 1 | left_side -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/wait: -------------------------------------------------------------------------------- 1 | watch -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/watch -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/xterm -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/zoom-in -------------------------------------------------------------------------------- /cursor-themes/mate-black/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-black/cursors/zoom-out -------------------------------------------------------------------------------- /cursor-themes/mate-black/index.theme.in: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=MATE (Black) 3 | Example=start-here 4 | 5 | -------------------------------------------------------------------------------- /cursor-themes/mate-white/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = \ 2 | cursors 3 | -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/028006030e0e7ebffc7f7070c0600140: -------------------------------------------------------------------------------- 1 | h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | crossed_circle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/14fef782d02440884392942c11205230: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/2870a09082c103050810ffdffffe0204: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/AUTHORS -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/Makefile.am -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/X_cursor -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/alias: -------------------------------------------------------------------------------- 1 | dnd-link -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/all-scroll -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/bottom_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/bottom_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/bottom_tee -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/cell -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/circle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/col-resize: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/copy -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/cross -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/cross_reverse: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/crosshair: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/default: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/diamond_cross: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-ask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-ask -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-copy -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-link -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-move -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-no-drop -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dnd-none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dnd-none -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dot_box_mask: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/dotbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/draft_large: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/draft_small: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/draped_box: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/e-resize: -------------------------------------------------------------------------------- 1 | right_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ew-resize: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/fcf1c3c7cd4491d801f1e1c78f100000: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/fleur: -------------------------------------------------------------------------------- 1 | grabbing -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/grab: -------------------------------------------------------------------------------- 1 | hand1 -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/grabbing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/grabbing -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | sb_h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/hand: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/hand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/hand1 -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/hand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/hand2 -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/help: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/icon: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/left_ptr_help: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/left_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/left_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/left_tee -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/link -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ll_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/ll_angle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/lr_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/lr_angle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/move -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/n-resize: -------------------------------------------------------------------------------- 1 | top_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | top_right_corner -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/no-drop: -------------------------------------------------------------------------------- 1 | dnd-no-drop -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | crossed_circle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ns-resize: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | top_left_corner -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/pencil -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/pirate -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/plus -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/pointer: -------------------------------------------------------------------------------- 1 | hand -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/progress: -------------------------------------------------------------------------------- 1 | left_ptr_watch -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/right_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/right_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/right_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/right_tee -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/row-resize: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/s-resize: -------------------------------------------------------------------------------- 1 | bottom_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/sb_up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/sb_up_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/se-resize: -------------------------------------------------------------------------------- 1 | bottom_right_corner -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/size_bdiag: -------------------------------------------------------------------------------- 1 | fd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/size_fdiag: -------------------------------------------------------------------------------- 1 | bd_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/size_hor: -------------------------------------------------------------------------------- 1 | h_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/size_ver: -------------------------------------------------------------------------------- 1 | v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | bottom_left_corner -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/target: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/tcross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/tcross -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/top_left_arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/top_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/top_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/top_tee -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ul_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/ul_angle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/ur_angle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/ur_angle -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | sb_v_double_arrow -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/w-resize: -------------------------------------------------------------------------------- 1 | left_side -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/wait: -------------------------------------------------------------------------------- 1 | watch -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/watch -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/xterm -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/zoom-in -------------------------------------------------------------------------------- /cursor-themes/mate-white/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/cursor-themes/mate-white/cursors/zoom-out -------------------------------------------------------------------------------- /desktop-themes/BlackMATE-border/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE-border/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/COPYING -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/README -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/apps/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/apps/yumex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/apps/yumex.css -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/cinnamon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/cinnamon/close.svg -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-2.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/gtk-2.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-3.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/gtk-3.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-3.0/gtk-dark.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main-dark.css"); 2 | -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main.css"); 2 | -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/gtk-3.0/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/gtk-3.0/unity.css -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/metacity-1/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/metacity-1/bar.png -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/unity/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/unity/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/unity/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/unity/close.png -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/unity/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/unity/maximize.png -------------------------------------------------------------------------------- /desktop-themes/BlackMATE/unity/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlackMATE/unity/minimize.png -------------------------------------------------------------------------------- /desktop-themes/Blue-Submarine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Blue-Submarine/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Blue-Submarine/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Blue-Submarine/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/Blue-Submarine/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Blue-Submarine/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-border/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-border/COPYING -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-border/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-border/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-border/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-border/README -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/COPYING -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/README -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/emerald/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/emerald/README -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main.css"); 2 | -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/BlueMenta-dark/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta-dark/xfwm4/themerc -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/COPYING -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/README -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/cinnamon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/cinnamon/close.svg -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/cinnamon/gdm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/cinnamon/gdm.css -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/cinnamon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/cinnamon/menu.png -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/emerald/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/emerald/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/emerald/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/emerald/README -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/gtk-2.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/gtk-2.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/gtk-3.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/gtk-3.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main.css"); 2 | -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/gtk-3.0/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/gtk-3.0/unity.css -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/metacity-1/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/metacity-1/menu.png -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/unity/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/unity/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/unity/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/unity/close.png -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/unity/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/unity/maximize.png -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/unity/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/unity/minimize.png -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/xfwm4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/xfwm4/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/BlueMenta/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/BlueMenta/xfwm4/themerc -------------------------------------------------------------------------------- /desktop-themes/ContrastHigh/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/ContrastHigh/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/ContrastHigh/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/ContrastHigh/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/Green-Submarine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Green-Submarine/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Green-Submarine/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Green-Submarine/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna-border/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna-border/COPYING -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/COPYING -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/README -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/gtk-2.0/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/gtk-2.0/bg.png -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main.css"); 2 | -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/gtk-3.0/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/gtk-3.0/unity.css -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/unity/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/unity/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/GreenLaguna/unity/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/GreenLaguna/unity/close.png -------------------------------------------------------------------------------- /desktop-themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta-border/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta-border/COPYING -------------------------------------------------------------------------------- /desktop-themes/Menta-border/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta-border/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta-border/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta-border/README -------------------------------------------------------------------------------- /desktop-themes/Menta/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/COPYING -------------------------------------------------------------------------------- /desktop-themes/Menta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/README -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/cinnamon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/cinnamon.css -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/close.svg -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/gdm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/gdm.css -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/menu.png -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/overview1.png -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/overview2.png -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/switch-off.png -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/switch-on.png -------------------------------------------------------------------------------- /desktop-themes/Menta/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /desktop-themes/Menta/emerald/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/emerald/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/emerald/Menta.emerald: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/emerald/Menta.emerald -------------------------------------------------------------------------------- /desktop-themes/Menta/emerald/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/emerald/README -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/apps/caja.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/apps/caja.rc -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/apps/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/apps/dummy.png -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/apps/pluma.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/apps/pluma.rc -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/apps/thunar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/apps/thunar.rc -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-2.0/widgets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-2.0/widgets/README -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/assets/null.png -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/gtk-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/gtk-main.css -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/gtk-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/gtk-widgets.css -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import url("gtk-main.css"); 2 | 3 | -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/settings.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/settings.ini.in -------------------------------------------------------------------------------- /desktop-themes/Menta/gtk-3.0/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/gtk-3.0/unity.css -------------------------------------------------------------------------------- /desktop-themes/Menta/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/Menta/metacity-1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/metacity-1/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/metacity-1/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/metacity-1/menu.png -------------------------------------------------------------------------------- /desktop-themes/Menta/unity/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/unity/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/unity/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/unity/close.png -------------------------------------------------------------------------------- /desktop-themes/Menta/unity/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/unity/maximize.png -------------------------------------------------------------------------------- /desktop-themes/Menta/unity/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/unity/minimize.png -------------------------------------------------------------------------------- /desktop-themes/Menta/unity/unmaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/unity/unmaximize.png -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/bottom-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/close-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/close-pressed.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/hide-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/hide-inactive.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/hide-prelight.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/hide-pressed.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/left-active.png -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/left-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/left-inactive.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/menu-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/menu-inactive.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/menu-prelight.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/menu-pressed.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/right-active.png -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/right-active.xpm -------------------------------------------------------------------------------- /desktop-themes/Menta/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/Menta/xfwm4/themerc -------------------------------------------------------------------------------- /desktop-themes/TraditionalGreen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalGreen/COPYING -------------------------------------------------------------------------------- /desktop-themes/TraditionalGreen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalGreen/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/COPYING -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/xfwm4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/xfwm4/README -------------------------------------------------------------------------------- /desktop-themes/TraditionalOk/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/TraditionalOk/xfwm4/themerc -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/COPYING -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-2.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-2.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/README -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/_apps.scss -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/assets.svg -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/assets.txt -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-3.0/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-3.0/gtk.scss -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-4.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-4.0/README -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-4.0/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-4.0/assets.svg -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-4.0/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-4.0/assets.txt -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-4.0/gtk.css -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/gtk-4.0/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/gtk-4.0/gtk.scss -------------------------------------------------------------------------------- /desktop-themes/YaruGreen/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruGreen/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/YaruOk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/COPYING -------------------------------------------------------------------------------- /desktop-themes/YaruOk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-2.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-2.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/README -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_apps.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_colors.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_common.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_drawing.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_palette.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/_tweaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/_tweaks.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/assets.svg -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/assets.txt -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/gtk.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-3.0/parse-sass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-3.0/parse-sass.sh -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/README -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/_colors.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/_common.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/_drawing.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/_palette.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/_tweaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/_tweaks.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/assets.svg -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/assets.txt -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/gtk.css -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/gtk.scss -------------------------------------------------------------------------------- /desktop-themes/YaruOk/gtk-4.0/parse-sass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/gtk-4.0/parse-sass.sh -------------------------------------------------------------------------------- /desktop-themes/YaruOk/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/index.theme.in -------------------------------------------------------------------------------- /desktop-themes/YaruOk/metacity-1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/metacity-1/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/openbox-3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/openbox-3/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/openbox-3/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/openbox-3/themerc -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/README -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/close-active.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/hide-active.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/hide-pressed.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/left-active.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/menu-active.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/menu-pressed.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/png/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/png/Makefile.am -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/right-active.xpm -------------------------------------------------------------------------------- /desktop-themes/YaruOk/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/desktop-themes/YaruOk/xfwm4/themerc -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/engrampa.png: -------------------------------------------------------------------------------- 1 | file-roller.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/eog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/eom.png: -------------------------------------------------------------------------------- 1 | eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/ghex.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/gimp.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/gkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/gkb.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/gok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/gok.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/maps.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/mate-notification-properties.png: -------------------------------------------------------------------------------- 1 | preferences-system-notifications.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/mate-panel-clock.png: -------------------------------------------------------------------------------- 1 | clock.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/mate-session-properties.png: -------------------------------------------------------------------------------- 1 | session-properties.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/miro.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/mozo.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/orca.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/pino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/pino.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/smc.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/terminal.png: -------------------------------------------------------------------------------- 1 | utilities-terminal.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/apps/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/16x16/apps/vim.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/devices/nm-applet.png: -------------------------------------------------------------------------------- 1 | network-wired.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/16x16/places/distributor-logo.png: -------------------------------------------------------------------------------- 1 | start-here.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/engrampa.png: -------------------------------------------------------------------------------- 1 | file-roller.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/eog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/eom.png: -------------------------------------------------------------------------------- 1 | eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/ghex.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/gimp.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/gkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/gkb.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/gok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/gok.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/maps.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/mate-notification-properties.png: -------------------------------------------------------------------------------- 1 | preferences-system-notifications.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/mate-panel-clock.png: -------------------------------------------------------------------------------- 1 | clock.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/mate-session-properties.png: -------------------------------------------------------------------------------- 1 | session-properties.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/miro.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/mozo.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/orca.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/pino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/pino.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/smc.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/terminal.png: -------------------------------------------------------------------------------- 1 | utilities-terminal.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/apps/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/22x22/apps/vim.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/categories/applications-other.png: -------------------------------------------------------------------------------- 1 | preferences-other.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/devices/nm-applet.png: -------------------------------------------------------------------------------- 1 | network-wired.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/22x22/places/distributor-logo.png: -------------------------------------------------------------------------------- 1 | start-here.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/engrampa.png: -------------------------------------------------------------------------------- 1 | file-roller.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/eog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/eom.png: -------------------------------------------------------------------------------- 1 | eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/ghex.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/gimp.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/gkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/gkb.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/gok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/gok.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/maps.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/mate-notification-properties.png: -------------------------------------------------------------------------------- 1 | preferences-system-notifications.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/mate-panel-clock.png: -------------------------------------------------------------------------------- 1 | clock.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/mate-session-properties.png: -------------------------------------------------------------------------------- 1 | session-properties.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/miro.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/mozo.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/orca.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/pino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/pino.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/smc.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/terminal.png: -------------------------------------------------------------------------------- 1 | utilities-terminal.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/apps/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/24x24/apps/vim.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/devices/nm-applet.png: -------------------------------------------------------------------------------- 1 | network-wired.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/mate-logo-icon-transparent.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/24x24/places/distributor-logo.png: -------------------------------------------------------------------------------- 1 | start-here.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/256x256/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/256x256/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/256x256/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/256x256/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/256x256/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/engrampa.png: -------------------------------------------------------------------------------- 1 | file-roller.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/eog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/eom.png: -------------------------------------------------------------------------------- 1 | eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/ghex.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/gimp.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/gkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/gkb.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/gok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/gok.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/maps.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/mate-notification-properties.png: -------------------------------------------------------------------------------- 1 | preferences-system-notifications.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/mate-panel-clock.png: -------------------------------------------------------------------------------- 1 | clock.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/mate-session-properties.png: -------------------------------------------------------------------------------- 1 | session-properties.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/miro.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/mozo.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/orca.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/pino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/pino.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/smc.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/terminal.png: -------------------------------------------------------------------------------- 1 | utilities-terminal.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/apps/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/32x32/apps/vim.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/devices/nm-applet.png: -------------------------------------------------------------------------------- 1 | network-wired.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/32x32/places/distributor-logo.png: -------------------------------------------------------------------------------- 1 | start-here.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/engrampa.png: -------------------------------------------------------------------------------- 1 | file-roller.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/eog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/eom.png: -------------------------------------------------------------------------------- 1 | eog.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/gcolor2.png: -------------------------------------------------------------------------------- 1 | preferences-color.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/ghex.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/gimp.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/gkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/gkb.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/gok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/gok.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/maps.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/mate-desktop.png: -------------------------------------------------------------------------------- 1 | mate-logo-icon-transparent.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/mate-notification-properties.png: -------------------------------------------------------------------------------- 1 | preferences-system-notifications.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/mate-panel-clock.png: -------------------------------------------------------------------------------- 1 | clock.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/mate-session-properties.png: -------------------------------------------------------------------------------- 1 | session-properties.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/miro.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/mozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/mozo.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/orca.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/pino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/pino.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/smc.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/terminal.png: -------------------------------------------------------------------------------- 1 | utilities-terminal.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/apps/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/48x48/apps/vim.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/categories/preferences-desktop-personal.png: -------------------------------------------------------------------------------- 1 | preferences-system.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/devices/nm-applet.png: -------------------------------------------------------------------------------- 1 | network-wired.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/48x48/places/distributor-logo.png: -------------------------------------------------------------------------------- 1 | start-here.png -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/Makefile.am -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/ContrastHigh/index.theme.in -------------------------------------------------------------------------------- /icon-themes/ContrastHigh/scalable/categories/preferences-desktop-personal.svg: -------------------------------------------------------------------------------- 1 | preferences-system.svg -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/devices/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/devices/computer.png -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/places/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/places/user-home.png -------------------------------------------------------------------------------- /icon-themes/Fog/128x128/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/128x128/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/actions/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/actions/folder-new.png -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/devices/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/devices/computer.png -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/16x16/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/16x16/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/22x22/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/22x22/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/24x24/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/24x24/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/256x256/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/256x256/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/256x256/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/256x256/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/256x256/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/256x256/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/32x32/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/32x32/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/48x48/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/48x48/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/64x64/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/64x64/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/actions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/actions/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/apps/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/devices/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/devices/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Fog/96x96/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/96x96/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Fog/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Fog/index.theme.in -------------------------------------------------------------------------------- /icon-themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/128x128/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/128x128/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/16x16/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/16x16/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/22x22/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/22x22/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/24x24/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/24x24/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/256x256/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/256x256/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/32x32/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/32x32/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/48x48/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/48x48/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/64x64/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/64x64/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/actions/go-top.png -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/actions/go-up.png -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/places/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/places/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/places/folder.png -------------------------------------------------------------------------------- /icon-themes/Quid/96x96/status/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/96x96/status/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/Makefile.am -------------------------------------------------------------------------------- /icon-themes/Quid/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/index.theme.in -------------------------------------------------------------------------------- /icon-themes/Quid/scalable/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/icon-themes/Quid/scalable/Makefile.am -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/makepot -------------------------------------------------------------------------------- /marco-themes/Aldabra/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Aldabra/background.png -------------------------------------------------------------------------------- /marco-themes/Aldabra/button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Aldabra/button_close.png -------------------------------------------------------------------------------- /marco-themes/Aldabra/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Aldabra/metacity-theme-1.xml -------------------------------------------------------------------------------- /marco-themes/Aldabra/metacity-theme-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Aldabra/metacity-theme-2.xml -------------------------------------------------------------------------------- /marco-themes/Aldabra/metacity-theme-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Aldabra/metacity-theme-3.xml -------------------------------------------------------------------------------- /marco-themes/Fog/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Fog/metacity-theme-1.xml -------------------------------------------------------------------------------- /marco-themes/Glider/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Glider/metacity-theme-1.xml -------------------------------------------------------------------------------- /marco-themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Makefile.am -------------------------------------------------------------------------------- /marco-themes/Quid/active-above-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-above-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-close-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-left-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-left-border.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-menu-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-right-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-right-border.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-shade-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-shade-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/active-stick-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/active-stick-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/inactive-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/inactive-button.png -------------------------------------------------------------------------------- /marco-themes/Quid/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/metacity-theme-1.xml -------------------------------------------------------------------------------- /marco-themes/Quid/metacity-theme-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Quid/metacity-theme-2.xml -------------------------------------------------------------------------------- /marco-themes/Shiny/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/marco-themes/Shiny/metacity-theme-1.xml -------------------------------------------------------------------------------- /mate-themes.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/mate-themes.pot -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/am.po -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/an.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ar_AE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ar_AE.po -------------------------------------------------------------------------------- /po/ar_SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ar_SA.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/bqi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/bqi.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/br.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/cmn.po -------------------------------------------------------------------------------- /po/crh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/crh.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/csb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/csb.po -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/cv.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/de.po -------------------------------------------------------------------------------- /po/de_AT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/de_AT.po -------------------------------------------------------------------------------- /po/de_CH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/de_CH.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_BR.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_DE.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_419.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_CL.po -------------------------------------------------------------------------------- /po/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_CO.po -------------------------------------------------------------------------------- /po/es_CR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_CR.po -------------------------------------------------------------------------------- /po/es_DO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_DO.po -------------------------------------------------------------------------------- /po/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_EC.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/es_NI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_NI.po -------------------------------------------------------------------------------- /po/es_PA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_PA.po -------------------------------------------------------------------------------- /po/es_PE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_PE.po -------------------------------------------------------------------------------- /po/es_PR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_PR.po -------------------------------------------------------------------------------- /po/es_SV.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_SV.po -------------------------------------------------------------------------------- /po/es_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_US.po -------------------------------------------------------------------------------- /po/es_UY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_UY.po -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/es_VE.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fil.po -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fo.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/frp.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/fy.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/gd.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gnome-copyrights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/gnome-copyrights.txt -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/gug_PY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/gug_PY.po -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ha.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ig.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ja_JP.po -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/jv.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/km.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ks.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/ku_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ku_IQ.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/la.po -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lb.po -------------------------------------------------------------------------------- /po/lfn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lfn.po -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/li.po -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lo.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lt_LT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lt_LT.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mg.po -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mi.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nah.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nah.po -------------------------------------------------------------------------------- /po/nan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nan.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/no.po -------------------------------------------------------------------------------- /po/nqo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nqo.po -------------------------------------------------------------------------------- /po/nso.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/nso.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/om.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pl_PL.po -------------------------------------------------------------------------------- /po/pms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pms.po -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ps.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ru_RU.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sc.po -------------------------------------------------------------------------------- /po/sco.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sco.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/so.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/sw.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tg.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tk.po -------------------------------------------------------------------------------- /po/tl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tl.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ts.po -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tt.po -------------------------------------------------------------------------------- /po/tzm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/tzm.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/uk_UA.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/ur_PK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/ur_PK.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/uz@Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/uz@Latn.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/yi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/yi.po -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/yo.po -------------------------------------------------------------------------------- /po/zh-Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zh-Hans.po -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-themes/HEAD/po/zu.po --------------------------------------------------------------------------------