├── CREDITS ├── LICENSE.md ├── README.md ├── cinnamon ├── background-assets │ ├── add-workspace-bg.svg │ ├── buttonbox-bg.svg │ ├── desklet-body.svg │ ├── desklet-header.svg │ ├── hover.svg │ ├── keyboard-bg.svg │ ├── popup.svg │ └── workspace-close-area-bg.svg ├── buttons │ ├── button-focused-pressed.svg │ ├── button-focused.svg │ ├── button-hover.svg │ ├── button-insensitive.svg │ ├── button-pressed.svg │ └── button.svg ├── cinnamon.css ├── control-assets │ ├── calendar-arrow-left.svg │ ├── calendar-arrow-right.svg │ ├── checkbox-checked-over.svg │ ├── checkbox-checked.svg │ ├── checkbox-unchecked-over.svg │ ├── checkbox-unchecked.svg │ ├── close-hover.svg │ ├── close.svg │ ├── hotcorner-icon-hover.svg │ ├── hotcorner-icon.svg │ ├── off.svg │ ├── on.svg │ ├── radio-selected-focus.svg │ ├── radio-selected.svg │ ├── radio-unselected-over.svg │ └── radio-unselected.svg ├── expo-scale-assets │ ├── plus.svg │ ├── trash.svg │ ├── window-name.svg │ ├── workspace-name-pressed.svg │ └── workspace-name.svg ├── menu.png ├── metadata.json ├── misc-assets │ ├── calendar-today.svg │ ├── corner-ripple.svg │ ├── entry-focused.svg │ ├── entry.svg │ └── highlighted.svg ├── panel-assets │ ├── item-active.svg │ ├── item-attention-hover.svg │ ├── item-attention.svg │ ├── item-hover.svg │ ├── item-open-hover.svg │ ├── item-open.svg │ └── panel-separator.svg ├── theme.json └── thumbnail.png ├── gnome-shell ├── assets │ ├── calendar-arrow-left.svg │ ├── calendar-arrow-right.svg │ ├── checkbox-focused.svg │ ├── checkbox-off-focused.svg │ ├── checkbox-off.svg │ ├── checkbox.svg │ ├── close-window.svg │ ├── corner-ripple-ltr.png │ ├── corner-ripple-rtl.png │ ├── dash-placeholder.svg │ ├── more-results.svg │ ├── no-events.svg │ ├── no-notifications.svg │ ├── noise-texture.png │ ├── off.png │ ├── on.png │ ├── page-indicator-active.svg │ ├── page-indicator-checked.svg │ ├── page-indicator-hover.svg │ ├── page-indicator-inactive.svg │ ├── process-working.svg │ ├── view-grid-symbolic-active.svg │ └── view-grid-symbolic.svg └── gnome-shell.css ├── gtk-2.0 ├── assets │ ├── button-default.png │ ├── button-hover.png │ ├── button-insensitive.png │ ├── button-pressed.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked.png │ ├── radio-checked-insensitive.png │ ├── radio-checked.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked.png │ └── resize_grip.png ├── gtkrc └── panel.rc ├── gtk-3.0 ├── apps │ ├── gnome-applications.css │ ├── granite-widgets.css │ ├── lightdm-gtk-greeter.css │ ├── nemo.css │ ├── synaptic.css │ ├── unity.css │ ├── vibrancy.css │ └── xfce.css ├── assets │ ├── checkbox-checked-insensitive-unfocused.svg │ ├── checkbox-checked-insensitive.svg │ ├── checkbox-checked-unfocused.svg │ ├── checkbox-checked.svg │ ├── checkbox-mixed-insensitive-unfocused.svg │ ├── checkbox-mixed-insensitive.svg │ ├── checkbox-mixed-unfocused.svg │ ├── checkbox-mixed.svg │ ├── checkbox-unchecked-insensitive-unfocused.svg │ ├── checkbox-unchecked-insensitive.svg │ ├── checkbox-unchecked-unfocused.svg │ ├── checkbox-unchecked.svg │ ├── off-disabled.png │ ├── off.png │ ├── on-disabled.png │ ├── on.png │ ├── radio-mixed-insensitive-unfocused.svg │ ├── radio-mixed-insensitive.svg │ ├── radio-mixed-unfocused.svg │ ├── radio-mixed.svg │ ├── radio-selected-insensitive-unfocused.svg │ ├── radio-selected-insensitive.svg │ ├── radio-selected-unfocused.svg │ ├── radio-selected.svg │ ├── radio-unselected-insensitive-unfocused.svg │ ├── radio-unselected-insensitive.svg │ ├── radio-unselected-unfocused.svg │ └── radio-unselected.svg ├── buttons │ ├── close-focused-active.svg │ ├── close-focused-normal.svg │ ├── close-focused-pressed.svg │ ├── close-unfocused-active.svg │ ├── close-unfocused-normal.svg │ ├── maximize-focused-active.svg │ ├── maximize-focused-normal.svg │ ├── maximize-focused-pressed.svg │ ├── maximize-unfocused-active.svg │ ├── maximize-unfocused-normal.svg │ ├── minimize-focused-active.svg │ ├── minimize-focused-normal.svg │ ├── minimize-focused-pressed.svg │ ├── minimize-unfocused-active.svg │ ├── minimize-unfocused-normal.svg │ ├── restore-focused-active.svg │ ├── restore-focused-normal.svg │ ├── restore-focused-pressed.svg │ ├── restore-unfocused-active.svg │ ├── restore-unfocused-normal.svg │ └── unfocused.svg ├── gtk-widgets-assets.css ├── gtk-widgets.css ├── gtk.css ├── settings.ini └── thumbnail.png ├── gtk-3.20 ├── assets │ ├── checkbox-checked-insensitive-unfocused.png │ ├── checkbox-checked-insensitive-unfocused@2.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked-insensitive@2.png │ ├── checkbox-checked-unfocused.png │ ├── checkbox-checked-unfocused@2.png │ ├── checkbox-checked.png │ ├── checkbox-checked@2.png │ ├── checkbox-mixed-insensitive-unfocused.png │ ├── checkbox-mixed-insensitive-unfocused@2.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed-insensitive@2.png │ ├── checkbox-mixed-unfocused.png │ ├── checkbox-mixed-unfocused@2.png │ ├── checkbox-mixed.png │ ├── checkbox-mixed@2.png │ ├── checkbox-unchecked-insensitive-unfocused.png │ ├── checkbox-unchecked-insensitive-unfocused@2.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked-insensitive@2.png │ ├── checkbox-unchecked-unfocused.png │ ├── checkbox-unchecked-unfocused@2.png │ ├── checkbox-unchecked.png │ ├── checkbox-unchecked@2.png │ ├── close-active.svg │ ├── close-backdrop.svg │ ├── close-hover.svg │ ├── close-normal.svg │ ├── maximize-active.svg │ ├── maximize-backdrop.svg │ ├── maximize-hover.svg │ ├── maximize-normal.svg │ ├── minimize-active.svg │ ├── minimize-backdrop.svg │ ├── minimize-hover.svg │ ├── minimize-normal.svg │ ├── radio-checked-insensitive-unfocused.png │ ├── radio-checked-insensitive-unfocused@2.png │ ├── radio-checked-insensitive.png │ ├── radio-checked-insensitive@2.png │ ├── radio-checked-unfocused.png │ ├── radio-checked-unfocused@2.png │ ├── radio-checked.png │ ├── radio-checked@2.png │ ├── radio-mixed-insensitive-unfocused.png │ ├── radio-mixed-insensitive-unfocused@2.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed-insensitive@2.png │ ├── radio-mixed-unfocused.png │ ├── radio-mixed-unfocused@2.png │ ├── radio-mixed.png │ ├── radio-mixed@2.png │ ├── radio-unchecked-insensitive-unfocused.png │ ├── radio-unchecked-insensitive-unfocused@2.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked-insensitive@2.png │ ├── radio-unchecked-unfocused.png │ ├── radio-unchecked-unfocused@2.png │ ├── radio-unchecked.png │ ├── radio-unchecked@2.png │ └── unfocused.svg ├── gtk-dark.css ├── gtk.css ├── settings.ini └── thumbnail.png ├── gtk-4.0 ├── assets │ ├── checkbox-checked-insensitive-unfocused.png │ ├── checkbox-checked-insensitive-unfocused@2.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked-insensitive@2.png │ ├── checkbox-checked-unfocused.png │ ├── checkbox-checked-unfocused@2.png │ ├── checkbox-checked.png │ ├── checkbox-checked@2.png │ ├── checkbox-mixed-insensitive-unfocused.png │ ├── checkbox-mixed-insensitive-unfocused@2.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed-insensitive@2.png │ ├── checkbox-mixed-unfocused.png │ ├── checkbox-mixed-unfocused@2.png │ ├── checkbox-mixed.png │ ├── checkbox-mixed@2.png │ ├── checkbox-unchecked-insensitive-unfocused.png │ ├── checkbox-unchecked-insensitive-unfocused@2.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked-insensitive@2.png │ ├── checkbox-unchecked-unfocused.png │ ├── checkbox-unchecked-unfocused@2.png │ ├── checkbox-unchecked.png │ ├── checkbox-unchecked@2.png │ ├── close-active.svg │ ├── close-backdrop.svg │ ├── close-hover.svg │ ├── close-normal.svg │ ├── maximize-active.svg │ ├── maximize-backdrop.svg │ ├── maximize-hover.svg │ ├── maximize-normal.svg │ ├── minimize-active.svg │ ├── minimize-backdrop.svg │ ├── minimize-hover.svg │ ├── minimize-normal.svg │ ├── radio-checked-insensitive-unfocused.png │ ├── radio-checked-insensitive-unfocused@2.png │ ├── radio-checked-insensitive.png │ ├── radio-checked-insensitive@2.png │ ├── radio-checked-unfocused.png │ ├── radio-checked-unfocused@2.png │ ├── radio-checked.png │ ├── radio-checked@2.png │ ├── radio-mixed-insensitive-unfocused.png │ ├── radio-mixed-insensitive-unfocused@2.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed-insensitive@2.png │ ├── radio-mixed-unfocused.png │ ├── radio-mixed-unfocused@2.png │ ├── radio-mixed.png │ ├── radio-mixed@2.png │ ├── radio-unchecked-insensitive-unfocused.png │ ├── radio-unchecked-insensitive-unfocused@2.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked-insensitive@2.png │ ├── radio-unchecked-unfocused.png │ ├── radio-unchecked-unfocused@2.png │ ├── radio-unchecked.png │ ├── radio-unchecked@2.png │ └── unfocused.svg ├── gtk-dark.css └── gtk.css ├── index.theme ├── metacity-1 ├── button-bg.svg ├── close-active.svg ├── close-hover.svg ├── close.svg ├── maximize-active.svg ├── maximize-hover.svg ├── maximize.svg ├── menu-icon.svg ├── metacity-theme-2.xml ├── metacity-theme-3.xml ├── minimize-active.svg ├── minimize-hover.svg ├── minimize.svg ├── shade-icon.svg ├── stick-icon.svg ├── thumbnail.png ├── unfocused.svg ├── unmaximize-active.svg ├── unmaximize-hover.svg ├── unshade-icon.svg └── unstick-icon.svg ├── openbox-3 ├── bullet.xbm ├── close.xbm ├── iconify.xbm ├── max.xbm └── themerc ├── plank ├── dock.theme └── hover.theme ├── unity ├── close.svg ├── close_focused_normal.svg ├── close_focused_prelight.svg ├── close_focused_pressed.svg ├── close_unfocused.svg ├── close_unfocused_prelight.svg ├── close_unfocused_pressed.svg ├── launcher_arrow_ltr_19.svg ├── launcher_arrow_ltr_37.svg ├── launcher_arrow_outline_ltr_19.svg ├── launcher_arrow_outline_ltr_37.svg ├── launcher_arrow_outline_rtl_19.svg ├── launcher_arrow_outline_rtl_37.svg ├── launcher_arrow_rtl_19.svg ├── launcher_arrow_rtl_37.svg ├── launcher_bfb.png ├── launcher_icon_back_150.svg ├── launcher_icon_back_54.svg ├── launcher_icon_edge_150.svg ├── launcher_icon_edge_54.svg ├── launcher_icon_glow_200.svg ├── launcher_icon_glow_62.svg ├── launcher_icon_selected_back_150.svg ├── launcher_icon_selected_back_54.svg ├── launcher_icon_shadow_200.svg ├── launcher_icon_shadow_62.svg ├── launcher_icon_shine_150.svg ├── launcher_icon_shine_54.svg ├── launcher_pip_ltr_19.svg ├── launcher_pip_ltr_37.svg ├── launcher_pip_rtl_19.svg ├── launcher_pip_rtl_37.svg ├── maximize.svg ├── maximize_focused_normal.svg ├── maximize_focused_prelight.svg ├── maximize_focused_pressed.svg ├── maximize_unfocused.svg ├── maximize_unfocused_prelight.svg ├── maximize_unfocused_pressed.svg ├── minimize.svg ├── minimize_focused_normal.svg ├── minimize_focused_prelight.svg ├── minimize_focused_pressed.svg ├── minimize_unfocused.svg ├── minimize_unfocused_prelight.svg ├── minimize_unfocused_pressed.svg ├── unfocused.svg ├── unmaximize.svg ├── unmaximize_focused_normal.svg ├── unmaximize_focused_prelight.svg ├── unmaximize_focused_pressed.svg ├── unmaximize_unfocused.svg ├── unmaximize_unfocused_prelight.svg └── unmaximize_unfocused_pressed.svg └── xfwm4 ├── bottom-active.png ├── bottom-inactive.png ├── bottom-left-active.png ├── bottom-left-inactive.png ├── bottom-right-active.png ├── bottom-right-inactive.png ├── close-active.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-inactive.png ├── maximize-active.xpm ├── maximize-inactive.xpm ├── maximize-prelight.xpm ├── maximize-pressed.xpm ├── right-active.png ├── right-inactive.png ├── 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.xpm ├── top-left-inactive.xpm ├── top-right-active.xpm ├── top-right-inactive.xpm └── unfocused.xpm /CREDITS: -------------------------------------------------------------------------------- 1 | Simon Steinbeiß 2 | Joern Konopka 3 | Georgi Karavasilev 4 | David Barr 5 | 6 | Christian Medel 7 | 8 | herrminni for his headerbar entry fix 9 | B00merang Testers Team 10 | sunkotora for original cinnamon theme 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![built-with-azurra-framework](https://github.com/B00merang-Project/B00merang-Project.github.io/blob/master/resources/badges/azurra/badge_smaller.png)](https://github.com/B00merang-Project/Azurra_framework) 2 | 3 | # iOS 4 | iOS theme for Linux desktops, based on the latest iteration from Apple's mobile OS 5 | 6 | ### Preview 7 | ![ios](https://github.com/B00merang-Project/gallery/raw/master/iOS%2012%20(3).png) 8 | 9 | ### Supported platforms 10 | - Any GTK-based desktop 11 | - Cinnamon 12 | - Gnome 13 | - LXDE/Openbox 14 | - MATE 15 | - Xfce 16 | 17 | ### Manual installation 18 | Go to releases, download the latest `.zip` file and extract it to the themes directory i.e. `/home/USERNAME/.themes` 19 | -------------------------------------------------------------------------------- /cinnamon/background-assets/hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 31 | 33 | 36 | 40 | 44 | 45 | 46 | 66 | 75 | 76 | -------------------------------------------------------------------------------- /cinnamon/control-assets/radio-unselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 74 | 78 | 82 | 83 | -------------------------------------------------------------------------------- /cinnamon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/cinnamon/menu.png -------------------------------------------------------------------------------- /cinnamon/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "last-edited": "1426017329", 3 | "uuid": "452" 4 | } -------------------------------------------------------------------------------- /cinnamon/misc-assets/calendar-today.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 31 | 33 | 36 | 40 | 44 | 45 | 46 | 66 | 75 | 76 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 31 | 33 | 36 | 40 | 44 | 45 | 46 | 66 | 75 | 76 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-attention-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 31 | 33 | 53 | 66 | 67 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-attention.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 31 | 33 | 53 | 66 | 67 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 59 | 60 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-open-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 58 | 64 | 65 | -------------------------------------------------------------------------------- /cinnamon/panel-assets/item-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 62 | 63 | -------------------------------------------------------------------------------- /cinnamon/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "cinnamon-theme": { 3 | "name": "New-Minty", 4 | "author": "zagortenay333", 5 | "version": "", 6 | "type": "custom", 7 | "thumbnail": "thumbnail.png", 8 | "url": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 44 | 51 | 52 | 54 | 55 | 57 | image/svg+xml 58 | 60 | 61 | 62 | 63 | 64 | 69 | 71 | 79 | 80 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 44 | 51 | 52 | 54 | 55 | 57 | image/svg+xml 58 | 60 | 61 | 62 | 63 | 64 | 69 | 72 | 80 | 81 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /gnome-shell/assets/corner-ripple-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gnome-shell/assets/corner-ripple-ltr.png -------------------------------------------------------------------------------- /gnome-shell/assets/corner-ripple-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gnome-shell/assets/corner-ripple-rtl.png -------------------------------------------------------------------------------- /gnome-shell/assets/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gnome-shell/assets/noise-texture.png -------------------------------------------------------------------------------- /gnome-shell/assets/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gnome-shell/assets/off.png -------------------------------------------------------------------------------- /gnome-shell/assets/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gnome-shell/assets/on.png -------------------------------------------------------------------------------- /gnome-shell/assets/page-indicator-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 39 | 42 | 43 | 45 | 46 | 48 | image/svg+xml 49 | 51 | 52 | 53 | 54 | 55 | 60 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /gnome-shell/assets/page-indicator-checked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 56 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /gnome-shell/assets/page-indicator-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 40 | 42 | 43 | 45 | image/svg+xml 46 | 48 | 49 | 50 | 51 | 52 | 57 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /gnome-shell/assets/page-indicator-inactive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 44 | 47 | 48 | 50 | 51 | 53 | image/svg+xml 54 | 56 | 57 | 58 | 59 | 60 | 65 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /gtk-2.0/assets/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/button-default.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/button-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-2.0/assets/resize_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-2.0/assets/resize_grip.png -------------------------------------------------------------------------------- /gtk-3.0/apps/nemo.css: -------------------------------------------------------------------------------- 1 | /*********************** 2 | * pathbar breadcrumbs * 3 | ***********************/ 4 | NemoPathbarButton { 5 | border-color: shade(@toolbar_bg_color, 0.8); 6 | background-color: shade(@toolbar_bg_color, 1.08); 7 | background-image: none; 8 | color: @toolbar_fg_color; 9 | 10 | -NemoPathbarButton-border-radius: 2px; 11 | } 12 | 13 | NemoPathbarButton:active { 14 | border-color: shade(@toolbar_bg_color, 0.8); 15 | background-color: shade(@toolbar_bg_color, 0.95); 16 | background-image: none; 17 | } 18 | 19 | NemoPathbarButton:hover { 20 | border-color: shade(@toolbar_bg_color, 0.7); 21 | background-color: shade(@toolbar_bg_color, 1.10); 22 | background-image: none; 23 | } 24 | 25 | NemoPathbarButton:active:hover { 26 | border-color: shade(@toolbar_bg_color, 0.7); 27 | } 28 | 29 | /********************************* 30 | * sidebar disk space indicators * 31 | *********************************/ 32 | NemoPlacesTreeView { 33 | -NemoPlacesTreeView-disk-full-bg-color: shade(@toolbar_bg_color, 0.8); 34 | -NemoPlacesTreeView-disk-full-fg-color: @theme_selected_bg_color; 35 | -NemoPlacesTreeView-disk-full-bar-width: 1px; 36 | -NemoPlacesTreeView-disk-full-bar-radius: 1px; 37 | -NemoPlacesTreeView-disk-full-bottom-padding: 2px; 38 | -NemoPlacesTreeView-disk-full-max-length: 70px; 39 | } 40 | 41 | NemoPlacesTreeView:selected { 42 | -NemoPlacesTreeView-disk-full-bg-color: @theme_selected_fg_color; 43 | -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_selected_bg_color, 1.4); 44 | } 45 | 46 | NemoPlacesTreeView:hover { 47 | } 48 | 49 | NemoPlacesTreeView:selected:hover { 50 | } 51 | -------------------------------------------------------------------------------- /gtk-3.0/apps/synaptic.css: -------------------------------------------------------------------------------- 1 | /************ 2 | * synaptic * 3 | ************/ 4 | GtkWindow > GtkVBox > .dock, 5 | GtkWindow > GtkVBox > .dock > GtkHBox > GtkToolbar { 6 | padding: 4px; 7 | border-style: none; 8 | background-color: @toolbar_bg_color; 9 | background-image: none; 10 | color: @toolbar_fg_color; 11 | } 12 | -------------------------------------------------------------------------------- /gtk-3.0/apps/unity.css: -------------------------------------------------------------------------------- 1 | UnityDecoration { 2 | -UnityDecoration-extents: 28px 0 0 0; 3 | -UnityDecoration-input-extents: 10px; 4 | 5 | -UnityDecoration-shadow-offset-x: 1px; 6 | -UnityDecoration-shadow-offset-y: 1px; 7 | -UnityDecoration-active-shadow-color: rgba(0,0,0,0.7); 8 | -UnityDecoration-active-shadow-radius: 8px; 9 | -UnityDecoration-inactive-shadow-color: rgba(0,0,0,0.5); 10 | -UnityDecoration-inactive-shadow-radius: 5px; 11 | 12 | -UnityDecoration-glow-size: 10px; 13 | -UnityDecoration-glow-color: @theme_selected_bg_color; 14 | 15 | -UnityDecoration-title-indent: 10px; 16 | -UnityDecoration-title-fade: 35px; 17 | -UnityDecoration-title-alignment: 0.0; 18 | } 19 | 20 | UnityDecoration.top { 21 | border: 1px solid @toolbar_bg_color; 22 | border-bottom-width: 0; 23 | border-radius: 6px 6px 0 0; 24 | padding: 1px 8px 0 8px; 25 | background-color: @titlebar_bg_color; 26 | color: mix(@titlebar_fg_color, @titlebar_bg_color, 0.1); 27 | text-shadow: none; 28 | } 29 | 30 | UnityDecoration.top:backdrop { 31 | border: 1px solid @toolbar_bg_color; 32 | border-bottom-width: 0; 33 | background-color: @titlebar_bg_color; 34 | color: mix(@titlebar_fg_color, @titlebar_bg_color, 0.4); 35 | } 36 | 37 | UnityDecoration.left, 38 | UnityDecoration.right, 39 | UnityDecoration.bottom { 40 | background-color: @toolbar_bg_color; 41 | } 42 | 43 | UnityDecoration.left:backdrop, 44 | UnityDecoration.right:backdrop, 45 | UnityDecoration.bottom:backdrop { 46 | background-color: @toolbar_bg_color; 47 | } 48 | 49 | UnityPanelWidget, 50 | .unity-panel { 51 | border-width: 0 0 1px 0; 52 | border-style: solid; 53 | border-color: @panel_bg_color; 54 | background-color: @panel_bg_color; 55 | background-image: none; 56 | color: @panel_fg_color; 57 | } 58 | 59 | .unity-panel.menubar, 60 | .unity-panel .menubar { 61 | } 62 | 63 | .unity-panel.menuitem, 64 | .unity-panel .menuitem { 65 | border-width: 0 1px; 66 | color: @panel_fg_color; 67 | } 68 | 69 | .unity-panel.menubar.menuitem:hover, 70 | .unity-panel.menubar .menuitem *:hover { 71 | background-image: none; 72 | background-color: @theme_selected_bg_color; 73 | color: @theme_selected_fg_color; 74 | } 75 | -------------------------------------------------------------------------------- /gtk-3.0/apps/vibrancy.css: -------------------------------------------------------------------------------- 1 | /* Gedit transparency */ 2 | FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, 3 | GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { 4 | background: none; 5 | background-color: alpha(@titlebar_bg_color, 0.9); } 6 | GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { 7 | background-color: @theme_unfocused_bg_color; } 8 | FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, 9 | GeditWindow.background.csd > .titlebar { 10 | background: none; 11 | background-color: transparent; } 12 | 13 | GeditWindow.background.csd { 14 | background-color: transparent; } 15 | 16 | GeditWindow GtkStatusbar { 17 | background: @theme_bg_color; } 18 | 19 | .gedit-bottom-panel-paned { 20 | background-color: @theme_base_color; } 21 | 22 | /* Nautilus sidebar & headerbar transparency */ 23 | .sidebar, 24 | .sidebar.view, 25 | .sidebar .view, 26 | .sidebar GtkScrolledWindow { 27 | background: none; 28 | } 29 | 30 | NautilusWindow.background.csd > GtkHeaderBar.header-bar.titlebar, 31 | NautilusWindow.background.csd { 32 | background: none; 33 | background-color: alpha(@titlebar_bg_color, 0.95); 34 | } 35 | 36 | /* make menu transparent (gnome) */ 37 | .csd .popup { 38 | background: transparent; 39 | } 40 | 41 | .background.csd .menu, 42 | .csd .popup { 43 | border-radius: 0; 44 | } 45 | -------------------------------------------------------------------------------- /gtk-3.0/apps/xfce.css: -------------------------------------------------------------------------------- 1 | XfceHeading { 2 | margin: 0; 3 | padding: 0; 4 | border-width: 0; 5 | background-color: @theme_base_color; 6 | background-image: none; 7 | color: @theme_text_color; 8 | } 9 | 10 | .xfce4-panel { 11 | background-color: @panel_bg_color; 12 | color: @panel_fg_color; 13 | font: normal; 14 | } 15 | 16 | .xfce4-panel .button { 17 | padding: 0 2px; 18 | border-radius: 0; 19 | border-style: none; 20 | color: @panel_fg_color; 21 | } 22 | 23 | .xfce4-panel .button:active { 24 | background-color: shade(@panel_bg_color, 0.8); 25 | background-image: none; 26 | color: @panel_fg_color; 27 | } 28 | 29 | .xfce4-panel .button:hover, 30 | .xfce4-panel .button:active:hover { 31 | background-color: mix(@panel_bg_color, @panel_fg_color, 0.21); 32 | background-image: none; 33 | color: shade(@panel_fg_color, 1.08); 34 | } 35 | 36 | .xfce4-panel .menu { 37 | -gtk-image-effect: none; 38 | } 39 | -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive-unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 79 | 83 | 90 | 91 | -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 54 | 58 | 59 | 63 | 67 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 79 | 83 | 90 | 91 | -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 79 | 83 | 90 | 91 | -------------------------------------------------------------------------------- /gtk-3.0/assets/off-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.0/assets/off-disabled.png -------------------------------------------------------------------------------- /gtk-3.0/assets/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.0/assets/off.png -------------------------------------------------------------------------------- /gtk-3.0/assets/on-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.0/assets/on-disabled.png -------------------------------------------------------------------------------- /gtk-3.0/assets/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.0/assets/on.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive-unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 74 | 78 | 85 | 86 | -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 54 | 58 | 59 | 63 | 67 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 74 | 78 | 85 | 86 | -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 74 | 78 | 85 | 86 | -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unselected-insensitive.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 55 | 60 | 61 | -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 49 | 51 | 53 | 57 | 61 | 62 | 69 | 70 | 74 | 78 | 82 | 83 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/close-focused-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/close-focused-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/close-focused-pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/close-unfocused-active.svg: -------------------------------------------------------------------------------- 1 | close-focused-active.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/close-unfocused-normal.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/maximize-focused-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/maximize-focused-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/maximize-focused-pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/maximize-unfocused-active.svg: -------------------------------------------------------------------------------- 1 | maximize-focused-active.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/maximize-unfocused-normal.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/minimize-focused-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/minimize-focused-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/minimize-focused-pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/buttons/minimize-unfocused-active.svg: -------------------------------------------------------------------------------- 1 | minimize-focused-active.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/minimize-unfocused-normal.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/restore-focused-active.svg: -------------------------------------------------------------------------------- 1 | maximize-focused-active.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/restore-focused-normal.svg: -------------------------------------------------------------------------------- 1 | maximize-focused-normal.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/restore-focused-pressed.svg: -------------------------------------------------------------------------------- 1 | maximize-focused-pressed.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/restore-unfocused-active.svg: -------------------------------------------------------------------------------- 1 | maximize-focused-active.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/restore-unfocused-normal.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.0/buttons/unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-auto-mnemonics = 1 3 | gtk-visible-focus = automatic 4 | -------------------------------------------------------------------------------- /gtk-3.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.0/thumbnail.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-3.20/assets/checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/assets/close-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.20/assets/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-3.20/assets/close-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/assets/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 52 | 57 | 65 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /gtk-3.20/assets/maximize-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.20/assets/maximize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/assets/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/assets/minimize-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-3.20/assets/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-3.20/assets/minimize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-checked@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-unfocused.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-3.20/assets/radio-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/assets/radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.20/assets/unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-3.20/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-auto-mnemonics = 1 3 | gtk-visible-focus = automatic 4 | -------------------------------------------------------------------------------- /gtk-3.20/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-3.20/thumbnail.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-4.0/assets/close-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-4.0/assets/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-4.0/assets/close-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-4.0/assets/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 52 | 57 | 65 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /gtk-4.0/assets/maximize-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-4.0/assets/maximize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-4.0/assets/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-4.0/assets/minimize-backdrop.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /gtk-4.0/assets/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gtk-4.0/assets/minimize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-insensitive-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-insensitive-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-unfocused.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked-unfocused@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/gtk-4.0/assets/radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /index.theme: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=X-GNOME-Metatheme 3 | Name=iOS 4 | Comment=A theme by Christian Medel (Elbullazul) 5 | Encoding=UTF-8 6 | 7 | [X-GNOME-Metatheme] 8 | GtkTheme=iOS 9 | MetacityTheme=iOS 10 | IconTheme=La Capitaine 11 | CursorTheme=DMZ-Black 12 | ButtonLayout=close,minimize,maximize: 13 | -------------------------------------------------------------------------------- /metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /openbox-3/bullet.xbm: -------------------------------------------------------------------------------- 1 | #define bullet_width 5 2 | #define bullet_height 7 3 | static unsigned char bullet_bits[] = { 4 | 0x03, 0x06, 0x0c, 0x18, 0x0c, 0x06, 0x03 }; 5 | -------------------------------------------------------------------------------- /openbox-3/close.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 15 2 | #define close_height 15 3 | static unsigned char close_bits[] = { 4 | 0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xfe, 0x3f, 0xff, 0x7f, 5 | 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xfe, 0x3f, 0xfe, 0x3f, 6 | 0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 }; 7 | -------------------------------------------------------------------------------- /openbox-3/iconify.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 15 2 | #define close_height 15 3 | static unsigned char close_bits[] = { 4 | 0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xfe, 0x3f, 0xff, 0x7f, 5 | 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xfe, 0x3f, 0xfe, 0x3f, 6 | 0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 }; 7 | -------------------------------------------------------------------------------- /openbox-3/max.xbm: -------------------------------------------------------------------------------- 1 | #define close_width 15 2 | #define close_height 15 3 | static unsigned char close_bits[] = { 4 | 0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xfe, 0x3f, 0xff, 0x7f, 5 | 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0xfe, 0x3f, 0xfe, 0x3f, 6 | 0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 }; 7 | -------------------------------------------------------------------------------- /plank/dock.theme: -------------------------------------------------------------------------------- 1 | #This file auto-generated by Plank. 2 | #2017-02-03T15:01:36+0000 3 | 4 | [PlankTheme] 5 | #The roundness of the top corners. 6 | TopRoundness=0 7 | #The roundness of the bottom corners. 8 | BottomRoundness=0 9 | #The thickness (in pixels) of lines drawn. 10 | LineWidth=0 11 | #The color (RGBA) of the outer stroke. 12 | OuterStrokeColor=0;;0;;0;;120 13 | #The starting color (RGBA) of the fill gradient. 14 | FillStartColor=255;;255;;255;;150 15 | #The ending color (RGBA) of the fill gradient. 16 | FillEndColor=255;;255;;255;;150 17 | #The color (RGBA) of the inner stroke. 18 | InnerStrokeColor=255;;255;;255;;0 19 | 20 | [PlankDockTheme] 21 | #The padding on the left/right dock edges, in tenths of a percent of IconSize. 22 | HorizPadding=1.5 23 | #The padding on the top dock edge, in tenths of a percent of IconSize. 24 | TopPadding=1.8 25 | #The padding on the bottom dock edge, in tenths of a percent of IconSize. 26 | BottomPadding=1.8 27 | #The padding between items on the dock, in tenths of a percent of IconSize. 28 | ItemPadding=5 29 | #The size of item indicators, in tenths of a percent of IconSize. 30 | IndicatorSize=8 31 | #The size of the icon-shadow behind every item, in tenths of a percent of IconSize. 32 | IconShadowSize=1 33 | #The height (in percent of IconSize) to bounce an icon when the application sets urgent. 34 | UrgentBounceHeight=1.6666666666666667 35 | #The height (in percent of IconSize) to bounce an icon when launching an application. 36 | LaunchBounceHeight=0.23000000000000001 37 | #The opacity value (0 to 1) to fade the dock to when hiding it. 38 | FadeOpacity=1 39 | #The amount of time (in ms) for click animations. 40 | ClickTime=300 41 | #The amount of time (in ms) to bounce an urgent icon. 42 | UrgentBounceTime=600 43 | #The amount of time (in ms) to bounce an icon when launching an application. 44 | LaunchBounceTime=400 45 | #The amount of time (in ms) for active window indicator animations. 46 | ActiveTime=300 47 | #The amount of time (in ms) to slide icons into/out of the dock. 48 | SlideTime=300 49 | #The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). 50 | FadeTime=200 51 | #The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). 52 | HideTime=150 53 | #The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. 54 | GlowSize=30 55 | #The total time (in ms) to show the hidden-dock urgent glow. 56 | GlowTime=10000 57 | #The time (in ms) of each pulse of the hidden-dock urgent glow. 58 | GlowPulseTime=2000 59 | #The hue-shift (-180 to 180) of the urgent indicator color. 60 | UrgentHueShift=150 61 | #The time (in ms) to move an item to its new position or its addition/removal to/from the dock. 62 | ItemMoveTime=450 63 | #Whether background and icons will unhide/hide with different speeds. The top-border of both will leave/hit the screen-edge at the same time. 64 | CascadeHide=true 65 | -------------------------------------------------------------------------------- /plank/hover.theme: -------------------------------------------------------------------------------- 1 | # 2013 (C) zamiere 2 | 3 | [PlankDrawingTheme] 4 | #The roundness of the top corners. 5 | TopRoundness=3 6 | #The roundness of the bottom corners. 7 | BottomRoundness=3 8 | #The thickness (in pixels) of lines drawn. 9 | LineWidth=0 10 | #The color (RGBA) of the outer stroke. 11 | OuterStrokeColor=255;;255;;255;;0 12 | #The starting color (RGBA) of the fill gradient. 13 | FillStartColor=0;;0;;0;;179 14 | #The ending color (RGBA) of the fill gradient. 15 | FillEndColor=0;;0;;0;;179 16 | #The color (RGBA) of the inner stroke. 17 | InnerStrokeColor=255;;255;;255;;0 18 | -------------------------------------------------------------------------------- /unity/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | close.svg -------------------------------------------------------------------------------- /unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | close_focused_prelight.svg -------------------------------------------------------------------------------- /unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | close_focused_pressed.svg -------------------------------------------------------------------------------- /unity/launcher_bfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/unity/launcher_bfb.png -------------------------------------------------------------------------------- /unity/launcher_icon_back_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 48 | 51 | 52 | 54 | 56 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /unity/launcher_icon_back_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 51 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /unity/launcher_icon_edge_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 49 | 52 | 53 | 55 | 57 | 60 | 61 | 63 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /unity/launcher_icon_edge_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 52 | 55 | 56 | 58 | 60 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /unity/launcher_icon_glow_200.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/launcher_icon_glow_62.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/launcher_icon_selected_back_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 50 | 53 | 54 | 56 | 59 | 63 | 64 | 66 | 76 | 77 | 86 | 87 | 96 | 97 | -------------------------------------------------------------------------------- /unity/launcher_icon_selected_back_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 27 | 28 | 29 | 30 | 32 | 35 | 39 | 40 | 49 | 50 | 70 | 73 | 74 | 82 | 83 | -------------------------------------------------------------------------------- /unity/launcher_icon_shadow_200.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/launcher_icon_shadow_62.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 52 | 54 | 56 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /unity/launcher_icon_shine_150.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 51 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /unity/launcher_icon_shine_54.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 31 | 34 | 38 | 42 | 43 | 53 | 54 | 75 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /unity/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | maximize.svg -------------------------------------------------------------------------------- /unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_prelight.svg -------------------------------------------------------------------------------- /unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_pressed.svg -------------------------------------------------------------------------------- /unity/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | minimize.svg -------------------------------------------------------------------------------- /unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | minimize_focused_prelight.svg -------------------------------------------------------------------------------- /unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | minimize_focused_pressed.svg -------------------------------------------------------------------------------- /unity/unfocused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | maximize.svg -------------------------------------------------------------------------------- /unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | maximize.svg -------------------------------------------------------------------------------- /unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_prelight.svg -------------------------------------------------------------------------------- /unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_pressed.svg -------------------------------------------------------------------------------- /unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | unfocused.svg -------------------------------------------------------------------------------- /unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_prelight.svg -------------------------------------------------------------------------------- /unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | maximize_focused_pressed.svg -------------------------------------------------------------------------------- /xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /xfwm4/close-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\close_active_xpm[] = { 3 | "20 18 28 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #E3B2B4", 7 | "@ c #E07C7F", 8 | "# c #E1545B", 9 | "$ c #E0545B", 10 | "% c #E07D81", 11 | "& c #E4B4B5", 12 | "* c #E0565B", 13 | "= c #EE4C52", 14 | "- c #F25157", 15 | "; c #EE4B52", 16 | "> c #DF595F", 17 | ", c #E4434C", 18 | "' c #E3454E", 19 | ") c #E0545A", 20 | "! c #E0585E", 21 | "~ c #E2B1B3", 22 | "{ c #E3B4B5", 23 | "] c #E07A7D", 24 | "^ c #E07F82", 25 | "/ c #E15159", 26 | "( c #E1595F", 27 | "_ c #E2B3B6", 28 | ": c #E0575D", 29 | "< c #E3B2B3", 30 | "[ c #E07D80", 31 | "} c #E3B3B4", 32 | "....................", 33 | "....................", 34 | ".......+@#$%&.......", 35 | "......*=----;>......", 36 | ".....,--------'.....", 37 | "....)----------!....", 38 | "...~=----------;{...", 39 | "...]------------^...", 40 | ".../------------(...", 41 | ".../------------(...", 42 | "...]------------^...", 43 | "...~=----------;_...", 44 | "....:---------->....", 45 | ".....,--------'.....", 46 | "......*=----;>......", 47 | ".......<@#$[}.......", 48 | "....................", 49 | "...................."}; 50 | -------------------------------------------------------------------------------- /xfwm4/close-inactive.xpm: -------------------------------------------------------------------------------- 1 | unfocused.xpm -------------------------------------------------------------------------------- /xfwm4/close-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\close_prelight_xpm[] = { 3 | "20 18 46 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #E2AEAF", 7 | "@ c #E07579", 8 | "# c #E04850", 9 | "$ c #E14850", 10 | "% c #E0767A", 11 | "& c #E2AFB0", 12 | "* c #E7C7C7", 13 | "= c #E14F55", 14 | "- c #EF4B52", 15 | "; c #F25056", 16 | "> c #E05158", 17 | ", c #E7C9C9", 18 | "' c #E6C7C7", 19 | ") c #E53F49", 20 | "! c #E5404A", 21 | "~ c #E7CACA", 22 | "{ c #E64950", 23 | "] c #DC424B", 24 | "^ c #DB424A", 25 | "/ c #E74950", 26 | "( c #E15259", 27 | "_ c #A21F2C", 28 | ": c #D63F48", 29 | "< c #D53E47", 30 | "[ c #DD434B", 31 | "} c #EE4A52", 32 | "| c #E3B1B1", 33 | "1 c #E07478", 34 | "2 c #D84048", 35 | "3 c #E07A7D", 36 | "4 c #E15057", 37 | "5 c #E07679", 38 | "6 c #E07A7E", 39 | "7 c #E3AEB0", 40 | "8 c #EE4A51", 41 | "9 c #E2B1B3", 42 | "0 c #E0545A", 43 | "a c #E7C8CA", 44 | "b c #E43F49", 45 | "c c #E6CACC", 46 | "d c #E05058", 47 | "e c #E6CBCC", 48 | "f c #DF787B", 49 | "g c #E14E55", 50 | "....................", 51 | "....................", 52 | ".......+@#$%&.......", 53 | ".....*=-;;;;->,.....", 54 | "....');;;;;;;;!~....", 55 | "....=;{];;;;^/;(....", 56 | "...+-;]_:;;<_[;}|...", 57 | "...1;;;:_:<_2;;;3...", 58 | "...$;;;;:__2;;;;=...", 59 | "...#;;;;<__:;;;;4...", 60 | "...5;;;<_2:_:;;;6...", 61 | "...7-;^_2;;:_[;89...", 62 | "....>;/[;;;;[/;0....", 63 | "....a!;;;;;;;;bc....", 64 | ".....~d};;;;80e.....", 65 | ".......|f=g39.......", 66 | "....................", 67 | "...................."}; 68 | -------------------------------------------------------------------------------- /xfwm4/close-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\close_pressed_xpm[] = { 3 | "20 18 47 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #E3B2B4", 7 | "@ c #DB7B7E", 8 | "# c #D64C54", 9 | "$ c #D74E56", 10 | "% c #DB7C7F", 11 | "& c #E3B4B5", 12 | "* c #E8CDCC", 13 | "= c #D74E55", 14 | "- c #D62A37", 15 | "; c #D75359", 16 | "> c #E9CFCE", 17 | ", c #E7CDCD", 18 | "' c #D5333E", 19 | ") c #D62A38", 20 | "! c #D63640", 21 | "~ c #E8CFCE", 22 | "{ c #D64C53", 23 | "] c #CE2936", 24 | "^ c #C82835", 25 | "/ c #C72835", 26 | "( c #CF2A37", 27 | "_ c #D75258", 28 | ": c #E2B2B3", 29 | "< c #A1222E", 30 | "[ c #C42835", 31 | "} c #C32734", 32 | "| c #E4B5B5", 33 | "1 c #DB777B", 34 | "2 c #DB7D80", 35 | "3 c #D74950", 36 | "4 c #D74951", 37 | "5 c #DA787B", 38 | "6 c #E2B1B3", 39 | "7 c #C92835", 40 | "8 c #E2B3B6", 41 | "9 c #D75056", 42 | "0 c #CE2A37", 43 | "a c #E8CBCD", 44 | "b c #E7CDCF", 45 | "c c #E8CCCD", 46 | "d c #D8535A", 47 | "e c #E8CECF", 48 | "f c #DB797D", 49 | "g c #D74B52", 50 | "h c #D74C53", 51 | "....................", 52 | "....................", 53 | ".......+@#$%&.......", 54 | ".....*=------;>.....", 55 | "....,'-)-)-)-)!~....", 56 | "....{)]^-)-)/()_....", 57 | "...:-)/<[)-}<^)-|...", 58 | "...1)-)}<[}<[--)2...", 59 | "...3)-)-}<<[)--)_...", 60 | "...4))))}<<[))))_...", 61 | "...5)-)}<[}<[--)2...", 62 | "...6))/<[))}<7))8...", 63 | "....9-0^----^(-;....", 64 | "....a')-)-)-)-!b....", 65 | ".....c$)-)-)-de.....", 66 | ".......:fgh@+.......", 67 | "....................", 68 | "...................."}; 69 | -------------------------------------------------------------------------------- /xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\hide_active_xpm[] = { 3 | "20 18 34 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #E5CEB2", 7 | "@ c #E4B977", 8 | "# c #E6B249", 9 | "$ c #E6B149", 10 | "% c #E5BA78", 11 | "& c #E6CDB2", 12 | "* c #EADBCC", 13 | "= c #E5B14A", 14 | "- c #F6C033", 15 | "; c #FAC638", 16 | "> c #E5B14D", 17 | ", c #EADCCC", 18 | "' c #E9DCCC", 19 | ") c #EAB231", 20 | "! c #FAC538", 21 | "~ c #E6B14A", 22 | "{ c #E6B14C", 23 | "] c #E5CDB1", 24 | "^ c #E6CEB2", 25 | "/ c #E5B977", 26 | "( c #E4B978", 27 | "_ c #E7B147", 28 | ": c #E7B34B", 29 | "< c #E5CCB1", 30 | "[ c #E5CDB2", 31 | "} c #E6B14D", 32 | "| c #E9DBCC", 33 | "1 c #EAB230", 34 | "2 c #E9DBCD", 35 | "3 c #E5B14E", 36 | "4 c #E9DCCD", 37 | "5 c #E4CDB0", 38 | "....................", 39 | "....................", 40 | ".......+@#$%&.......", 41 | ".....*=-;;;;->,.....", 42 | "....')!;;;;;;!)'....", 43 | "....~!;;;;;;;;!{....", 44 | "...]-;;;;;;;;;;-^...", 45 | ".../;;;;;;;;;;;;(...", 46 | "..._;;;;;;;;;;;;:...", 47 | "..._;;;;;;;;;;;;:...", 48 | ".../;;;;;;;;;;;;(...", 49 | "...<-;;;;;;;;;;-[...", 50 | "....}!;;;;;;;;!>....", 51 | "....|1!;;;;;;!12....", 52 | ".....|=-;;;;-34.....", 53 | ".......5@#$%<.......", 54 | "....................", 55 | "...................."}; 56 | -------------------------------------------------------------------------------- /xfwm4/hide-inactive.xpm: -------------------------------------------------------------------------------- 1 | unfocused.xpm -------------------------------------------------------------------------------- /xfwm4/hide-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\hide_prelight_xpm[] = { 3 | "20 18 45 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #E5CBAD", 7 | "@ c #E4B76F", 8 | "# c #E6B039", 9 | "$ c #E5CAAD", 10 | "% c #E9D9C6", 11 | "& c #E7B143", 12 | "* c #F6C031", 13 | "= c #FAC536", 14 | "- c #E7B043", 15 | "; c #E9D9C7", 16 | "> c #E8D9C6", 17 | ", c #EBB328", 18 | "' c #E8D9C7", 19 | ") c #E7B145", 20 | "! c #E5B770", 21 | "~ c #E5B872", 22 | "{ c #E6B03A", 23 | "] c #DBA32B", 24 | "^ c #C08522", 25 | "/ c #DCA42B", 26 | "( c #E7B13F", 27 | "_ c #E7B03D", 28 | ": c #DCA52C", 29 | "< c #C28723", 30 | "[ c #DDA52C", 31 | "} c #E6B03F", 32 | "| c #E4B771", 33 | "1 c #E6B873", 34 | "2 c #E5CBAF", 35 | "3 c #E6B045", 36 | "4 c #E7B047", 37 | "5 c #E8D8C9", 38 | "6 c #EBB32A", 39 | "7 c #E8D9CA", 40 | "8 c #E9D9C9", 41 | "9 c #E7B147", 42 | "0 c #E5B047", 43 | "a c #E8DACA", 44 | "b c #E5CBAE", 45 | "c c #E5B874", 46 | "d c #E6B041", 47 | "e c #E4B874", 48 | "f c #E4CBAF", 49 | "....................", 50 | "....................", 51 | ".......+@##@$.......", 52 | ".....%&*====*-;.....", 53 | "....>,========,'....", 54 | "....-==========)....", 55 | "...+*==========*+...", 56 | "...!============~...", 57 | "...{=]^^^^^^^^/=(...", 58 | "..._=:<<<<<<<<[=}...", 59 | "...|============1...", 60 | "...2*==========*2...", 61 | "....3==========4....", 62 | "....56========67....", 63 | ".....89*====*0a.....", 64 | ".......bcddef.......", 65 | "....................", 66 | "...................."}; 67 | -------------------------------------------------------------------------------- /xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\hide_pressed_xpm[] = { 3 | "20 18 32 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #F4DCB5", 7 | "@ c #F8CF7E", 8 | "# c #F9C754", 9 | "$ c #FAC856", 10 | "% c #F5DDB5", 11 | "& c #F2E4CD", 12 | "* c #FAC857", 13 | "= c #FAC638", 14 | "- c #F9C958", 15 | "; c #FAC63F", 16 | "> c #F9C856", 17 | ", c #F9C857", 18 | "' c #F4DCB4", 19 | ") c #F5DDB4", 20 | "! c #F8CE7D", 21 | "~ c #F9C853", 22 | "{ c #DDA62F", 23 | "] c #C18826", 24 | "^ c #DEA62F", 25 | "/ c #DDA52F", 26 | "( c #F8CF7D", 27 | "_ c #F4DBB4", 28 | ": c #F4DBB5", 29 | "< c #F2E3CD", 30 | "[ c #F2E3CE", 31 | "} c #F9C959", 32 | "| c #F2E4CE", 33 | "1 c #F5DCB3", 34 | "2 c #FAC854", 35 | "3 c #F4DBB3", 36 | "....................", 37 | "....................", 38 | ".......+@#$@%.......", 39 | ".....&*======-&.....", 40 | "....&;========;&....", 41 | "....>==========,....", 42 | "...'============)...", 43 | "...!============@...", 44 | "...~={]]]]]]]]^=$...", 45 | "...~=/]]]]]]]]{=$...", 46 | "...(============@...", 47 | "..._============:...", 48 | "....,==========-....", 49 | "....<;========;[....", 50 | ".....&>======}|.....", 51 | ".......1!~2(3.......", 52 | "....................", 53 | "...................."}; 54 | -------------------------------------------------------------------------------- /xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/left-active.png -------------------------------------------------------------------------------- /xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /xfwm4/maximize-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\maximize_active_xpm[] = { 3 | "20 18 39 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #B2DBB3", 7 | "@ c #79D37B", 8 | "# c #4AD250", 9 | "$ c #77D27A", 10 | "% c #B1DAB2", 11 | "& c #CDE3CD", 12 | "* c #4DD252", 13 | "= c #36E444", 14 | "- c #3BEA4B", 15 | "; c #CCE3CB", 16 | "> c #35D63F", 17 | ", c #33D53E", 18 | "' c #CBE2CB", 19 | ") c #4FD254", 20 | "! c #4AD14F", 21 | "~ c #B2DBB4", 22 | "{ c #36E545", 23 | "] c #B0DAB0", 24 | "^ c #7BD27C", 25 | "/ c #75D378", 26 | "( c #4FD454", 27 | "_ c #47D24D", 28 | ": c #4FD354", 29 | "< c #7AD27C", 30 | "[ c #76D378", 31 | "} c #B2DAB4", 32 | "| c #AFDAB1", 33 | "1 c #50D155", 34 | "2 c #CDE2CE", 35 | "3 c #33D53D", 36 | "4 c #CBE1CC", 37 | "5 c #CDE3CE", 38 | "6 c #4DD152", 39 | "7 c #CBE3CC", 40 | "8 c #B2DBB2", 41 | "9 c #78D27A", 42 | "0 c #B0DAB1", 43 | "....................", 44 | "....................", 45 | ".......+@##$%.......", 46 | ".....&*=----=*;.....", 47 | "....&>--------,'....", 48 | "....)----------!....", 49 | "...~=----------{]...", 50 | "...^------------/...", 51 | "...(------------_...", 52 | "...:------------_...", 53 | "...<------------[...", 54 | "...}=----------{|...", 55 | "....1----------*....", 56 | "....2>--------34....", 57 | ".....56=----=*7.....", 58 | ".......89##$0.......", 59 | "....................", 60 | "...................."}; 61 | -------------------------------------------------------------------------------- /xfwm4/maximize-inactive.xpm: -------------------------------------------------------------------------------- 1 | unfocused.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-prelight.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\maximize_prelight_xpm[] = { 3 | "20 18 41 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #B2DBB3", 7 | "@ c #79D37B", 8 | "# c #4AD250", 9 | "$ c #77D27A", 10 | "% c #B1DAB2", 11 | "& c #CDE3CD", 12 | "* c #4DD252", 13 | "= c #36E444", 14 | "- c #3BEA4B", 15 | "; c #CCE3CB", 16 | "> c #35D63F", 17 | ", c #26B32F", 18 | "' c #33D53E", 19 | ") c #CBE2CB", 20 | "! c #4FD254", 21 | "~ c #066D07", 22 | "{ c #4AD14F", 23 | "] c #B2DBB4", 24 | "^ c #36E545", 25 | "/ c #B0DAB0", 26 | "( c #7BD27C", 27 | "_ c #75D378", 28 | ": c #4FD454", 29 | "< c #47D24D", 30 | "[ c #4FD354", 31 | "} c #7AD27C", 32 | "| c #76D378", 33 | "1 c #B2DAB4", 34 | "2 c #AFDAB1", 35 | "3 c #50D155", 36 | "4 c #CDE2CE", 37 | "5 c #33D53D", 38 | "6 c #CBE1CC", 39 | "7 c #CDE3CE", 40 | "8 c #4DD152", 41 | "9 c #CBE3CC", 42 | "0 c #B2DBB2", 43 | "a c #78D27A", 44 | "b c #B0DAB1", 45 | "....................", 46 | "....................", 47 | ".......+@##$%.......", 48 | ".....&*=----=*;.....", 49 | "....&>---,,---')....", 50 | "....!----~~----{....", 51 | "...]=----~~----^/...", 52 | "...(-----~~-----_...", 53 | "...:-,~~~~~~~~,-<...", 54 | "...[-,~~~~~~~~,-<...", 55 | "...}-----~~-----|...", 56 | "...1=----~~----^2...", 57 | "....3----~~----*....", 58 | "....4>---,,---56....", 59 | ".....78=----=*9.....", 60 | ".......0a##$b.......", 61 | "....................", 62 | "...................."}; 63 | -------------------------------------------------------------------------------- /xfwm4/maximize-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\maximize_pressed_xpm[] = { 3 | "20 18 47 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #B2DAB3", 7 | "@ c #79CC7A", 8 | "# c #47C54B", 9 | "$ c #46C449", 10 | "% c #77CC79", 11 | "& c #B1DAB2", 12 | "* c #CEE4CD", 13 | "= c #4BC54E", 14 | "- c #19C222", 15 | "; c #4AC54C", 16 | "> c #CCE3CB", 17 | ", c #CDE4CD", 18 | "' c #2AC230", 19 | ") c #159D1A", 20 | "! c #27C22D", 21 | "~ c #CBE3CB", 22 | "{ c #12C11D", 23 | "] c #12C11E", 24 | "^ c #066D07", 25 | "/ c #13C11D", 26 | "( c #12C21D", 27 | "_ c #B3DBB4", 28 | ": c #13C11E", 29 | "< c #13C21D", 30 | "[ c #13C21E", 31 | "} c #B1DAB0", 32 | "| c #7ACC7A", 33 | "1 c #74CB76", 34 | "2 c #42C545", 35 | "3 c #79CC7B", 36 | "4 c #12C21E", 37 | "5 c #B2DAB4", 38 | "6 c #AFD9B1", 39 | "7 c #4DC550", 40 | "8 c #49C64C", 41 | "9 c #CDE3CE", 42 | "0 c #2AC330", 43 | "a c #CBE2CC", 44 | "b c #CDE4CE", 45 | "c c #49C54C", 46 | "d c #49C54D", 47 | "e c #45C449", 48 | "f c #43C347", 49 | "g c #76CC78", 50 | "h c #B0DAB0", 51 | "....................", 52 | "....................", 53 | ".......+@#$%&.......", 54 | ".....*=------;>.....", 55 | "....,'---))---!~....", 56 | "....=-{]{^^/((-$....", 57 | "..._--//:^^(<[--}...", 58 | "...|--({:^^[[[--1...", 59 | "...=-)^^^^^^^^)-2...", 60 | "...=-)^^^^^^^^)-2...", 61 | "...3--]{(^^([4--1...", 62 | "...5--(]/^^<][--6...", 63 | "....7-(:4^^[[[-8....", 64 | "....90---))---!a....", 65 | ".....bc------da.....", 66 | ".......&%efgh.......", 67 | "....................", 68 | "...................."}; 69 | -------------------------------------------------------------------------------- /xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/right-active.png -------------------------------------------------------------------------------- /xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/iOS/f0df37fcaf581dbed7635e769e769db7a4e996b0/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /xfwm4/themerc: -------------------------------------------------------------------------------- 1 | # macOS Sierra theme for Xfwm 2 | # Author: Christian Medel (Elbullazul) 3 | # Forked from the original B00merang Glass Theme for Xfce 4 | # January 3rd, 2017 5 | # License: GPL v3 6 | 7 | button_offset=2 8 | button_spacing=2 9 | full_width_title=true 10 | title_horizontal_offset=2 11 | title_vertical_offset_active=0 12 | title_vertical_offset_inactive=0 13 | title_shadow_active=false 14 | title_shadow_inactive=false 15 | 16 | # button_layout=CHM|O 17 | 18 | active_text_color=#4c4c4c 19 | inactive_text_color=#9f9f9f 20 | 21 | # placement_ratio=20 22 | shadow_delta_height=0 23 | shadow_delta_width=0 24 | shadow_delta_x=0 25 | shadow_delta_y=0 26 | 27 | #resize_opacity=100 28 | #move_opacity=100 29 | #popup_opacity=100 30 | show_frame_shadow=true 31 | show_popup_shadow=true 32 | -------------------------------------------------------------------------------- /xfwm4/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\title_1_active_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_1_inactive_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\title_1_active_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_2_inactive_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\title_1_active_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_3_inactive_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\title_1_active_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_4_inactive_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\title_1_active_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_5_inactive_xpm[] = { 3 | "4 25 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "....", 7 | "....", 8 | "....", 9 | "....", 10 | "....", 11 | "....", 12 | "....", 13 | "....", 14 | "....", 15 | "....", 16 | "....", 17 | "....", 18 | "....", 19 | "....", 20 | "....", 21 | "....", 22 | "....", 23 | "....", 24 | "....", 25 | "....", 26 | "....", 27 | "....", 28 | "....", 29 | "....", 30 | "...."}; 31 | -------------------------------------------------------------------------------- /xfwm4/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\top_left_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | " ....", 7 | " ......", 8 | " .......", 9 | " .......", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /xfwm4/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | " ....", 7 | " ......", 8 | " .......", 9 | " .......", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /xfwm4/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * C:\Users\crime\Shared\ios\xfwm4\top_right_active_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | ".... ", 7 | "...... ", 8 | "....... ", 9 | "....... ", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /xfwm4/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "8 29 2 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | ".... ", 7 | "...... ", 8 | "....... ", 9 | "....... ", 10 | "........", 11 | "........", 12 | "........", 13 | "........", 14 | "........", 15 | "........", 16 | "........", 17 | "........", 18 | "........", 19 | "........", 20 | "........", 21 | "........", 22 | "........", 23 | "........", 24 | "........", 25 | "........", 26 | "........", 27 | "........", 28 | "........", 29 | "........", 30 | "........", 31 | "........", 32 | "........", 33 | "........", 34 | "........"}; 35 | -------------------------------------------------------------------------------- /xfwm4/unfocused.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * unfocused_xpm[] = { 3 | "20 18 10 1", 4 | " c None", 5 | ". c #F5F5F5", 6 | "+ c #C3C3C3", 7 | "@ c #BEBEBE", 8 | "# c #C2C2C2", 9 | "$ c #BDBDBD", 10 | "% c #C5C5C5", 11 | "& c #C8C8C8", 12 | "* c #BFBFBF", 13 | "= c #C7C7C7", 14 | "....................", 15 | "....................", 16 | "........+@@#........", 17 | "......$%&&&&%*......", 18 | ".....*&&&&&&&=*.....", 19 | "....@&&&&&&&&&&@....", 20 | "....%&&&&&&&&&&%....", 21 | "...#&&&&&&&&&&&&+...", 22 | "...@&&&&&&&&&&&&@...", 23 | "...@&&&&&&&&&&&&@...", 24 | "...#&&&&&&&&&&&&+...", 25 | "....%&&&&&&&&&&%....", 26 | "....$&&&&&&&&&=@....", 27 | ".....*&&&&&&&=*.....", 28 | "......$%&&&&%*......", 29 | "........+@@#........", 30 | "....................", 31 | "...................."}; 32 | --------------------------------------------------------------------------------