├── LICENSE ├── README.md ├── cinnamon ├── add-workspace-hover.png ├── add-workspace.png ├── border-menu.png ├── border-menubar.png ├── border-panelbutton-active.png ├── border-panelbutton-hover.png ├── border-panelbutton.png ├── calendar-arrow-left.svg ├── calendar-arrow-right.svg ├── caption.png ├── checkbox-focus.png ├── checkbox-off-focus.png ├── checkbox-off.png ├── checkbox.png ├── cinnamon.css ├── close.png ├── close_hover.png ├── expo.png ├── menu.png ├── metadata.json ├── overview-hover.png ├── overview.png ├── radio-selected.png ├── radio-unselected.png ├── scroll-hhandle.svg ├── scroll-vhandle.svg ├── scrollthrough.png ├── thumbnail.png └── trash-icon.png ├── gnome-shell ├── _colors.scss ├── _common.scss ├── _drawing.scss ├── assets-render │ ├── assets │ │ ├── checkbox-checked.png │ │ ├── checkbox-checked@2.png │ │ ├── checkbox-unchecked.png │ │ ├── checkbox-unchecked@2.png │ │ ├── radio-selected.png │ │ ├── radio-selected@2.png │ │ ├── radio-unselected.png │ │ └── radio-unselected@2.png │ ├── checkbox-checked.svg │ ├── checkbox-unchecked.svg │ ├── radio-selected.svg │ ├── radio-unselected.svg │ └── render-assets.sh ├── assets │ ├── arrow-left.png │ ├── arrow-right.png │ ├── box-active.png │ ├── box-empty.png │ ├── box-inset.png │ ├── box.png │ ├── checkbox-checked.png │ ├── checkbox-unchecked.png │ ├── close-active.png │ ├── close-normal.png │ ├── entry.png │ ├── radio-checked.png │ ├── radio-unchecked.png │ ├── start.png │ ├── toggle-off.png │ └── toggle-on.png └── gnome-shell.css ├── gtk-2.0 ├── Others │ └── windows-bg.png ├── arrow │ ├── arrow-down-disable.png │ ├── arrow-down.png │ ├── arrow-left.png │ ├── arrow-right.png │ ├── arrow-up-disable.png │ ├── arrow-up.png │ └── spin_button_down_arrow.png ├── button.rc ├── button │ ├── button-ins.png │ ├── button-pressed.png │ ├── button-spin.png │ ├── button.png │ └── old │ │ ├── button-ins.png │ │ ├── button-pressed.png │ │ ├── button-spin.png │ │ └── button.png ├── c_box.rc ├── c_box │ ├── c_box-pressed.png │ └── c_box.png ├── entry.rc ├── entry │ ├── bak │ │ ├── entry-active.png │ │ └── entry.png │ ├── entry-active.png │ └── entry.png ├── gtkrc ├── menubar.rc ├── menubar │ ├── line-h.png │ ├── line-v.png │ ├── menu.png │ ├── menubar.png │ └── menuitem.png ├── notebook.rc ├── notebook │ ├── bottom-gap.png │ ├── left-gap.png │ ├── notebook.png │ ├── right-gap.png │ ├── tab-bottom-active.png │ ├── tab-bottom.png │ ├── tab-left-active.png │ ├── tab-left.png │ ├── tab-right-active.png │ ├── tab-right.png │ ├── tab-top-active.png │ ├── tab-top.png │ └── top-gap.png ├── null.png ├── progressbar.rc ├── progressbar │ ├── progressbar-horiz.png │ ├── progressbar-vert.png │ ├── trough-tree.png │ └── trough.png ├── radio.rc ├── radio │ ├── radio-pressed.png │ └── radio.png ├── scale.rc ├── scale │ ├── slider-horiz.png │ ├── slider-vert.png │ ├── trough-horiz-mid.png │ ├── trough-horiz.png │ ├── trough-vert-mid.png │ └── trough-vert.png ├── scrollbar.rc ├── scrollbar │ ├── arrow_down.png │ ├── arrow_down_clicked.png │ ├── arrow_left.png │ ├── arrow_left_clicked.png │ ├── arrow_right.png │ ├── arrow_right_clicked.png │ ├── arrow_up.png │ ├── arrow_up_clicked.png │ ├── scrollbar_horizontal.png │ ├── scrollbar_vertical.png │ ├── trough-h.png │ └── trough-v.png ├── spin.rc ├── statusbar.rc ├── statusbar │ └── resizer.png ├── toolbar.rc └── toolbar │ ├── button-ins.png │ ├── button-pressed.png │ └── button.png ├── gtk-3.0 ├── assets │ ├── arrow-down.png │ ├── arrow-left.png │ ├── arrow-right.png │ ├── arrow-up.png │ ├── arrow.png │ ├── 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.png │ ├── maximize.png │ ├── minimize.png │ ├── 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 │ ├── restore.png │ ├── slider-horiz-insensitive.png │ ├── slider-horiz-top-insensitive.png │ ├── slider-horiz-top.png │ ├── slider-horiz.png │ ├── slider-vert-insensitive.png │ ├── slider-vert-left-insensitive.png │ ├── slider-vert-left.png │ └── slider-vert.png ├── gtk.css └── thumbnail.png ├── gtk-4.0 ├── assets │ ├── arrow-down.png │ ├── arrow-left.png │ ├── arrow-right.png │ ├── arrow-up.png │ ├── arrow.png │ ├── 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.png │ ├── maximize.png │ ├── minimize.png │ ├── 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 │ ├── restore.png │ ├── slider-horiz-insensitive.png │ ├── slider-horiz-top-insensitive.png │ ├── slider-horiz-top.png │ ├── slider-horiz.png │ ├── slider-vert-insensitive.png │ ├── slider-vert-left-insensitive.png │ ├── slider-vert-left.png │ └── slider-vert.png └── gtk.css ├── index.theme ├── metacity-1 ├── close_normal.png ├── close_normal_small.png ├── close_pressed.png ├── close_pressed_small.png ├── maximize_normal.png ├── maximize_pressed.png ├── metacity-theme-1.xml ├── metacity-theme-3.xml ├── minimize_normal.png ├── minimize_pressed.png ├── restore_normal.png ├── restore_pressed.png └── thumbnail.png └── xfwm4 ├── README.md ├── bottom-active.xpm ├── bottom-inactive.xpm ├── bottom-left-active.xpm ├── bottom-left-inactive.xpm ├── bottom-right-active.xpm ├── bottom-right-inactive.xpm ├── close-active.xpm ├── close-inactive.xpm ├── close-pressed.xpm ├── hide-active.xpm ├── hide-inactive.xpm ├── hide-pressed.xpm ├── left-active.xpm ├── left-inactive.xpm ├── maximize-active.xpm ├── maximize-inactive.xpm ├── maximize-pressed.xpm ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.xpm ├── maximize-toggled-pressed.xpm ├── menu-active.xpm ├── menu-inactive.xpm ├── menu-pressed.xpm ├── right-active.xpm ├── right-inactive.xpm ├── shade-active.xpm ├── shade-inactive.xpm ├── shade-pressed.xpm ├── stick-active.xpm ├── stick-inactive.xpm ├── stick-pressed.xpm ├── themerc ├── title-1-active.xpm ├── title-1-inactive.xpm ├── title-2-active.xpm ├── title-2-inactive.xpm ├── title-3-active.xpm ├── title-3-inactive.xpm ├── title-4-active.xpm ├── title-4-inactive.xpm ├── title-5-active.xpm ├── title-5-inactive.xpm ├── top-left-active.xpm ├── top-left-inactive.xpm ├── top-right-active.xpm └── top-right-inactive.xpm /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 | # Windows Classic 4 | GTK theme based on the appearance of Windows XP Classic (aka Windows Classic) 5 | 6 | ### Preview 7 | ![windows-classic](https://github.com/B00merang-Project/gallery/raw/master/Windows%20Server%202003%20(1).png) 8 | 9 | ### Supported platforms 10 | - Any GTK-based desktop 11 | - Cinnamon 12 | - Gnome 13 | - MATE 14 | - Xfce 15 | 16 | ### Manual installation 17 | Go to releases, download the latest `.zip` file and extract it to the themes directory i.e. `/home/USERNAME/.themes` 18 | -------------------------------------------------------------------------------- /cinnamon/add-workspace-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/add-workspace-hover.png -------------------------------------------------------------------------------- /cinnamon/add-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/add-workspace.png -------------------------------------------------------------------------------- /cinnamon/border-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/border-menu.png -------------------------------------------------------------------------------- /cinnamon/border-menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/border-menubar.png -------------------------------------------------------------------------------- /cinnamon/border-panelbutton-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/border-panelbutton-active.png -------------------------------------------------------------------------------- /cinnamon/border-panelbutton-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/border-panelbutton-hover.png -------------------------------------------------------------------------------- /cinnamon/border-panelbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/border-panelbutton.png -------------------------------------------------------------------------------- /cinnamon/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 40 | 47 | 48 | 50 | 51 | 53 | image/svg+xml 54 | 56 | 57 | 58 | 59 | 60 | 65 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /cinnamon/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 40 | 47 | 48 | 50 | 51 | 53 | image/svg+xml 54 | 56 | 57 | 58 | 59 | 60 | 65 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /cinnamon/caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/caption.png -------------------------------------------------------------------------------- /cinnamon/checkbox-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/checkbox-focus.png -------------------------------------------------------------------------------- /cinnamon/checkbox-off-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/checkbox-off-focus.png -------------------------------------------------------------------------------- /cinnamon/checkbox-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/checkbox-off.png -------------------------------------------------------------------------------- /cinnamon/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/checkbox.png -------------------------------------------------------------------------------- /cinnamon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/close.png -------------------------------------------------------------------------------- /cinnamon/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/close_hover.png -------------------------------------------------------------------------------- /cinnamon/expo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/expo.png -------------------------------------------------------------------------------- /cinnamon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/menu.png -------------------------------------------------------------------------------- /cinnamon/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "last-edited": "1448324177", 3 | "uuid": "518" 4 | } -------------------------------------------------------------------------------- /cinnamon/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/overview-hover.png -------------------------------------------------------------------------------- /cinnamon/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/overview.png -------------------------------------------------------------------------------- /cinnamon/radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/radio-selected.png -------------------------------------------------------------------------------- /cinnamon/radio-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/radio-unselected.png -------------------------------------------------------------------------------- /cinnamon/scroll-hhandle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | image/svg+xml 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /cinnamon/scroll-vhandle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | image/svg+xml 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /cinnamon/scrollthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/scrollthrough.png -------------------------------------------------------------------------------- /cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /cinnamon/trash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/cinnamon/trash-icon.png -------------------------------------------------------------------------------- /gnome-shell/_colors.scss: -------------------------------------------------------------------------------- 1 | // Vars missing from original but present upstream 2 | $font-size : 16; 3 | 4 | // When color definition differs for dark and light variant, 5 | // it gets @if ed depending on $variant 6 | 7 | $base_color: #ffffff; 8 | $bg_color: #d3d0c7; 9 | $fg_color: #000000; 10 | 11 | $tooltip_bg_color: #ffffe1; 12 | 13 | $dark_fg_color: #ffffff; 14 | 15 | $selected_fg_color: #ffffff; 16 | $selected_bg_color: #000080; 17 | $selected_borders_color: darken($selected_bg_color, 20%); 18 | $borders_color: #000000; 19 | $borders_edge: #808080; 20 | $link_color: #000080; 21 | $link_visited_color: darken($link_color,10%); 22 | $top_hilight: $borders_edge; 23 | 24 | $panel_bg_color : #d3d0c7; 25 | $panel_solid_bg_color : #d3d0c7; 26 | $panel_fg_color : #000000; 27 | $dash_bg_color : #d3d0c7; 28 | $dash_fg_color : #000000; 29 | 30 | $warning_color: #FF8300; 31 | $error_color: #FF0000; 32 | $success_color: darken(#39e4a3,10%); 33 | $destructive_color: darken(#CC0000,10%); 34 | 35 | $osd_fg_color: #000000; 36 | $osd_bg_color: #d3d0c7; 37 | $osd_borders_color: #000000; 38 | $osd_outer_borders_color: #808080; 39 | 40 | $tooltip_borders_color: $osd_outer_borders_color; 41 | 42 | //insensitive state derived colors 43 | $insensitive_fg_color: mix($fg_color, $bg_color, 50%); 44 | $insensitive_bg_color: mix($bg_color, $base_color, 60%); 45 | $insensitive_borders_color: $borders_color; 46 | 47 | //colors for the backdrop state, derived from the main colors. 48 | $backdrop_base_color: lighten($base_color,1%); 49 | $backdrop_bg_color: $bg_color; 50 | $backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 80%); 51 | $backdrop_insensitive_color: lighten($backdrop_bg_color,15%); 52 | $backdrop_borders_color: mix($borders_color, $bg_color, 90%); 53 | $backdrop_dark_fill: mix($backdrop_borders_color,$backdrop_bg_color, 35%); 54 | -------------------------------------------------------------------------------- /gnome-shell/_drawing.scss: -------------------------------------------------------------------------------- 1 | // Drawing mixins 2 | 3 | // generic drawing of more complex things 4 | 5 | @function _widget_edge($c:$borders_edge) { 6 | // outer highlight "used" on most widgets 7 | @return 0 1px $c; 8 | } 9 | 10 | // provide font size in rem, with px fallback 11 | @mixin fontsize($size: 24, $base: 16) { 12 | font-size: round($size) + pt; 13 | //font-size: ($size / $base) * 1rem; 14 | } 15 | 16 | @mixin _shadows($shadow1, $shadow2:none, $shadow3:none, $shadow4:none) { 17 | // 18 | // Helper function to stack up to 4 box-shadows; 19 | // 20 | @if $shadow4!=none { box-shadow: $shadow1, $shadow2, $shadow3, $shadow4; } 21 | @else if $shadow3!=none { box-shadow: $shadow1, $shadow2, $shadow3; } 22 | @else if $shadow2!=none { box-shadow: $shadow1, $shadow2; } 23 | @else { box-shadow: $shadow1; } 24 | } 25 | 26 | // entries 27 | 28 | @mixin entry($t, $fc:$selected_bg_color, $edge: $borders_edge) { 29 | // 30 | // Entries drawing function 31 | // 32 | // $t: entry type 33 | // $fc: focus color 34 | // $edge: set to none to not draw the bottom edge or specify a color to not 35 | // use the default one 36 | // 37 | // possible $t values: 38 | // normal, focus, insensitive 39 | // 40 | 41 | @if $t==normal { 42 | background-color: $base_color; 43 | box-shadow: none; 44 | border-image: url('assets/box-inset.png') 3 3 3 3; 45 | 46 | } 47 | @if $t==focus { 48 | box-shadow: none; 49 | border-color: if($fc==$selected_bg_color, 50 | $selected_borders_color, 51 | darken($fc,35%)); 52 | } 53 | @if $t==hover { } 54 | @if $t==insensitive { 55 | color: $insensitive_fg_color; 56 | border-color: $insensitive_bg_color; 57 | box-shadow: none; 58 | } 59 | } 60 | 61 | // buttons 62 | 63 | @function _border_color ($c) { @return darken($c,25%); } // colored buttons want 64 | // the border form the 65 | // base color 66 | 67 | @function _text_shadow_color ($tc:$fg_color, $bg:$bg_color) { 68 | // 69 | // calculate the color of text shadows 70 | // 71 | // $tc is the text color 72 | // $bg is the background color 73 | // 74 | $_lbg: lightness($bg)/100%; 75 | @if lightness($tc)<50% { @return transparentize(white,1-$_lbg/($_lbg*1.3)); } 76 | @else { @return transparentize(black,$_lbg*0.8); } 77 | } 78 | 79 | @function _button_hilight_color($c) { 80 | // 81 | // calculate the right top hilight color for buttons 82 | // 83 | // $c: base color; 84 | // 85 | @if lightness($c)>90% { @return white; } 86 | @else if lightness($c)>80% { @return transparentize(white, 0.3); } 87 | @else if lightness($c)>50% { @return transparentize(white, 0.5); } 88 | @else if lightness($c)>40% { @return transparentize(white, 0.7); } 89 | @else { @return transparentize(white, 0.9); } 90 | } 91 | 92 | @mixin _button_text_shadow ($tc:$fg_color, $bg:$bg_color) { 93 | // 94 | // helper function for the text emboss effect 95 | // 96 | // $tc is the optional text color, not the shadow color 97 | // 98 | // TODO: this functions needs a way to deal with special cases 99 | // 100 | 101 | $_shadow: _text_shadow_color($tc, $bg); 102 | 103 | text-shadow: none; 104 | icon-shadow: none; 105 | } 106 | 107 | @mixin button($t, $c:$osd_bg_color, $tc:$fg_color, $edge: $borders_edge) { 108 | // 109 | // Button drawing function 110 | // 111 | // $t: button type, 112 | // $c: base button color for colored* types 113 | // $tc: optional text color for colored* types 114 | // $edge: set to none to not draw the bottom edge or specify a color to not 115 | // use the default one 116 | // 117 | // possible $t values: 118 | // normal, hover, active, insensitive, insensitive-active, 119 | // backdrop, backdrop-active, backdrop-insensitive, backdrop-insensitive-active, 120 | // osd, osd-hover, osd-active, osd-insensitive, osd-backdrop, undecorated 121 | // 122 | $_hilight_color: _button_hilight_color($c); 123 | $_button_edge: if($edge == none, none, _widget_edge($edge)); 124 | $_blank_edge: if($edge == none, none, _widget_edge(transparentize($edge,1))); 125 | 126 | @if $t==normal { 127 | $_bg: if($c!=$osd_bg_color, transparentize($c, 0.5), 128 | $osd_bg_color); 129 | 130 | border-radius: 0; 131 | border: none; 132 | color: $osd_fg_color; 133 | background-color: transparent; 134 | border-image: url('assets/box.png') 3 3 3 3; 135 | text-shadow: none; 136 | icon-shadow: none; 137 | } 138 | @if $t==focus { 139 | $_bg: if($c!=$osd_bg_color, transparentize($c, 0.3), 140 | lighten($osd_bg_color,3%)); 141 | 142 | color: $fg_color; 143 | text-shadow: none; 144 | icon-shadow: none; 145 | border: none; 146 | border-image: url('assets/box.png') 3 3 3 3; 147 | box-shadow: 0 0 0 1px black; 148 | } 149 | @else if $t==hover { 150 | $_bg: if($c!=$osd_bg_color, transparentize($c, 0.3), 151 | lighten($osd_bg_color,3%)); 152 | 153 | border: none; 154 | background-color: transparent; 155 | text-shadow: none; 156 | icon-shadow: none; 157 | border-image: url('assets/box.png') 3 3 3 3; 158 | } 159 | @else if $t==active { 160 | $_bg: if($c!=$bg_color, $c, $osd_borders_color); 161 | 162 | border-color: $osd_borders_color; 163 | border: none; 164 | background-color: transparent; 165 | text-shadow: none; 166 | icon-shadow: none; 167 | border-image: url('assets/box-active.png') 3 3 3 3; 168 | } 169 | @else if $t==insensitive { 170 | $_bg: transparentize(mix($insensitive_fg_color,$osd_bg_color,20%),0.3); 171 | 172 | color: $insensitive_fg_color; 173 | border: none; 174 | border-color: $osd_borders_color; 175 | background-color: transparent; 176 | box-shadow: none; 177 | text-shadow: none; 178 | icon-shadow: none; 179 | border-image: url('assets/box.png') 3 3 3 3; 180 | } 181 | @else if $t==undecorated { 182 | border-color: transparent; 183 | background-color: transparent; 184 | background-image: none; 185 | text-shadow: none; 186 | icon-shadow: none; 187 | border-image: none; 188 | } 189 | } 190 | 191 | -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/checkbox-checked@2.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/radio-selected.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/radio-selected@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/radio-selected@2.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/radio-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/radio-unselected.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/assets/radio-unselected@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets-render/assets/radio-unselected@2.png -------------------------------------------------------------------------------- /gnome-shell/assets-render/checkbox-checked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 37 | 41 | 45 | 49 | 53 | 54 | 63 | 64 | 88 | 95 | 101 | 102 | -------------------------------------------------------------------------------- /gnome-shell/assets-render/checkbox-unchecked.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 37 | 41 | 45 | 49 | 53 | 54 | 63 | 64 | 88 | 95 | 101 | 102 | -------------------------------------------------------------------------------- /gnome-shell/assets-render/radio-selected.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 42 | 44 | 45 | 47 | image/svg+xml 48 | 50 | 51 | 52 | 53 | 55 | 65 | 68 | 72 | 76 | 80 | 84 | 85 | 86 | 94 | 100 | 106 | 107 | -------------------------------------------------------------------------------- /gnome-shell/assets-render/radio-unselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 42 | 44 | 45 | 47 | image/svg+xml 48 | 50 | 51 | 52 | 53 | 54 | 56 | 66 | 69 | 73 | 77 | 81 | 85 | 86 | 87 | 95 | 101 | 102 | -------------------------------------------------------------------------------- /gnome-shell/assets-render/render-assets.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | INKSCAPE="/usr/bin/inkscape" 4 | OPTIPNG="/usr/bin/optipng" 5 | ASSETS_DIR="assets" 6 | 7 | for i in *.svg 8 | do 9 | extension="${i##*.}" 10 | name=${i%".$extension"} 11 | 12 | if [ -f $ASSETS_DIR/$name.png ]; then 13 | echo $ASSETS_DIR/$name.png exists. 14 | else 15 | echo 16 | echo Rendering $ASSETS_DIR/$name.png 17 | 18 | $INKSCAPE --export-png=$ASSETS_DIR/$name.png $i >/dev/null \ 19 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$name.png 20 | fi 21 | 22 | if [ -f $ASSETS_DIR/$name@2.png ]; then 23 | echo $ASSETS_DIR/$name@2.png exists. 24 | else 25 | echo 26 | echo Rendering $ASSETS_DIR/$name.png 27 | 28 | $INKSCAPE --export-dpi=180 \ 29 | --export-png=$ASSETS_DIR/$name@2.png $i >/dev/null \ 30 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$name@2.png 31 | fi 32 | done 33 | -------------------------------------------------------------------------------- /gnome-shell/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/arrow-left.png -------------------------------------------------------------------------------- /gnome-shell/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/arrow-right.png -------------------------------------------------------------------------------- /gnome-shell/assets/box-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/box-active.png -------------------------------------------------------------------------------- /gnome-shell/assets/box-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/box-empty.png -------------------------------------------------------------------------------- /gnome-shell/assets/box-inset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/box-inset.png -------------------------------------------------------------------------------- /gnome-shell/assets/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/box.png -------------------------------------------------------------------------------- /gnome-shell/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gnome-shell/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gnome-shell/assets/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/close-active.png -------------------------------------------------------------------------------- /gnome-shell/assets/close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/close-normal.png -------------------------------------------------------------------------------- /gnome-shell/assets/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/entry.png -------------------------------------------------------------------------------- /gnome-shell/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/radio-checked.png -------------------------------------------------------------------------------- /gnome-shell/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gnome-shell/assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/start.png -------------------------------------------------------------------------------- /gnome-shell/assets/toggle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/toggle-off.png -------------------------------------------------------------------------------- /gnome-shell/assets/toggle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gnome-shell/assets/toggle-on.png -------------------------------------------------------------------------------- /gtk-2.0/Others/windows-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/Others/windows-bg.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-down-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-down-disable.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-down.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-left.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-right.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-up-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-up-disable.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/arrow-up.png -------------------------------------------------------------------------------- /gtk-2.0/arrow/spin_button_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/arrow/spin_button_down_arrow.png -------------------------------------------------------------------------------- /gtk-2.0/button.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Button 3 | ######################################################################## 4 | 5 | style "button" 6 | { 7 | 8 | engine "pixmap" 9 | { 10 | ### Button ### 11 | 12 | ## Normal 13 | image 14 | { 15 | function = BOX 16 | state = NORMAL 17 | file = "button/button.png" 18 | border = {5, 5, 5, 5} 19 | stretch = TRUE 20 | 21 | } 22 | ## Prelight 23 | image 24 | { 25 | function = BOX 26 | state = PRELIGHT 27 | file = "button/button.png" 28 | border = {5, 5, 5, 5} 29 | stretch = TRUE 30 | } 31 | 32 | ## Insensitive 33 | image 34 | { 35 | function = BOX 36 | state = INSENSITIVE 37 | file = "button/button-ins.png" 38 | border = {5, 5, 5, 5} 39 | stretch = TRUE 40 | } 41 | 42 | ## Active 43 | image 44 | { 45 | function = BOX 46 | state = ACTIVE 47 | file = "button/button-pressed.png" 48 | border = {5, 5, 5, 5} 49 | stretch = TRUE 50 | } 51 | 52 | ### Focus ### 53 | image 54 | { 55 | function = FOCUS 56 | file = "null.png" 57 | } 58 | } 59 | } 60 | 61 | class "GtkButton*" style "button" 62 | 63 | -------------------------------------------------------------------------------- /gtk-2.0/button/button-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/button-ins.png -------------------------------------------------------------------------------- /gtk-2.0/button/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/button-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/button/button-spin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/button-spin.png -------------------------------------------------------------------------------- /gtk-2.0/button/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/button.png -------------------------------------------------------------------------------- /gtk-2.0/button/old/button-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/old/button-ins.png -------------------------------------------------------------------------------- /gtk-2.0/button/old/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/old/button-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/button/old/button-spin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/old/button-spin.png -------------------------------------------------------------------------------- /gtk-2.0/button/old/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/button/old/button.png -------------------------------------------------------------------------------- /gtk-2.0/c_box.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Check boxes 3 | ######################################################################## 4 | 5 | style "check_box" 6 | { 7 | ### Check box ### 8 | 9 | engine "pixmap" 10 | { 11 | image 12 | { 13 | function = CHECK 14 | shadow = OUT 15 | overlay_file = "c_box/c_box.png" 16 | overlay_stretch = FALSE 17 | } 18 | 19 | image 20 | { 21 | function = CHECK 22 | shadow = IN 23 | overlay_file = "c_box/c_box-pressed.png" 24 | overlay_stretch = FALSE 25 | } 26 | 27 | image 28 | { 29 | function = OPTION 30 | shadow = OUT 31 | overlay_file = "c_box/c_box.png" 32 | overlay_stretch = FALSE 33 | } 34 | 35 | image 36 | { 37 | function = OPTION 38 | shadow = IN 39 | overlay_file = "c_box/c_box-pressed.png" 40 | overlay_stretch = FALSE 41 | } 42 | } 43 | } 44 | 45 | class "GtkCheckButton*" style "check_box" 46 | class "GtkCheckMenuItem*" style "check_box" 47 | class "GtkTreeView*" style "check_box" 48 | -------------------------------------------------------------------------------- /gtk-2.0/c_box/c_box-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/c_box/c_box-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/c_box/c_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/c_box/c_box.png -------------------------------------------------------------------------------- /gtk-2.0/entry.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Entry 3 | ######################################################################## 4 | 5 | style "entry" 6 | { 7 | GtkWidget::interior_focus = 0 8 | GtkEntry::inner-border = {2, 2, 2, 2} 9 | 10 | engine "pixmap" 11 | { 12 | ### Entry ### 13 | image 14 | { 15 | function = SHADOW 16 | detail = "entry" 17 | file = "entry/entry.png" 18 | border = {2, 2, 2, 2} 19 | stretch = TRUE 20 | } 21 | 22 | ### Focus ### 23 | image 24 | { 25 | function = FOCUS 26 | detail = "entry" 27 | file = "entry/entry-active.png" 28 | border = {2, 2, 2, 2} 29 | stretch = TRUE 30 | } 31 | } 32 | } 33 | 34 | class "GtkEntry*" style "entry" 35 | 36 | -------------------------------------------------------------------------------- /gtk-2.0/entry/bak/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/entry/bak/entry-active.png -------------------------------------------------------------------------------- /gtk-2.0/entry/bak/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/entry/bak/entry.png -------------------------------------------------------------------------------- /gtk-2.0/entry/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/entry/entry-active.png -------------------------------------------------------------------------------- /gtk-2.0/entry/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/entry/entry.png -------------------------------------------------------------------------------- /gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Windows 95 3 | # By Christian Medel (Elbullazul) - http://b00merang.weebly.com 4 | # Original theme based on Andrey Tverdov 2010's QNX theme. 5 | # Spinoff from Matthew Matt's Win 3.x Theme [http://gnome-look.org/content/show.php/Win3x?content=169112] 6 | # GPL2 7 | ######################################################################## 8 | 9 | gtk_color_scheme = 10 | "fg_color:#000\nbg_color:#d3d0c7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#000082\nselected_fg_color:#fff\ntooltip_bg_color:#FFFFBF\ntooltip_fg_color:#000\ntitlebar_bg_color:#000082\ntitlebar_ibg_color:#848484" 11 | gtk-icon-sizes ="gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-button=16,16" 12 | 13 | include "scrollbar.rc" 14 | include "scale.rc" 15 | include "notebook.rc" 16 | include "button.rc" 17 | include "radio.rc" 18 | include "c_box.rc" 19 | include "progressbar.rc" 20 | include "entry.rc" 21 | include "menubar.rc" 22 | include "spin.rc" 23 | include "toolbar.rc" 24 | 25 | style "default" 26 | { 27 | GtkToolbar::shadow_type = GTK_SHADOW_OUT 28 | GtkPaned::handle-size = 0 29 | GtkTreeView::odd_row_color = @base_color 30 | GtkTreeView::even_row_color = @base_color 31 | 32 | fg[ACTIVE] = @fg_color 33 | fg[INSENSITIVE] = @fg_color 34 | fg[NORMAL] = @fg_color 35 | fg[PRELIGHT] = @fg_color 36 | fg[SELECTED] = @selected_fg_color 37 | 38 | bg[ACTIVE] = @bg_color 39 | bg[INSENSITIVE] = @bg_color 40 | bg[NORMAL] = @bg_color 41 | bg[PRELIGHT] = @bg_color 42 | bg[SELECTED] = @selected_bg_color 43 | 44 | base[ACTIVE] = @selected_bg_color 45 | base[INSENSITIVE] = @selected_fg_color 46 | base[NORMAL] = @base_color 47 | base[PRELIGHT] = @selected_bg_color 48 | base[SELECTED] = @selected_bg_color 49 | 50 | text[ACTIVE] = shade (0.9,@selected_fg_color) 51 | text[INSENSITIVE] = shade (0.7,@bg_color) 52 | text[NORMAL] = @text_color 53 | text[PRELIGHT] = @selected_fg_color 54 | text[SELECTED] = @selected_fg_color 55 | 56 | engine "redmond95" 57 | { 58 | } 59 | } 60 | class "GtkWidget" style "default" 61 | 62 | style "tooltips" = "default" 63 | { 64 | bg[NORMAL] = @tooltip_bg_color 65 | fg[NORMAL] = "#000000" 66 | } 67 | 68 | 69 | widget "gtk-tooltips*" style "tooltips" 70 | 71 | style "color-fix" 72 | { 73 | # GtkFrame::shadow-type = GTK_SHADOW_NONE 74 | GtkPaned ::handle-size = 0 75 | GtkTreeView::expander-size = 0 76 | GtkTreeView::vertical-separator = 0 77 | GtkToolbar::internal-padding = 0 78 | 79 | bg[NORMAL] = @bg_color 80 | fg[ACTIVE] = "#000" 81 | fg[INSENSITIVE] = "#000" 82 | fg[NORMAL] = "#000" 83 | fg[PRELIGHT] = "#fff" 84 | fg[SELECTED] = "#fff" 85 | 86 | text[ACTIVE] = "#000" 87 | text[INSENSITIVE] = shade (0.7,@bg_color) 88 | text[NORMAL] = "#000" 89 | text[PRELIGHT] = "#000" 90 | text[SELECTED] = "#000" 91 | } 92 | 93 | #class "*" style "color-fix" 94 | #class "*.gtk-combobox-popup-menu.*" style "color-fix" 95 | class "GtkMenuBar*" style "color-fix" 96 | 97 | #class "GtkMenuItem*" style "color-fix" 98 | class "GtkImageMenuItem*" style "color-fix" 99 | class "GtkTearoffMenuItem*" style "color-fix" 100 | class "GtkItem*" style "color-fix" 101 | 102 | widget_class "**" style "color-fix" 103 | widget_class "**" style "color-fix" 104 | widget_class "**" style "color-fix" 105 | widget_class "*MenuBar.*" style "color-fix" 106 | widget_class "**" style "color-fix" 107 | 108 | style "color-fix-combo" 109 | { 110 | fg[ACTIVE] = "#000" 111 | fg[INSENSITIVE] = "#000" 112 | fg[NORMAL] = "#000" 113 | fg[PRELIGHT] = "#000" 114 | fg[SELECTED] = "#000" 115 | 116 | text[ACTIVE] = "#000" 117 | text[INSENSITIVE] = shade (0.7,@bg_color) 118 | text[NORMAL] = "#000" 119 | text[PRELIGHT] = "#000" 120 | text[SELECTED] = "#000" 121 | } 122 | 123 | style "scrolledwindow-style" { 124 | bg[NORMAL] = "#c0c0c0" 125 | GtkScrolledWindow::scrollbar-spacing = 0 126 | GtkScrolledWindow::scrollbars-within-bevel = 1 127 | 128 | } 129 | 130 | class "GtkScrolledWindow" style "scrolledwindow-style" 131 | widget_class "*.." style "color-fix-combo" 132 | 133 | style "chrome-gtk-frame" { 134 | ChromeGtkFrame::frame-color = @titlebar_bg_color 135 | ChromeGtkFrame::inactive-frame-color = @titlebar_ibg_color 136 | 137 | ChromeGtkFrame::frame-gradient-size = 0 138 | ChromeGtkFrame::frame-gradient-color = @titlebar_ibg_color 139 | 140 | ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color 141 | ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_ibg_color 142 | 143 | ChromeGtkFrame::incognito-frame-gradient-size = 0 144 | ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color 145 | 146 | ChromeGtkFrame::scrollbar-trough-color = @bg_color 147 | ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color) 148 | ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color) 149 | } 150 | 151 | class "ChromeGtkFrame" style "chrome-gtk-frame" 152 | -------------------------------------------------------------------------------- /gtk-2.0/menubar.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Menubar 3 | ######################################################################## 4 | 5 | style "menubar" 6 | { 7 | ### Menubar ### 8 | engine "pixmap" 9 | { 10 | image 11 | { 12 | function = BOX 13 | file = "menubar/menubar.png" 14 | border = {3, 3, 3, 3} 15 | stretch = TRUE 16 | } 17 | } 18 | } 19 | 20 | style "menu" 21 | { 22 | ### Menu ### 23 | engine "pixmap" 24 | { 25 | image 26 | { 27 | function = BOX 28 | file = "menubar/menu.png" 29 | border = {3, 3, 3, 3} 30 | stretch = TRUE 31 | } 32 | } 33 | } 34 | 35 | class "GtkMenuBar*" style "menubar" 36 | class "GtkMenu" style "menu" 37 | 38 | style "menuitem" 39 | { 40 | ### Menu item ### 41 | 42 | engine "pixmap" 43 | { 44 | image 45 | { 46 | function = BOX 47 | file = "menubar/menuitem.png" 48 | border = {3, 3, 3, 3} 49 | stretch = TRUE 50 | } 51 | 52 | ### H line ### 53 | image 54 | { 55 | function = HLINE 56 | file = "menubar/line-h.png" 57 | border = {0, 0, 0, 0} 58 | stretch = TRUE 59 | } 60 | 61 | ### V line ### 62 | image 63 | { 64 | function = VLINE 65 | file = "menubar/line-v.png" 66 | border = {0, 0, 0, 0} 67 | stretch = TRUE 68 | } 69 | 70 | ### Arrow UP ### 71 | image 72 | { 73 | function = ARROW 74 | overlay_file = "/arrow/arrow-up.png" 75 | overlay_border = {3,3,3,3} 76 | overlay_stretch = FALSE 77 | arrow_direction = UP 78 | } 79 | 80 | ### Arrow DOWN ### 81 | image 82 | { 83 | function = ARROW 84 | overlay_file = "/arrow/arrow-down.png" 85 | overlay_border = {3,3,3,3} 86 | overlay_stretch = FALSE 87 | arrow_direction = DOWN 88 | } 89 | 90 | ### Arrow LEFT ### 91 | image 92 | { 93 | function = ARROW 94 | overlay_file = "/arrow/arrow-left.png" 95 | overlay_border = {3,3,3,3} 96 | overlay_stretch = FALSE 97 | arrow_direction = LEFT 98 | } 99 | 100 | ### Arrow RIGHT ### 101 | image 102 | { 103 | function = ARROW 104 | overlay_file = "/arrow/arrow-right.png" 105 | overlay_border = {3,3,3,3} 106 | overlay_stretch = FALSE 107 | arrow_direction = RIGHT 108 | } 109 | } 110 | } 111 | 112 | class "GtkMenuItem*" style "menuitem" 113 | class "GtkImageMenuItem*" style "menuitem" 114 | class "GtkTearoffMenuItem*" style "menuitem" 115 | class "GtkItem*" style "menuitem" 116 | 117 | -------------------------------------------------------------------------------- /gtk-2.0/menubar/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/menubar/line-h.png -------------------------------------------------------------------------------- /gtk-2.0/menubar/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/menubar/line-v.png -------------------------------------------------------------------------------- /gtk-2.0/menubar/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/menubar/menu.png -------------------------------------------------------------------------------- /gtk-2.0/menubar/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/menubar/menubar.png -------------------------------------------------------------------------------- /gtk-2.0/menubar/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/menubar/menuitem.png -------------------------------------------------------------------------------- /gtk-2.0/notebook.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Notebook 3 | ######################################################################## 4 | 5 | style "notebook" 6 | { 7 | # GtkWidget::focus-line-width=0 8 | # Gtk*::shadow-type = GTK_SHADOW_NONE 9 | bg[NORMAL] = "#000" 10 | 11 | engine "pixmap" 12 | { 13 | ### Notebook ### 14 | image 15 | { 16 | function = BOX 17 | file = "notebook/notebook.png" 18 | border = {3, 3, 3, 3} 19 | stretch = TRUE 20 | } 21 | 22 | ### Tab TOP ### 23 | 24 | ## Normal 25 | image 26 | { 27 | function = EXTENSION 28 | state = ACTIVE 29 | file = "notebook/tab-top.png" 30 | border = {8, 8, 8, 8} 31 | stretch = TRUE 32 | gap_side = BOTTOM 33 | } 34 | 35 | ## Active 36 | image 37 | { 38 | function = EXTENSION 39 | file = "notebook/tab-top-active.png" 40 | border = {8, 8, 8, 8} 41 | stretch = TRUE 42 | gap_side = BOTTOM 43 | } 44 | 45 | 46 | ### Tab BOTTOM ### 47 | 48 | ## Normal 49 | image 50 | { 51 | function = EXTENSION 52 | state = ACTIVE 53 | file = "notebook/tab-bottom.png" 54 | border = {8, 8, 8, 8} 55 | stretch = TRUE 56 | gap_side = TOP 57 | } 58 | 59 | ## Active 60 | image 61 | { 62 | function = EXTENSION 63 | file = "notebook/tab-bottom-active.png" 64 | border = {8, 8, 8, 8} 65 | stretch = TRUE 66 | gap_side = TOP 67 | } 68 | 69 | ### Tab LEFT ### 70 | 71 | ## Normal 72 | image 73 | { 74 | function = EXTENSION 75 | state = ACTIVE 76 | file = "notebook/tab-left.png" 77 | border = {8,8,8,8} 78 | stretch = TRUE 79 | gap_side = RIGHT 80 | } 81 | 82 | ## Active 83 | image 84 | { 85 | function = EXTENSION 86 | file = "notebook/tab-left-active.png" 87 | border = {8, 8, 8, 8} 88 | stretch = TRUE 89 | gap_side = RIGHT 90 | } 91 | 92 | ### Tab RIGHT ### 93 | 94 | ## Normal 95 | image 96 | { 97 | function = EXTENSION 98 | state = ACTIVE 99 | file = "notebook/tab-right.png" 100 | border = {8, 8, 8, 8} 101 | stretch = TRUE 102 | gap_side = LEFT 103 | } 104 | 105 | ## Active 106 | image 107 | { 108 | function = EXTENSION 109 | file = "notebook/tab-right-active.png" 110 | border = {8, 8, 8, 8} 111 | stretch = TRUE 112 | gap_side = LEFT 113 | } 114 | 115 | ### Gap TOP ### 116 | image 117 | { 118 | function = BOX_GAP 119 | file = "notebook/notebook.png" 120 | border = {8, 8, 8, 8} 121 | stretch = TRUE 122 | gap_file = "notebook/top-gap.png" 123 | gap_border = {8, 8, 0, 0} 124 | gap_start_file = "null.png" 125 | gap_start_border = {0, 0, 0, 0} 126 | gap_end_file = "null.png" 127 | gap_end_border = {0, 0, 0, 0} 128 | gap_side = TOP 129 | } 130 | 131 | ### Gap BOTTOM ### 132 | image 133 | { 134 | function = BOX_GAP 135 | file = "notebook/notebook.png" 136 | border = {8, 8, 8, 8} 137 | stretch = TRUE 138 | gap_file = "notebook/bottom-gap.png" 139 | gap_border = {8, 8, 0, 0} 140 | gap_start_file = "null.png" 141 | gap_start_border = {0, 0, 0, 0} 142 | gap_end_file = "null.png" 143 | gap_end_border = {0, 0, 0, 0} 144 | gap_side = BOTTOM 145 | } 146 | 147 | ### Gap LEFT ### 148 | image 149 | { 150 | function = BOX_GAP 151 | file = "notebook/notebook.png" 152 | border = {8, 8, 8, 8} 153 | stretch = TRUE 154 | gap_file = "notebook/left-gap.png" 155 | gap_border = {0, 0, 8, 8} 156 | gap_start_file = "null.png" 157 | gap_start_border = {0, 0, 0, 0} 158 | gap_end_file = "null.png" 159 | gap_end_border = {0, 0, 0, 0} 160 | gap_side = LEFT 161 | } 162 | 163 | ### Gap RIGHT ### 164 | image 165 | { 166 | function = BOX_GAP 167 | file = "notebook/notebook.png" 168 | border = {8, 8, 8, 8} 169 | stretch = TRUE 170 | gap_file = "notebook/right-gap.png" 171 | gap_border = {0, 0, 8, 8} 172 | gap_start_file = "null.png" 173 | gap_start_border = {0, 0, 0, 0} 174 | gap_end_file = "null.png" 175 | gap_end_border = {0, 0, 0, 0} 176 | gap_side = RIGHT 177 | } 178 | 179 | ### Focus ### 180 | image 181 | { 182 | function = FOCUS 183 | file = "null.png" 184 | border = {1, 1, 1, 1} 185 | stretch = TRUE 186 | } 187 | } 188 | } 189 | 190 | class "GtkNotebook*" style "notebook" 191 | -------------------------------------------------------------------------------- /gtk-2.0/notebook/bottom-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/bottom-gap.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/left-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/left-gap.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/notebook.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/right-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/right-gap.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-bottom-active.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-bottom.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-left-active.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-left.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-right-active.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-right.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-top-active.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/tab-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/tab-top.png -------------------------------------------------------------------------------- /gtk-2.0/notebook/top-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/notebook/top-gap.png -------------------------------------------------------------------------------- /gtk-2.0/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/null.png -------------------------------------------------------------------------------- /gtk-2.0/progressbar.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Progressbar 3 | ######################################################################## 4 | 5 | style "progressbar" 6 | { 7 | GtkProgressBar ::shadow-type = GTK_SHADOW_NONE 8 | 9 | fg[NORMAL] = "#000" 10 | fg[SELECTED] = "#FFF" 11 | 12 | bg[NORMAL] = "#BCBCBC" # Color of sorted columns 13 | bg[SELECTED] = @selected_bg_color 14 | 15 | engine "pixmap" 16 | { 17 | ### Trough ### 18 | image 19 | { 20 | function = BOX 21 | detail = "trough" 22 | file = "progressbar/trough.png" 23 | border = {3, 3, 3, 3} 24 | stretch = TRUE 25 | orientation = HORIZONTAL 26 | } 27 | 28 | image 29 | { 30 | function = BOX 31 | detail = "trough" 32 | file = "progressbar/trough.png" 33 | border = {4, 4, 4, 4} 34 | stretch = TRUE 35 | orientation = VERTICAL 36 | } 37 | 38 | image 39 | { 40 | function = SHADOW 41 | shadow = IN 42 | file = "progressbar/trough-tree.png" 43 | border = {1, 1, 1, 1} 44 | stretch = TRUE 45 | } 46 | 47 | ### Progress ### 48 | image 49 | { 50 | function = BOX 51 | detail = "bar" 52 | file = "progressbar/progressbar-horiz.png" 53 | border = {0, 0, 0, 0} 54 | stretch = TRUE 55 | orientation = HORIZONTAL 56 | } 57 | 58 | image 59 | { 60 | function = BOX 61 | detail = "bar" 62 | file = "progressbar/progressbar-vert.png" 63 | border = {4, 4, 4, 4} 64 | stretch = TRUE 65 | orientation = VERTICAL 66 | } 67 | 68 | image 69 | { 70 | function = BOX 71 | state = SELECTED 72 | border = {0, 0, 0, 0} 73 | file = "progressbar/progressbar-horiz.png" 74 | stretch = TRUE 75 | } 76 | } 77 | } 78 | 79 | class "GtkProgressBar*" style "progressbar" 80 | class "GtkTreeView*" style "progressbar" 81 | 82 | -------------------------------------------------------------------------------- /gtk-2.0/progressbar/progressbar-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/progressbar/progressbar-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/progressbar/progressbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/progressbar/progressbar-vert.png -------------------------------------------------------------------------------- /gtk-2.0/progressbar/trough-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/progressbar/trough-tree.png -------------------------------------------------------------------------------- /gtk-2.0/progressbar/trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/progressbar/trough.png -------------------------------------------------------------------------------- /gtk-2.0/radio.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Radio buttons 3 | ######################################################################## 4 | 5 | style "radio_button" 6 | { 7 | ### Radio button ### 8 | engine "pixmap" 9 | { 10 | image 11 | { 12 | function = CHECK 13 | shadow = OUT 14 | overlay_file = "radio/radio.png" 15 | overlay_stretch = FALSE 16 | } 17 | 18 | image 19 | { 20 | function = CHECK 21 | shadow = IN 22 | overlay_file = "radio/radio-pressed.png" 23 | overlay_stretch = FALSE 24 | } 25 | 26 | image 27 | { 28 | function = OPTION 29 | shadow = OUT 30 | overlay_file = "radio/radio.png" 31 | overlay_stretch = FALSE 32 | } 33 | 34 | image 35 | { 36 | function = OPTION 37 | shadow = IN 38 | overlay_file = "radio/radio-pressed.png" 39 | overlay_stretch = FALSE 40 | } 41 | } 42 | } 43 | 44 | class "GtkRadio*" style "radio_button" 45 | class "GtkRadioMenuItem*" style "radio_button" 46 | class "GtkTreeView*" style "radio_button" 47 | 48 | -------------------------------------------------------------------------------- /gtk-2.0/radio/radio-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/radio/radio-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/radio/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/radio/radio.png -------------------------------------------------------------------------------- /gtk-2.0/scale.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Scale 3 | ######################################################################## 4 | 5 | style "scale" 6 | { 7 | GtkRange::slider_width = 21 8 | 9 | engine "pixmap" 10 | { 11 | ### Trough ### 12 | image 13 | { 14 | function = BOX 15 | detail = "trough" 16 | file = "scale/trough-horiz.png" 17 | border = {19, 19, 5, 6} 18 | stretch = TRUE 19 | # overlay_file = "scale/trough-vert-mid.png" 20 | # overlay_stretch = TRUE 21 | orientation = HORIZONTAL 22 | } 23 | 24 | image 25 | { 26 | function = BOX 27 | detail = "trough" 28 | file = "scale/trough-vert.png" 29 | border = {5, 6, 19, 19} 30 | stretch = TRUE 31 | # overlay_file = "scale/trough-horiz-mid.png" 32 | # overlay_stretch = FALSE 33 | orientation = VERTICAL 34 | } 35 | 36 | ### Slider ### 37 | image 38 | { 39 | function = SLIDER 40 | overlay_file = "scale/slider-horiz.png" 41 | overlay_stretch = FALSE 42 | orientation = HORIZONTAL 43 | } 44 | 45 | image 46 | { 47 | function = SLIDER 48 | overlay_file = "scale/slider-vert.png" 49 | overlay_stretch = FALSE 50 | orientation = VERTICAL 51 | } 52 | 53 | ### Focus ### 54 | image 55 | { 56 | function = FOCUS 57 | file = "null.png" 58 | } 59 | } 60 | } 61 | 62 | class "GtkRange*" style "scale" 63 | 64 | -------------------------------------------------------------------------------- /gtk-2.0/scale/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/slider-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/scale/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/slider-vert.png -------------------------------------------------------------------------------- /gtk-2.0/scale/trough-horiz-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/trough-horiz-mid.png -------------------------------------------------------------------------------- /gtk-2.0/scale/trough-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/trough-horiz.png -------------------------------------------------------------------------------- /gtk-2.0/scale/trough-vert-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/trough-vert-mid.png -------------------------------------------------------------------------------- /gtk-2.0/scale/trough-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scale/trough-vert.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Scrollbar 3 | ######################################################################## 4 | 5 | style "scrollbar" 6 | { 7 | GtkRange::slider-width = 15 8 | GtkRange::stepper-size = 15 9 | 10 | GtkCheckButtonClass::indicator-size = 15 11 | GtkRadioButtonClass::indicator-size = 15 12 | 13 | GtkScrollbar::min_slider_length = 44 14 | 15 | 16 | engine "pixmap" 17 | { 18 | ### Trough ### 19 | image 20 | { 21 | function = BOX 22 | detail = "trough" 23 | file = "scrollbar/trough-v.png" 24 | border = {2, 2, 2, 2} 25 | stretch = TRUE 26 | orientation = VERTICAL 27 | } 28 | 29 | image 30 | { 31 | function = BOX 32 | detail = "trough" 33 | file = "scrollbar/trough-h.png" 34 | border = {2, 2, 2, 2} 35 | stretch = TRUE 36 | orientation = HORIZONTAL 37 | } 38 | 39 | ### Scrollbar ### 40 | image 41 | { 42 | function = SLIDER 43 | file = "scrollbar/scrollbar_horizontal.png" 44 | border = {3, 3, 3, 3} 45 | stretch = TRUE 46 | orientation = HORIZONTAL 47 | } 48 | 49 | image 50 | { 51 | function = SLIDER 52 | file = "scrollbar/scrollbar_vertical.png" 53 | border = {3, 3, 3, 3} 54 | stretch = TRUE 55 | orientation = VERTICAL 56 | } 57 | 58 | ### Arrow UP ### 59 | 60 | ## Normal 61 | image 62 | { 63 | function = ARROW 64 | state = NORMAL 65 | overlay_file = "scrollbar/arrow_up.png" 66 | overlay_stretch = FALSE 67 | arrow_direction = UP 68 | } 69 | 70 | ## Prelight 71 | image 72 | { 73 | function = ARROW 74 | state = PRELIGHT 75 | overlay_file = "scrollbar/arrow_up.png" 76 | overlay_stretch = FALSE 77 | arrow_direction = UP 78 | } 79 | 80 | ## Insensitive 81 | image 82 | { 83 | function = ARROW 84 | state = INSENSITIVE 85 | overlay_file = "scrollbar/arrow_up.png" 86 | overlay_stretch = FALSE 87 | arrow_direction = UP 88 | } 89 | 90 | ## Active 91 | image 92 | { 93 | function = ARROW 94 | state = ACTIVE 95 | overlay_file = "scrollbar/arrow_up_clicked.png" 96 | overlay_stretch = FALSE 97 | arrow_direction = UP 98 | } 99 | 100 | ### Arrow DOWN ### 101 | 102 | ## Normal 103 | image 104 | { 105 | function = ARROW 106 | state = NORMAL 107 | overlay_file = "scrollbar/arrow_down.png" 108 | overlay_stretch = FALSE 109 | arrow_direction = DOWN 110 | } 111 | 112 | ## Prelight 113 | image 114 | { 115 | function = ARROW 116 | state = PRELIGHT 117 | overlay_file = "scrollbar/arrow_down.png" 118 | overlay_stretch = FALSE 119 | arrow_direction = DOWN 120 | } 121 | 122 | ## Insensitive 123 | image 124 | { 125 | function = ARROW 126 | state = INSENSITIVE 127 | overlay_file = "scrollbar/arrow_down.png" 128 | overlay_stretch = FALSE 129 | arrow_direction = DOWN 130 | } 131 | 132 | ## Active 133 | image 134 | { 135 | function = ARROW 136 | state = ACTIVE 137 | overlay_file = "scrollbar/arrow_down_clicked.png" 138 | overlay_stretch = FALSE 139 | arrow_direction = DOWN 140 | } 141 | 142 | ### Arrow LEFT ### 143 | 144 | ## Normal 145 | image 146 | { 147 | function = ARROW 148 | state = NORMAL 149 | overlay_file = "scrollbar/arrow_left.png" 150 | overlay_stretch = FALSE 151 | arrow_direction = LEFT 152 | } 153 | 154 | ## Prelight 155 | image 156 | { 157 | function = ARROW 158 | state = PRELIGHT 159 | overlay_file = "scrollbar/arrow_left.png" 160 | overlay_stretch = FALSE 161 | arrow_direction = LEFT 162 | } 163 | 164 | ## Insensitive 165 | image 166 | { 167 | function = ARROW 168 | state = INSENSITIVE 169 | overlay_file = "scrollbar/arrow_left.png" 170 | overlay_stretch = FALSE 171 | arrow_direction = LEFT 172 | } 173 | 174 | ## Active 175 | image 176 | { 177 | function = ARROW 178 | state = ACTIVE 179 | overlay_file = "scrollbar/arrow_left_clicked.png" 180 | overlay_stretch = FALSE 181 | arrow_direction = LEFT 182 | } 183 | 184 | ### Arrow RIGHT ### 185 | 186 | ## Normal 187 | image 188 | { 189 | function = ARROW 190 | state = NORMAL 191 | overlay_file = "scrollbar/arrow_right.png" 192 | overlay_stretch = FALSE 193 | arrow_direction = RIGHT 194 | } 195 | 196 | ## Prelight 197 | image 198 | { 199 | function = ARROW 200 | state = PRELIGHT 201 | overlay_file = "scrollbar/arrow_right.png" 202 | overlay_stretch = FALSE 203 | arrow_direction = RIGHT 204 | } 205 | 206 | ## Insensitive 207 | image 208 | { 209 | function = ARROW 210 | state = INSENSITIVE 211 | overlay_file = "scrollbar/arrow_right.png" 212 | overlay_stretch = FALSE 213 | arrow_direction = RIGHT 214 | } 215 | 216 | ## Active 217 | image 218 | { 219 | function = ARROW 220 | state = ACTIVE 221 | overlay_file = "scrollbar/arrow_right_clicked.png" 222 | overlay_stretch = FALSE 223 | arrow_direction = RIGHT 224 | } 225 | } 226 | } 227 | 228 | class "GtkScrollbar*" style "scrollbar" 229 | 230 | -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_down.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_down_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_down_clicked.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_left.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_left_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_left_clicked.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_right.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_right_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_right_clicked.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_up.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/arrow_up_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/arrow_up_clicked.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/scrollbar_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/scrollbar_horizontal.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/scrollbar_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/scrollbar_vertical.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/trough-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/trough-h.png -------------------------------------------------------------------------------- /gtk-2.0/scrollbar/trough-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/scrollbar/trough-v.png -------------------------------------------------------------------------------- /gtk-2.0/spin.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Spinbox 3 | ######################################################################## 4 | 5 | style "spinbutton" 6 | { 7 | engine "pixmap" 8 | { 9 | ### Spinbutton ### 10 | image 11 | { 12 | function = BOX 13 | detail = "spinbutton" 14 | file = "button/button-spin.png" 15 | border = {2, 2, 2, 2} 16 | stretch = TRUE 17 | } 18 | 19 | ### Arrow UP ### 20 | image 21 | { 22 | function = ARROW 23 | } 24 | 25 | ## Normal 26 | image 27 | { 28 | function = BOX 29 | state = NORMAL 30 | detail = "spinbutton_up" 31 | overlay_file = "arrow/arrow-up.png" 32 | overlay_stretch = FALSE 33 | } 34 | 35 | ## Prelight 36 | image 37 | { 38 | function = BOX 39 | state = PRELIGHT 40 | detail = "spinbutton_up" 41 | overlay_file = "arrow/arrow-up.png" 42 | overlay_stretch = FALSE 43 | } 44 | 45 | ## Insensitive 46 | image 47 | { 48 | function = BOX 49 | state = INSENSITIVE 50 | detail = "spinbutton_up" 51 | overlay_file = "arrow/arrow-up-disable.png" 52 | overlay_stretch = FALSE 53 | } 54 | 55 | ## Active 56 | image 57 | { 58 | function = BOX 59 | state = ACTIVE 60 | detail = "spinbutton_up" 61 | overlay_file = "arrow/arrow-up.png" 62 | overlay_stretch = FALSE 63 | } 64 | 65 | ### Arrow DOWN ### 66 | 67 | ## Normal 68 | image 69 | { 70 | function = BOX 71 | state = NORMAL 72 | detail = "spinbutton_down" 73 | overlay_file = "arrow/arrow-down.png" 74 | overlay_stretch = FALSE 75 | } 76 | 77 | ## Prelight 78 | image 79 | { 80 | function = BOX 81 | state = PRELIGHT 82 | detail = "spinbutton_down" 83 | overlay_file = "arrow/arrow-down.png" 84 | overlay_stretch = FALSE 85 | } 86 | 87 | ## Insensitive 88 | image 89 | { 90 | function = BOX 91 | state = INSENSITIVE 92 | detail = "spinbutton_down" 93 | overlay_file = "arrow/arrow-down-disable.png" 94 | overlay_stretch = FALSE 95 | } 96 | 97 | ## Active 98 | image 99 | { 100 | function = BOX 101 | state = ACTIVE 102 | detail = "spinbutton_down" 103 | overlay_file = "arrow/arrow-down.png" 104 | overlay_stretch = FALSE 105 | } 106 | } 107 | } 108 | 109 | class "GtkSpinButton*" style "spinbutton" 110 | 111 | -------------------------------------------------------------------------------- /gtk-2.0/statusbar.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Statusbar 3 | ######################################################################## 4 | 5 | style "statusbar" { 6 | 7 | $bg[NORMAL] = "#c0c0c0" 8 | #fg[NORMAL] = "#c0c0c0" 9 | 10 | #GtkStatusBar::shadow-type = GTK_SHADOW_NONE 11 | 12 | } 13 | 14 | widget_class "**" style "statusbar" 15 | 16 | -------------------------------------------------------------------------------- /gtk-2.0/statusbar/resizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/statusbar/resizer.png -------------------------------------------------------------------------------- /gtk-2.0/toolbar.rc: -------------------------------------------------------------------------------- 1 | ######################################################################## 2 | # Button 3 | ######################################################################## 4 | 5 | style "toolbar" 6 | { 7 | engine "pixmap" 8 | { 9 | image 10 | { 11 | function = BOX 12 | state = NORMAL 13 | file = "toolbar/button.png" 14 | border = {4, 4, 4, 4} 15 | stretch = TRUE 16 | } 17 | } 18 | } 19 | 20 | class "GtkToolbar" style "toolbar" 21 | class "*Toolbar" style "toolbar" 22 | widget_class "*Nautilus*ToolBar*" style "toolbar" 23 | widget_class "*BonoboDockItem" style "toolbar" 24 | widget_class "*Toolbar" style "toolbar" 25 | widget "MozillaGtkWidget*Tool*" style "toolbar" 26 | -------------------------------------------------------------------------------- /gtk-2.0/toolbar/button-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/toolbar/button-ins.png -------------------------------------------------------------------------------- /gtk-2.0/toolbar/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/toolbar/button-pressed.png -------------------------------------------------------------------------------- /gtk-2.0/toolbar/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-2.0/toolbar/button.png -------------------------------------------------------------------------------- /gtk-3.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/arrow-down.png -------------------------------------------------------------------------------- /gtk-3.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/arrow-left.png -------------------------------------------------------------------------------- /gtk-3.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/arrow-right.png -------------------------------------------------------------------------------- /gtk-3.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/arrow-up.png -------------------------------------------------------------------------------- /gtk-3.0/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/arrow.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/close.png -------------------------------------------------------------------------------- /gtk-3.0/assets/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/maximize.png -------------------------------------------------------------------------------- /gtk-3.0/assets/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/minimize.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-checked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-checked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-3.0/assets/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/restore.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-horiz-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-horiz-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-horiz-top-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-horiz-top-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-horiz-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-horiz-top.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-vert-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-vert-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-vert-left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-vert-left-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-vert-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-vert-left.png -------------------------------------------------------------------------------- /gtk-3.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/assets/slider-vert.png -------------------------------------------------------------------------------- /gtk-3.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-3.0/thumbnail.png -------------------------------------------------------------------------------- /gtk-4.0/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/arrow-down.png -------------------------------------------------------------------------------- /gtk-4.0/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/arrow-left.png -------------------------------------------------------------------------------- /gtk-4.0/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/arrow-right.png -------------------------------------------------------------------------------- /gtk-4.0/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/arrow-up.png -------------------------------------------------------------------------------- /gtk-4.0/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/arrow.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-unfocused.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/checkbox-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/close.png -------------------------------------------------------------------------------- /gtk-4.0/assets/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/maximize.png -------------------------------------------------------------------------------- /gtk-4.0/assets/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/minimize.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-checked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-checked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-checked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-mixed-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-insensitive@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-unchecked-insensitive@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-unfocused.png: -------------------------------------------------------------------------------- 1 | radio-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked-unfocused@2.png: -------------------------------------------------------------------------------- 1 | radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /gtk-4.0/assets/radio-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/radio-unchecked@2.png -------------------------------------------------------------------------------- /gtk-4.0/assets/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/restore.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-horiz-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-horiz-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-horiz-top-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-horiz-top-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-horiz-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-horiz-top.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-horiz.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-vert-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-vert-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-vert-left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-vert-left-insensitive.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-vert-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-vert-left.png -------------------------------------------------------------------------------- /gtk-4.0/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/gtk-4.0/assets/slider-vert.png -------------------------------------------------------------------------------- /index.theme: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=X-GNOME-Metatheme 3 | Name=Windows Classic 4 | Comment=Windows Classic UI for Linux OSes 5 | Encoding=UTF-8 6 | 7 | [X-GNOME-Metatheme] 8 | GtkTheme=Windows Classic 9 | MetacityTheme=Windows Classic 10 | IconTheme=Windows XP 11 | CursorTheme=DMZ-White 12 | ButtonLayout=menu:minimize,maximize,close 13 | -------------------------------------------------------------------------------- /metacity-1/close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/close_normal.png -------------------------------------------------------------------------------- /metacity-1/close_normal_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/close_normal_small.png -------------------------------------------------------------------------------- /metacity-1/close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/close_pressed.png -------------------------------------------------------------------------------- /metacity-1/close_pressed_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/close_pressed_small.png -------------------------------------------------------------------------------- /metacity-1/maximize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/maximize_normal.png -------------------------------------------------------------------------------- /metacity-1/maximize_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/maximize_pressed.png -------------------------------------------------------------------------------- /metacity-1/metacity-theme-1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | win2k 6 | Srivatsa Kanchi, R <srivatsa_nk@dataone.in> 7 | Â 2007 Srivatsa Kanchi 8 | March 15, 2007 9 | Windows 2000/NT style theme 10 | Windows 95 Spinoff by Christian Medel (elbullazul) 11 | http:b00merang.weebly.com 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 78 | 80 | 81 | 82 | 83 | 84 | 86 | 88 | 90 | 91 | 92 | 93 | 94 | 95 | 97 | 99 | 101 | 103 | 105 | 107 | 108 | 109 | 110 | 111 | 112 | 114 | 116 | 118 | 120 | 122 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 139 | 145 | 151 | 157 | 163 | 169 | 174 | 179 | 180 | 181 | 182 | </draw_ops> 183 | </piece> 184 | </frame_style> 185 | 186 | <frame_style name="normal(maximized)_focused_style" 187 | geometry="borderless_geometry" parent="normal_focused_style"> 188 | <piece position="titlebar"> 189 | <draw_ops> 190 | <gradient type="horizontal" x="0" y="0" width="width-0" 191 | height="height-0"> 192 | <color value="#08216b"/> 193 | <color value="#526bad"/> 194 | <color value="#94b5dc"/> 195 | <color value="#a5c6f7"/> 196 | </gradient> 197 | </draw_ops> 198 | </piece> 199 | <button function="maximize" state="normal"> 200 | 201 | <draw_ops> 202 | <image filename="restore_normal.png" x="0" y="0" width="width" 203 | height="height"/> 204 | </draw_ops> 205 | </button> 206 | <button function="maximize" state="pressed"> 207 | <draw_ops> 208 | <image filename="restore_pressed.png" x="0" y="0" width="width" 209 | height="height"/> 210 | </draw_ops> 211 | </button> 212 | </frame_style> 213 | 214 | <frame_style name="normal_unfocused_style" geometry="normal_geometry" 215 | parent="normal_focused_style"> 216 | <piece position="titlebar"> 217 | <draw_ops> 218 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 219 | height="height" filled="true"/> 220 | <line color="#ffffff" x1="1" y1="1" x2="1" 221 | y2="height" width="1"/> 222 | <line color="#ffffff" x1="1" y1="1" x2="width-2" 223 | y2="1" width="1"/> 224 | <line color="#424242" x1="width-1" y1="0" x2="width-1" 225 | y2="height" width="1"/> 226 | <line color="#848484" x1="width-2" y1="1" x2="width-2" 227 | y2="height" width="1"/> 228 | <gradient type="horizontal" x="4" y="4" width="width-8" 229 | height="height-5"> 230 | <color value="#848484"/> 231 | <color value="#8c8c8c"/> 232 | <color value="#a5a5a5"/> 233 | <color value="#c6bdc6"/> 234 | <color value="#c6c6c6"/> 235 | </gradient> 236 | </draw_ops> 237 | </piece> 238 | <piece position="title"> 239 | <draw_ops> 240 | <title x="4" y="1" color="#d6d6ce"/> 241 | </draw_ops> 242 | </piece> 243 | </frame_style> 244 | 245 | <frame_style name="normal(maximized)_unfocused_style" 246 | geometry="borderless_geometry" parent="normal_unfocused_style"> 247 | <piece position="titlebar"> 248 | <draw_ops> 249 | <gradient type="horizontal" x="0" y="0" width="width-0" 250 | height="height-0"> 251 | <color value="#848484"/> 252 | <color value="#8c8c8c"/> 253 | <color value="#a5a5a5"/> 254 | <color value="#c6bdc6"/> 255 | <color value="#c6c6c6"/> 256 | </gradient> 257 | </draw_ops> 258 | </piece> 259 | <button function="maximize" state="normal"> 260 | <draw_ops> 261 | <image filename="restore_normal.png" x="0" y="0" width="width" 262 | height="height"/> 263 | </draw_ops> 264 | </button> 265 | </frame_style> 266 | 267 | <frame_style name="utility_focused_style" geometry="utility_geometry"> 268 | <piece position="entire_background"> 269 | <draw_ops> 270 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 271 | height="height" filled="true"/> 272 | <rectangle color="#ffffff" x="1" y="1" width="width-3" 273 | height="height-3" filled="false"/> 274 | <line color="#808080" x1="width-2" y1="1" x2="width-2" 275 | y2="height-3"/> 276 | <line color="#808080" x1="1" y1="height-2" x2="width-2" 277 | y2="height-2"/> 278 | <line color="#404040" x1="width-1" y1="0" x2="width-1" 279 | y2="height-1"/> 280 | <line color="#404040" x1="0" y1="height-1" x2="width-1" 281 | y2="height-1"/> 282 | </draw_ops> 283 | </piece> 284 | 285 | <piece position="titlebar"> 286 | <draw_ops> 287 | <gradient type="horizontal" x="3" y="3" width="width-6" 288 | height="height-4"> 289 | <color value="#08216b"/> 290 | <color value="#526bad"/> 291 | <color value="#94b5dc"/> 292 | <color value="#a5c6f7"/> 293 | </gradient> 294 | </draw_ops> 295 | </piece> 296 | <button function="menu" state="normal"><draw_ops/></button> 297 | <button function="menu" state="pressed"><draw_ops/></button> 298 | 299 | <piece position="title"> 300 | <draw_ops> 301 | <title x="0" y="0" color="#ffffff"/> 302 | </draw_ops> 303 | </piece> 304 | 305 | <button function="close" state="normal"> 306 | <draw_ops> 307 | <image filename="close_normal_small.png" x="0" y="0" 308 | width="width" height="height"/> 309 | </draw_ops> 310 | </button> 311 | <button function="close" state="pressed"> 312 | <draw_ops> 313 | <image filename="close_pressed_small.png" x="0" y="0" 314 | width="width" height="height"/> 315 | </draw_ops> 316 | </button> 317 | <button function="maximize" state="normal"><draw_ops/></button> 318 | <button function="maximize" state="pressed"><draw_ops/></button> 319 | <button function="minimize" state="normal"><draw_ops/></button> 320 | <button function="minimize" state="pressed"><draw_ops/></button> 321 | </frame_style> 322 | 323 | <frame_style name="utility_unfocused_style" geometry="utility_geometry" 324 | parent="utility_focused_style"> 325 | <piece position="titlebar"> 326 | <draw_ops> 327 | <gradient type="horizontal" x="3" y="3" width="width-6" 328 | height="height-4"> 329 | <color value="#848484"/> 330 | <color value="#8c8c8c"/> 331 | <color value="#a5a5a5"/> 332 | <color value="#c6bdc6"/> 333 | <color value="#c6c6c6"/> 334 | </gradient> 335 | </draw_ops> 336 | </piece> 337 | <piece position="title"> 338 | <draw_ops> 339 | <title x="0" y="0" color="#d6d6ce"/> 340 | </draw_ops> 341 | </piece> 342 | </frame_style> 343 | 344 | 345 | <frame_style name="border_style" geometry="border_geometry"> 346 | <button function="close" state="normal"><draw_ops/></button> 347 | <button function="close" state="pressed"><draw_ops/></button> 348 | <button function="maximize" state="normal"><draw_ops/></button> 349 | <button function="maximize" state="pressed"><draw_ops/></button> 350 | <button function="minimize" state="normal"><draw_ops/></button> 351 | <button function="minimize" state="pressed"><draw_ops/></button> 352 | <button function="menu" state="normal"><draw_ops/></button> 353 | <button function="menu" state="pressed"><draw_ops/></button> 354 | </frame_style> 355 | 356 | <!-- system menu icon : default drawn by metacity --> 357 | <menu_icon function="close" state="normal"> 358 | <draw_ops/> 359 | </menu_icon> 360 | <menu_icon function="maximize" state="normal"> 361 | <draw_ops/> 362 | </menu_icon> 363 | <menu_icon function="minimize" state="normal"> 364 | <draw_ops/> 365 | </menu_icon> 366 | <menu_icon function="unmaximize" state="normal"> 367 | <draw_ops/> 368 | </menu_icon> 369 | 370 | <frame_style_set name="normal_set"> 371 | <frame focus="yes" state="normal" resize="both" 372 | style="normal_focused_style"/> 373 | <frame focus="no" state="normal" resize="both" 374 | style="normal_unfocused_style"/> 375 | <frame focus="yes" state="normal" resize="none" 376 | style="normal_focused_style"/> 377 | <frame focus="no" state="normal" resize="none" 378 | style="normal_unfocused_style"/> 379 | <frame focus="yes" state="maximized" 380 | style="normal(maximized)_focused_style"/> 381 | <frame focus="no" state="maximized" 382 | style="normal(maximized)_unfocused_style"/> 383 | <frame focus="yes" state="shaded" style="normal_focused_style"/> 384 | <frame focus="no" state="shaded" style="normal_unfocused_style"/> 385 | <frame focus="yes" state="maximized_and_shaded" 386 | style="normal(maximized)_focused_style"/> 387 | <frame focus="no" state="maximized_and_shaded" 388 | style="normal_unfocused_style"/> 389 | </frame_style_set> 390 | 391 | 392 | <frame_style_set name="border_set"> 393 | <frame focus="yes" state="normal" resize="both" style="border_style" /> 394 | <frame focus="no" state="normal" resize="both" style="border_style" /> 395 | <frame focus="yes" state="normal" resize="none" style="border_style" /> 396 | <frame focus="no" state="normal" resize="none" style="border_style" /> 397 | <frame focus="yes" state="maximized" style="border_style" /> 398 | <frame focus="no" state="maximized" style="border_style" /> 399 | <frame focus="yes" state="shaded" style="border_style" /> 400 | <frame focus="no" state="shaded" style="border_style" /> 401 | <frame focus="yes" state="maximized_and_shaded" style="border_style" /> 402 | <frame focus="no" state="maximized_and_shaded" style="border_style" /> 403 | </frame_style_set> 404 | 405 | <frame_style_set name="utility_set" parent="border_set"> 406 | <frame focus="yes" state="normal" resize="both" 407 | style="utility_focused_style" /> 408 | <frame focus="no" state="normal" resize="both" 409 | style="utility_unfocused_style" /> 410 | <frame focus="yes" state="normal" resize="none" 411 | style="utility_focused_style" /> 412 | <frame focus="no" state="normal" resize="none" 413 | style="utility_unfocused_style" /> 414 | </frame_style_set> 415 | 416 | 417 | <window type="normal" style_set="normal_set"/> 418 | <window type="dialog" style_set="normal_set"/> 419 | <window type="modal_dialog" style_set="normal_set"/> 420 | <window type="menu" style_set="utility_set"/> 421 | <window type="utility" style_set="utility_set"/> 422 | <window type="border" style_set="border_set"/> 423 | 424 | </metacity_theme> 425 | -------------------------------------------------------------------------------- /metacity-1/metacity-theme-3.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | 3 | <metacity_theme> 4 | <info> 5 | <name>win2k</name> 6 | <author>Srivatsa Kanchi, R <srivatsa_nk@dataone.in></author> 7 | <copyright>Â 2007 Srivatsa Kanchi</copyright> 8 | <date>March 15, 2007</date> 9 | <description>Windows 2000/NT style theme</description> 10 | </info> 11 | 12 | <frame_geometry name="normal_geometry" has_title="true" 13 | rounded_top_left="false" rounded_top_right="false" title_scale="medium" 14 | rounded_bottom_left="false" rounded_bottom_right="false"> 15 | <distance name="left_width" value="4"/> 16 | <distance name="right_width" value="4"/> 17 | <distance name="bottom_height" value="4"/> 18 | <distance name="left_titlebar_edge" value="5"/> 19 | <distance name="right_titlebar_edge" value="6"/> 20 | <distance name="title_vertical_pad" value="5"/> 21 | <distance name="button_width" value="17"/> 22 | <distance name="button_height" value="14"/> 23 | <border name="title_border" left="0" right="0" top="4" bottom="0"/> 24 | <border name="button_border" left="0" right="0" top="3" bottom="0"/> 25 | </frame_geometry> 26 | 27 | <frame_geometry name="borderless_geometry" has_title="true" 28 | rounded_top_left="false" rounded_top_right="false" title_scale="medium" 29 | rounded_bottom_left="false" rounded_bottom_right="false"> 30 | <distance name="left_width" value="0"/> 31 | <distance name="right_width" value="0"/> 32 | <distance name="bottom_height" value="0"/> 33 | <distance name="left_titlebar_edge" value="3"/> 34 | <distance name="right_titlebar_edge" value="3"/> 35 | <distance name="title_vertical_pad" value="4"/> 36 | <distance name="button_width" value="16"/> 37 | <distance name="button_height" value="14"/> 38 | <border name="title_border" left="0" right="0" top="2" bottom="0"/> 39 | <border name="button_border" left="0" right="0" top="2" bottom="0"/> 40 | </frame_geometry> 41 | 42 | <frame_geometry name="utility_geometry" has_title="true" 43 | rounded_top_left="false" rounded_top_right="false" title_scale="small" 44 | rounded_bottom_left="false" rounded_bottom_right="false"> 45 | <distance name="left_width" value="3"/> 46 | <distance name="right_width" value="3"/> 47 | <distance name="bottom_height" value="3"/> 48 | <distance name="left_titlebar_edge" value="4"/> 49 | <distance name="right_titlebar_edge" value="4"/> 50 | <distance name="title_vertical_pad" value="4"/> 51 | <distance name="button_width" value="10"/> 52 | <distance name="button_height" value="11"/> 53 | <border name="title_border" left="0" right="0" top="4" bottom="2"/> 54 | <border name="button_border" left="0" right="0" top="2" bottom="0"/> 55 | </frame_geometry> 56 | 57 | <frame_geometry name="border_geometry" has_title="false"> 58 | <distance name="left_width" value="0" /> 59 | <distance name="right_width" value="0" /> 60 | <distance name="bottom_height" value="0" /> 61 | <distance name="left_titlebar_edge" value="0" /> 62 | <distance name="right_titlebar_edge" value="0" /> 63 | <distance name="button_width" value="0"/> 64 | <distance name="button_height" value="0"/> 65 | <distance name="title_vertical_pad" value="0" /> 66 | <border name="title_border" left="0" right="0" top="0" bottom="0" /> 67 | <border name="button_border" left="0" right="0" top="0" bottom="0" /> 68 | </frame_geometry> 69 | 70 | <frame_style name="normal_focused_style" geometry="normal_geometry"> 71 | <piece position="left_edge"> 72 | <draw_ops> 73 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 74 | height="height" filled="true"/> 75 | <line color="#ffffff" x1="1" y1="0" x2="1" y2="height" 76 | width="1"/> 77 | </draw_ops> 78 | </piece> 79 | <piece position="right_edge"> 80 | <draw_ops> 81 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 82 | height="height" filled="true"/> 83 | <line color="#848484" x1="width-2" y1="0" x2="width-2" 84 | y2="height" width="1"/> 85 | <line color="#424242" x1="width-1" y1="0" x2="width-1" 86 | y2="height" width="1"/> 87 | </draw_ops> 88 | </piece> 89 | 90 | <piece position="bottom_edge"> 91 | <draw_ops> 92 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 93 | height="height" filled="true"/> 94 | <line color="#848484" x1="1" y1="height-2" x2="width" 95 | y2="height-2" width="1"/> 96 | <line color="#424242" x1="0" y1="height-1" x2="width" 97 | y2="height-1" width="1"/> 98 | <line color="#ffffff" x1="1" y1="0" x2="1" 99 | y2="height-2" width="1"/> 100 | <line color="#424242" x1="width-1" y1="0" x2="width-1" 101 | y2="height" width="1"/> 102 | <line color="#848484" x1="width-2" y1="0" x2="width-2" 103 | y2="height-2" width="1"/> 104 | </draw_ops> 105 | </piece> 106 | 107 | <piece position="titlebar"> 108 | <draw_ops> 109 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 110 | height="height" filled="true"/> 111 | <line color="#ffffff" x1="1" y1="1" x2="1" 112 | y2="height" width="1"/> 113 | <line color="#ffffff" x1="1" y1="1" x2="width-2" 114 | y2="1" width="1"/> 115 | <line color="#424242" x1="width-1" y1="0" x2="width-1" 116 | y2="height" width="1"/> 117 | <line color="#848484" x1="width-2" y1="1" x2="width-2" 118 | y2="height" width="1"/> 119 | <gradient type="horizontal" x="4" y="4" width="width-8" 120 | height="height-5"> 121 | <color value="#08216b"/> 122 | <color value="#526bad"/> 123 | <color value="#94b5dc"/> 124 | <color value="#a5c6f7"/> 125 | </gradient> 126 | </draw_ops> 127 | </piece> 128 | 129 | 130 | <button function="close" state="normal"> 131 | <draw_ops> 132 | <image filename="close_normal.png" x="0" y="0" width="object_width" 133 | height="height"/> 134 | </draw_ops> 135 | </button> 136 | <button function="close" state="pressed"> 137 | <draw_ops> 138 | <image filename="close_pressed.png" x="0" y="0" width="width" 139 | height="height"/> 140 | </draw_ops> 141 | </button> 142 | <button function="maximize" state="normal"> 143 | <draw_ops> 144 | <image filename="maximize_normal.png" x="0" y="0" width="width" 145 | height="height"/> 146 | </draw_ops> 147 | </button> 148 | <button function="maximize" state="pressed"> 149 | <draw_ops> 150 | <image filename="maximize_pressed.png" x="0" y="0" width="width" 151 | height="height"/> 152 | </draw_ops> 153 | </button> 154 | <button function="minimize" state="normal"> 155 | <draw_ops> 156 | <image filename="minimize_normal.png" x="0" y="0" width="width" 157 | height="height"/> 158 | </draw_ops> 159 | </button> 160 | <button function="minimize" state="pressed"> 161 | <draw_ops> 162 | <image filename="minimize_pressed.png" x="0" y="0" width="width" 163 | height="height"/> 164 | </draw_ops> 165 | </button> 166 | <button function="menu" state="normal"> 167 | <draw_ops> 168 | <icon x="1" y="0" width="mini_icon_width" height="mini_icon_height"/> 169 | </draw_ops> 170 | </button> 171 | <button function="menu" state="pressed"> 172 | <draw_ops> 173 | <icon x="1" y="0" width="mini_icon_width" height="mini_icon_height"/> 174 | </draw_ops> 175 | </button> 176 | 177 | <!-- Extra stuff Linux Mint wants for theme to work --> 178 | <button function="shade" state="normal"><draw_ops></draw_ops></button> 179 | <button function="shade" state="prelight"><draw_ops></draw_ops></button> 180 | <button function="shade" state="pressed"><draw_ops></draw_ops></button> 181 | <button function="unshade" state="normal"><draw_ops></draw_ops></button> 182 | <button function="unshade" state="prelight"><draw_ops></draw_ops></button> 183 | <button function="unshade" state="pressed"><draw_ops></draw_ops></button> 184 | <button function="above" state="normal"><draw_ops></draw_ops></button> 185 | <button function="above" state="pressed"><draw_ops></draw_ops></button> 186 | <button function="unabove" state="normal"><draw_ops></draw_ops></button> 187 | <button function="unabove" state="pressed"><draw_ops></draw_ops></button> 188 | <button function="stick" state="normal"><draw_ops></draw_ops></button> 189 | <button function="stick" state="pressed"><draw_ops></draw_ops></button> 190 | <button function="unstick" state="normal"><draw_ops></draw_ops></button> 191 | <button function="unstick" state="pressed"><draw_ops></draw_ops></button> 192 | 193 | <piece position="title"> 194 | <draw_ops> 195 | <title x="4" y="1" color="#ffffff"/> 196 | </draw_ops> 197 | </piece> 198 | </frame_style> 199 | 200 | <frame_style name="normal(maximized)_focused_style" 201 | geometry="borderless_geometry" parent="normal_focused_style"> 202 | <piece position="titlebar"> 203 | <draw_ops> 204 | <gradient type="horizontal" x="0" y="0" width="width-0" 205 | height="height-0"> 206 | <color value="#08216b"/> 207 | <color value="#526bad"/> 208 | <color value="#94b5dc"/> 209 | <color value="#a5c6f7"/> 210 | </gradient> 211 | </draw_ops> 212 | </piece> 213 | <button function="maximize" state="normal"> 214 | 215 | <draw_ops> 216 | <image filename="restore_normal.png" x="0" y="0" width="width" 217 | height="height"/> 218 | </draw_ops> 219 | </button> 220 | <button function="maximize" state="pressed"> 221 | <draw_ops> 222 | <image filename="restore_pressed.png" x="0" y="0" width="width" 223 | height="height"/> 224 | </draw_ops> 225 | </button> 226 | </frame_style> 227 | 228 | <frame_style name="normal_unfocused_style" geometry="normal_geometry" 229 | parent="normal_focused_style"> 230 | <piece position="titlebar"> 231 | <draw_ops> 232 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 233 | height="height" filled="true"/> 234 | <line color="#ffffff" x1="1" y1="1" x2="1" 235 | y2="height" width="1"/> 236 | <line color="#ffffff" x1="1" y1="1" x2="width-2" 237 | y2="1" width="1"/> 238 | <line color="#424242" x1="width-1" y1="0" x2="width-1" 239 | y2="height" width="1"/> 240 | <line color="#848484" x1="width-2" y1="1" x2="width-2" 241 | y2="height" width="1"/> 242 | <gradient type="horizontal" x="4" y="4" width="width-8" 243 | height="height-5"> 244 | <color value="#848484"/> 245 | <color value="#8c8c8c"/> 246 | <color value="#a5a5a5"/> 247 | <color value="#c6bdc6"/> 248 | <color value="#c6c6c6"/> 249 | </gradient> 250 | </draw_ops> 251 | </piece> 252 | <piece position="title"> 253 | <draw_ops> 254 | <title x="4" y="1" color="#d6d6ce"/> 255 | </draw_ops> 256 | </piece> 257 | </frame_style> 258 | 259 | <frame_style name="normal(maximized)_unfocused_style" 260 | geometry="borderless_geometry" parent="normal_unfocused_style"> 261 | <piece position="titlebar"> 262 | <draw_ops> 263 | <gradient type="horizontal" x="0" y="0" width="width-0" 264 | height="height-0"> 265 | <color value="#848484"/> 266 | <color value="#8c8c8c"/> 267 | <color value="#a5a5a5"/> 268 | <color value="#c6bdc6"/> 269 | <color value="#c6c6c6"/> 270 | </gradient> 271 | </draw_ops> 272 | </piece> 273 | <button function="maximize" state="normal"> 274 | <draw_ops> 275 | <image filename="restore_normal.png" x="0" y="0" width="width" 276 | height="height"/> 277 | </draw_ops> 278 | </button> 279 | </frame_style> 280 | 281 | <frame_style name="utility_focused_style" geometry="utility_geometry"> 282 | <piece position="entire_background"> 283 | <draw_ops> 284 | <rectangle color="#d6d6ce" x="0" y="0" width="width" 285 | height="height" filled="true"/> 286 | <rectangle color="#ffffff" x="1" y="1" width="width-3" 287 | height="height-3" filled="false"/> 288 | <line color="#808080" x1="width-2" y1="1" x2="width-2" 289 | y2="height-3"/> 290 | <line color="#808080" x1="1" y1="height-2" x2="width-2" 291 | y2="height-2"/> 292 | <line color="#404040" x1="width-1" y1="0" x2="width-1" 293 | y2="height-1"/> 294 | <line color="#404040" x1="0" y1="height-1" x2="width-1" 295 | y2="height-1"/> 296 | </draw_ops> 297 | </piece> 298 | 299 | <piece position="titlebar"> 300 | <draw_ops> 301 | <gradient type="horizontal" x="3" y="3" width="width-6" 302 | height="height-4"> 303 | <color value="#08216b"/> 304 | <color value="#526bad"/> 305 | <color value="#94b5dc"/> 306 | <color value="#a5c6f7"/> 307 | </gradient> 308 | </draw_ops> 309 | </piece> 310 | <button function="menu" state="normal"><draw_ops/></button> 311 | <button function="menu" state="pressed"><draw_ops/></button> 312 | 313 | <piece position="title"> 314 | <draw_ops> 315 | <title x="0" y="0" color="#ffffff"/> 316 | </draw_ops> 317 | </piece> 318 | 319 | <button function="close" state="normal"> 320 | <draw_ops> 321 | <image filename="close_normal_small.png" x="0" y="0" 322 | width="width" height="height"/> 323 | </draw_ops> 324 | </button> 325 | <button function="close" state="pressed"> 326 | <draw_ops> 327 | <image filename="close_pressed_small.png" x="0" y="0" 328 | width="width" height="height"/> 329 | </draw_ops> 330 | </button> 331 | <button function="maximize" state="normal"><draw_ops/></button> 332 | <button function="maximize" state="pressed"><draw_ops/></button> 333 | <button function="minimize" state="normal"><draw_ops/></button> 334 | <button function="minimize" state="pressed"><draw_ops/></button> 335 | 336 | <!-- Extra stuff Linux Mint wants for theme to work --> 337 | <button function="shade" state="normal"><draw_ops></draw_ops></button> 338 | <button function="shade" state="prelight"><draw_ops></draw_ops></button> 339 | <button function="shade" state="pressed"><draw_ops></draw_ops></button> 340 | <button function="unshade" state="normal"><draw_ops></draw_ops></button> 341 | <button function="unshade" state="prelight"><draw_ops></draw_ops></button> 342 | <button function="unshade" state="pressed"><draw_ops></draw_ops></button> 343 | <button function="above" state="normal"><draw_ops></draw_ops></button> 344 | <button function="above" state="pressed"><draw_ops></draw_ops></button> 345 | <button function="unabove" state="normal"><draw_ops></draw_ops></button> 346 | <button function="unabove" state="pressed"><draw_ops></draw_ops></button> 347 | <button function="stick" state="normal"><draw_ops></draw_ops></button> 348 | <button function="stick" state="pressed"><draw_ops></draw_ops></button> 349 | <button function="unstick" state="normal"><draw_ops></draw_ops></button> 350 | <button function="unstick" state="pressed"><draw_ops></draw_ops></button> 351 | </frame_style> 352 | 353 | <frame_style name="utility_unfocused_style" geometry="utility_geometry" 354 | parent="utility_focused_style"> 355 | <piece position="titlebar"> 356 | <draw_ops> 357 | <gradient type="horizontal" x="3" y="3" width="width-6" 358 | height="height-4"> 359 | <color value="#848484"/> 360 | <color value="#8c8c8c"/> 361 | <color value="#a5a5a5"/> 362 | <color value="#c6bdc6"/> 363 | <color value="#c6c6c6"/> 364 | </gradient> 365 | </draw_ops> 366 | </piece> 367 | <piece position="title"> 368 | <draw_ops> 369 | <title x="0" y="0" color="#d6d6ce"/> 370 | </draw_ops> 371 | </piece> 372 | </frame_style> 373 | 374 | 375 | <frame_style name="border_style" geometry="border_geometry"> 376 | <button function="close" state="normal"><draw_ops/></button> 377 | <button function="close" state="pressed"><draw_ops/></button> 378 | <button function="maximize" state="normal"><draw_ops/></button> 379 | <button function="maximize" state="pressed"><draw_ops/></button> 380 | <button function="minimize" state="normal"><draw_ops/></button> 381 | <button function="minimize" state="pressed"><draw_ops/></button> 382 | <button function="menu" state="normal"><draw_ops/></button> 383 | <button function="menu" state="pressed"><draw_ops/></button> 384 | 385 | <!-- Extra stuff Linux Mint wants for theme to work --> 386 | <button function="shade" state="normal"><draw_ops></draw_ops></button> 387 | <button function="shade" state="prelight"><draw_ops></draw_ops></button> 388 | <button function="shade" state="pressed"><draw_ops></draw_ops></button> 389 | <button function="unshade" state="normal"><draw_ops></draw_ops></button> 390 | <button function="unshade" state="prelight"><draw_ops></draw_ops></button> 391 | <button function="unshade" state="pressed"><draw_ops></draw_ops></button> 392 | <button function="above" state="normal"><draw_ops></draw_ops></button> 393 | <button function="above" state="pressed"><draw_ops></draw_ops></button> 394 | <button function="unabove" state="normal"><draw_ops></draw_ops></button> 395 | <button function="unabove" state="pressed"><draw_ops></draw_ops></button> 396 | <button function="stick" state="normal"><draw_ops></draw_ops></button> 397 | <button function="stick" state="pressed"><draw_ops></draw_ops></button> 398 | <button function="unstick" state="normal"><draw_ops></draw_ops></button> 399 | <button function="unstick" state="pressed"><draw_ops></draw_ops></button> 400 | </frame_style> 401 | 402 | <!-- system menu icon : default drawn by metacity --> 403 | <menu_icon function="close" state="normal"> 404 | <draw_ops/> 405 | </menu_icon> 406 | <menu_icon function="maximize" state="normal"> 407 | <draw_ops/> 408 | </menu_icon> 409 | <menu_icon function="minimize" state="normal"> 410 | <draw_ops/> 411 | </menu_icon> 412 | <menu_icon function="unmaximize" state="normal"> 413 | <draw_ops/> 414 | </menu_icon> 415 | 416 | <frame_style_set name="normal_set"> 417 | <frame focus="yes" state="normal" resize="both" 418 | style="normal_focused_style"/> 419 | <frame focus="no" state="normal" resize="both" 420 | style="normal_unfocused_style"/> 421 | <frame focus="yes" state="normal" resize="none" 422 | style="normal_focused_style"/> 423 | <frame focus="no" state="normal" resize="none" 424 | style="normal_unfocused_style"/> 425 | <frame focus="yes" state="maximized" 426 | style="normal(maximized)_focused_style"/> 427 | <frame focus="no" state="maximized" 428 | style="normal(maximized)_unfocused_style"/> 429 | <frame focus="yes" state="shaded" style="normal_focused_style"/> 430 | <frame focus="no" state="shaded" style="normal_unfocused_style"/> 431 | <frame focus="yes" state="maximized_and_shaded" 432 | style="normal(maximized)_focused_style"/> 433 | <frame focus="no" state="maximized_and_shaded" 434 | style="normal_unfocused_style"/> 435 | </frame_style_set> 436 | 437 | 438 | <frame_style_set name="border_set"> 439 | <frame focus="yes" state="normal" resize="both" style="border_style" /> 440 | <frame focus="no" state="normal" resize="both" style="border_style" /> 441 | <frame focus="yes" state="normal" resize="none" style="border_style" /> 442 | <frame focus="no" state="normal" resize="none" style="border_style" /> 443 | <frame focus="yes" state="maximized" style="border_style" /> 444 | <frame focus="no" state="maximized" style="border_style" /> 445 | <frame focus="yes" state="shaded" style="border_style" /> 446 | <frame focus="no" state="shaded" style="border_style" /> 447 | <frame focus="yes" state="maximized_and_shaded" style="border_style" /> 448 | <frame focus="no" state="maximized_and_shaded" style="border_style" /> 449 | </frame_style_set> 450 | 451 | <frame_style_set name="utility_set" parent="border_set"> 452 | <frame focus="yes" state="normal" resize="both" 453 | style="utility_focused_style" /> 454 | <frame focus="no" state="normal" resize="both" 455 | style="utility_unfocused_style" /> 456 | <frame focus="yes" state="normal" resize="none" 457 | style="utility_focused_style" /> 458 | <frame focus="no" state="normal" resize="none" 459 | style="utility_unfocused_style" /> 460 | </frame_style_set> 461 | 462 | 463 | <window type="normal" style_set="normal_set"/> 464 | <window type="dialog" style_set="normal_set"/> 465 | <window type="modal_dialog" style_set="normal_set"/> 466 | <window type="menu" style_set="utility_set"/> 467 | <window type="utility" style_set="utility_set"/> 468 | <window type="border" style_set="border_set"/> 469 | 470 | </metacity_theme> 471 | -------------------------------------------------------------------------------- /metacity-1/minimize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/minimize_normal.png -------------------------------------------------------------------------------- /metacity-1/minimize_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/minimize_pressed.png -------------------------------------------------------------------------------- /metacity-1/restore_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/restore_normal.png -------------------------------------------------------------------------------- /metacity-1/restore_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/restore_pressed.png -------------------------------------------------------------------------------- /metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B00merang-Project/Windows-Classic/0e229ed7f3388e5d5319615c4f9aa7a1749ff2f0/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /xfwm4/README.md: -------------------------------------------------------------------------------- 1 | redmond 2 | ------- 3 | 4 | This theme is a port of original Oroborus theme called "windows". 5 | -------------------------------------------------------------------------------- /xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_active_xpm[] = { 3 | "16 5 4 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "@@@@@@@@@@@@@@@@", 9 | "@@@@@@@@@@@@@@@@", 10 | "@@@@@@@@@@@@@@@@", 11 | "################", 12 | "................"}; 13 | -------------------------------------------------------------------------------- /xfwm4/bottom-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_inactive_xpm[] = { 3 | "16 5 4 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "@@@@@@@@@@@@@@@@", 9 | "@@@@@@@@@@@@@@@@", 10 | "@@@@@@@@@@@@@@@@", 11 | "################", 12 | "................"}; 13 | -------------------------------------------------------------------------------- /xfwm4/bottom-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_active_xpm[] = { 3 | "12 12 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | "@+@@@ ", 10 | "@+@@@ ", 11 | "@+@@@ ", 12 | "@+@@@ ", 13 | "@+@@@ ", 14 | "@+@@@ ", 15 | "@+@@@ ", 16 | "@+@@@@@@@@@@", 17 | "@+@@@@@@@@@@", 18 | "@+@@@@@@@@@@", 19 | "@###########", 20 | "............"}; 21 | -------------------------------------------------------------------------------- /xfwm4/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_left_inactive_xpm[] = { 3 | "12 12 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | "@+@@@ ", 10 | "@+@@@ ", 11 | "@+@@@ ", 12 | "@+@@@ ", 13 | "@+@@@ ", 14 | "@+@@@ ", 15 | "@+@@@ ", 16 | "@+@@@@@@@@@@", 17 | "@+@@@@@@@@@@", 18 | "@+@@@@@@@@@@", 19 | "@###########", 20 | "............"}; 21 | -------------------------------------------------------------------------------- /xfwm4/bottom-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_active_xpm[] = { 3 | "12 12 4 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | " @@@#.", 9 | " @@@#.", 10 | " @@@#.", 11 | " @@@#.", 12 | " @@@#.", 13 | " @@@#.", 14 | " @@@#.", 15 | "@@@@@@@@@@#.", 16 | "@@@@@@@@@@#.", 17 | "@@@@@@@@@@#.", 18 | "###########.", 19 | "............"}; 20 | -------------------------------------------------------------------------------- /xfwm4/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bottom_right_inactive_xpm[] = { 3 | "12 12 4 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | " @@@#.", 9 | " @@@#.", 10 | " @@@#.", 11 | " @@@#.", 12 | " @@@#.", 13 | " @@@#.", 14 | " @@@#.", 15 | "@@@@@@@@@@#.", 16 | "@@@@@@@@@@#.", 17 | "@@@@@@@@@@#.", 18 | "###########.", 19 | "............"}; 20 | -------------------------------------------------------------------------------- /xfwm4/close-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_active_xpm[] = { 3 | "18 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " +++++++++++++++.", 16 | " +@@@@@@@@@@@@@#.", 17 | " +@@@@@@@@@@@@@#.", 18 | " +@@@..@@@@..@@#.", 19 | " +@@@@..@@..@@@#.", 20 | " +@@@@@....@@@@#.", 21 | " +@@@@@@..@@@@@#.", 22 | " +@@@@@....@@@@#.", 23 | " +@@@@..@@..@@@#.", 24 | " +@@@..@@@@..@@#.", 25 | " +@@@@@@@@@@@@@#.", 26 | " +@@@@@@@@@@@@@#.", 27 | " +##############.", 28 | " ................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /xfwm4/close-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_inactive_xpm[] = { 3 | "18 24 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " +++++++++++++++.", 16 | " +@@@@@@@@@@@@@#.", 17 | " +@@@@@@@@@@@@@#.", 18 | " +@@@..@@@@..@@#.", 19 | " +@@@@..@@..@@@#.", 20 | " +@@@@@....@@@@#.", 21 | " +@@@@@@..@@@@@#.", 22 | " +@@@@@....@@@@#.", 23 | " +@@@@..@@..@@@#.", 24 | " +@@@..@@@@..@@#.", 25 | " +@@@@@@@@@@@@@#.", 26 | " +@@@@@@@@@@@@@#.", 27 | " +##############.", 28 | " ................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/close-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * close_pressed_xpm[] = { 3 | "18 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #B2B2B2 s active_shadow_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #FFFFFF s active_hilight_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " .++++++++++++++#", 16 | " .+@@@@@@@@@@@@@#", 17 | " .+@@@@@@@@@@@@@#", 18 | " .+@@@@@@@@@@@@@#", 19 | " .+@@@..@@@@..@@#", 20 | " .+@@@@..@@..@@@#", 21 | " .+@@@@@....@@@@#", 22 | " .+@@@@@@..@@@@@#", 23 | " .+@@@@@....@@@@#", 24 | " .+@@@@..@@..@@@#", 25 | " .+@@@..@@@@..@@#", 26 | " .+@@@@@@@@@@@@@#", 27 | " .+@@@@@@@@@@@@@#", 28 | " .###############", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_active_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@@@@@@@@@@@@#.", 18 | "+@@@@@@@@@@@@@#.", 19 | "+@@@@@@@@@@@@@#.", 20 | "+@@@@@@@@@@@@@#.", 21 | "+@@@@@@@@@@@@@#.", 22 | "+@@@@@@@@@@@@@#.", 23 | "+@@@@@@@@@@@@@#.", 24 | "+@@.......@@@@#.", 25 | "+@@.......@@@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/hide-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_active_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@@@@@@@@@@@@#.", 18 | "+@@@@@@@@@@@@@#.", 19 | "+@@@@@@@@@@@@@#.", 20 | "+@@@@@@@@@@@@@#.", 21 | "+@@@@@@@@@@@@@#.", 22 | "+@@@@@@@@@@@@@#.", 23 | "+@@@@@@@@@@@@@#.", 24 | "+@@.......@@@@#.", 25 | "+@@.......@@@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hide_pressed_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #B2B2B2 s active_shadow_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #FFFFFF s active_hilight_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "................", 16 | ".+@@@@@@@@@@@@@#", 17 | ".+@@@@@@@@@@@@@#", 18 | ".+@@@@@@@@@@@@@#", 19 | ".+@@@@@@@@@@@@@#", 20 | ".+@@@@@@@@@@@@@#", 21 | ".+@@@@@@@@@@@@@#", 22 | ".+@@@@@@@@@@@@@#", 23 | ".+@@@@@@@@@@@@@#", 24 | ".+@@@@@@@@@@@@@#", 25 | ".+@@.......@@@@#", 26 | ".+@@.......@@@@#", 27 | ".+@@@@@@@@@@@@@#", 28 | ".###############", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_active_xpm[] = { 3 | "5 1 3 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "@+@@@"}; -------------------------------------------------------------------------------- /xfwm4/left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * left_inactive_xpm[] = { 3 | "5 1 3 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "@+@@@"}; -------------------------------------------------------------------------------- /xfwm4/maximize-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_active_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@.........@@#.", 18 | "+@@.........@@#.", 19 | "+@@.@@@@@@@.@@#.", 20 | "+@@.@@@@@@@.@@#.", 21 | "+@@.@@@@@@@.@@#.", 22 | "+@@.@@@@@@@.@@#.", 23 | "+@@.@@@@@@@.@@#.", 24 | "+@@.@@@@@@@.@@#.", 25 | "+@@.........@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/maximize-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_inactive_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@.........@@#.", 18 | "+@@.........@@#.", 19 | "+@@.@@@@@@@.@@#.", 20 | "+@@.@@@@@@@.@@#.", 21 | "+@@.@@@@@@@.@@#.", 22 | "+@@.@@@@@@@.@@#.", 23 | "+@@.@@@@@@@.@@#.", 24 | "+@@.@@@@@@@.@@#.", 25 | "+@@.........@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/maximize-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_pressed_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #B2B2B2 s active_shadow_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #FFFFFF s active_hilight_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "................", 16 | ".+@@@@@@@@@@@@@#", 17 | ".+@@@@@@@@@@@@@#", 18 | ".+@@.........@@#", 19 | ".+@@.........@@#", 20 | ".+@@.@@@@@@@.@@#", 21 | ".+@@.@@@@@@@.@@#", 22 | ".+@@.@@@@@@@.@@#", 23 | ".+@@.@@@@@@@.@@#", 24 | ".+@@.@@@@@@@.@@#", 25 | ".+@@.@@@@@@@.@@#", 26 | ".+@@.........@@#", 27 | ".+@@@@@@@@@@@@@#", 28 | ".###############", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_active_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@@@......@@@#.", 18 | "+@@@@......@@@#.", 19 | "+@@@@.@@@@.@@@#.", 20 | "+@@......@.@@@#.", 21 | "+@@......@.@@@#.", 22 | "+@@.@@@@...@@@#.", 23 | "+@@.@@@@.@@@@@#.", 24 | "+@@.@@@@.@@@@@#.", 25 | "+@@......@@@@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_inactive_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "+++++++++++++++.", 16 | "+@@@@@@@@@@@@@#.", 17 | "+@@@@......@@@#.", 18 | "+@@@@......@@@#.", 19 | "+@@@@.@@@@.@@@#.", 20 | "+@@......@.@@@#.", 21 | "+@@......@.@@@#.", 22 | "+@@.@@@@...@@@#.", 23 | "+@@.@@@@.@@@@@#.", 24 | "+@@.@@@@.@@@@@#.", 25 | "+@@......@@@@@#.", 26 | "+@@@@@@@@@@@@@#.", 27 | "+##############.", 28 | "................", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * maximize_toggled_pressed_xpm[] = { 3 | "16 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #B2B2B2 s active_shadow_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #FFFFFF s active_hilight_2", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | "................", 16 | ".+@@@@@@@@@@@@@#", 17 | ".+@@@@@@@@@@@@@#", 18 | ".+@@@@......@@@#", 19 | ".+@@@@......@@@#", 20 | ".+@@@@.@@@@.@@@#", 21 | ".+@@......@.@@@#", 22 | ".+@@......@.@@@#", 23 | ".+@@.@@@@...@@@#", 24 | ".+@@.@@@@.@@@@@#", 25 | ".+@@.@@@@.@@@@@#", 26 | ".+@@......@@@@@#", 27 | ".+@@@@@@@@@@@@@#", 28 | ".###############", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | 34 | -------------------------------------------------------------------------------- /xfwm4/menu-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_active_xpm[] = { 3 | "15 15 2 1", 4 | " c None", 5 | "$ c #8CB754 s active_color_1", 6 | "$$$$$$$$$$$$$$$", 7 | "$$$$$$$$$$$$$$$", 8 | "$$$$$$$$$$$$$$$", 9 | "$$$$$$$$$$$$$$$", 10 | "$$$$$$$$$$$$$$$", 11 | "$$$$$$$$$$$$$$$", 12 | "$$$$$$$$$$$$$$$", 13 | "$$$$$$$$$$$$$$$", 14 | "$$$$$$$$$$$$$$$", 15 | "$$$$$$$$$$$$$$$", 16 | "$$$$$$$$$$$$$$$", 17 | "$$$$$$$$$$$$$$$", 18 | "$$$$$$$$$$$$$$$", 19 | "$$$$$$$$$$$$$$$", 20 | "$$$$$$$$$$$$$$$"}; 21 | -------------------------------------------------------------------------------- /xfwm4/menu-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_active_xpm[] = { 3 | "15 15 2 1", 4 | " c None", 5 | "$ c #8CB754 s inactive_color_1", 6 | "$$$$$$$$$$$$$$$", 7 | "$$$$$$$$$$$$$$$", 8 | "$$$$$$$$$$$$$$$", 9 | "$$$$$$$$$$$$$$$", 10 | "$$$$$$$$$$$$$$$", 11 | "$$$$$$$$$$$$$$$", 12 | "$$$$$$$$$$$$$$$", 13 | "$$$$$$$$$$$$$$$", 14 | "$$$$$$$$$$$$$$$", 15 | "$$$$$$$$$$$$$$$", 16 | "$$$$$$$$$$$$$$$", 17 | "$$$$$$$$$$$$$$$", 18 | "$$$$$$$$$$$$$$$", 19 | "$$$$$$$$$$$$$$$", 20 | "$$$$$$$$$$$$$$$"}; 21 | -------------------------------------------------------------------------------- /xfwm4/menu-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * menu_pressed_xpm[] = { 3 | "15 15 2 1", 4 | " c None", 5 | "$ c #8CB754 s active_color_1", 6 | "$$$$$$$$$$$$$$$", 7 | "$$$$$$$$$$$$$$$", 8 | "$$$$$$$$$$$$$$$", 9 | "$$$$$$$$$$$$$$$", 10 | "$$$$$$$$$$$$$$$", 11 | "$$$$$$$$$$$$$$$", 12 | "$$$$$$$$$$$$$$$", 13 | "$$$$$$$$$$$$$$$", 14 | "$$$$$$$$$$$$$$$", 15 | "$$$$$$$$$$$$$$$", 16 | "$$$$$$$$$$$$$$$", 17 | "$$$$$$$$$$$$$$$", 18 | "$$$$$$$$$$$$$$$", 19 | "$$$$$$$$$$$$$$$", 20 | "$$$$$$$$$$$$$$$"}; 21 | -------------------------------------------------------------------------------- /xfwm4/right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_active_xpm[] = { 3 | "5 1 4 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "@@@#."}; 9 | -------------------------------------------------------------------------------- /xfwm4/right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_inactive_xpm[] = { 3 | "5 1 4 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "@@@#."}; 9 | -------------------------------------------------------------------------------- /xfwm4/shade-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/shade-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/shade-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/stick-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/stick-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/stick-pressed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dummy_button_xpm[] = { 3 | "1 1 1 1", 4 | " c None", 5 | " "}; 6 | 7 | -------------------------------------------------------------------------------- /xfwm4/themerc: -------------------------------------------------------------------------------- 1 | active_border_color=#000000 2 | button_layout=O|HMC 3 | button_offset=1 4 | button_spacing=0 5 | full_width_title=true 6 | inactive_border_color=#000000 7 | maximized_offset=2 8 | show_app_icon=true 9 | title_alignment=left 10 | title_horizontal_offset=2 11 | title_vertical_offset_active=1 12 | title_vertical_offset_inactive=1 13 | -------------------------------------------------------------------------------- /xfwm4/title-1-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_active_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "$ c #8CB754 s active_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-1-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_inactive_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "$ c #8CB754 s inactive_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-2-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_active_xpm[] = { 3 | "2 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "$ c #8CB754 s active_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-2-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_inactive_xpm[] = { 3 | "2 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "$ c #8CB754 s inactive_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-3-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_active_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "$ c #8CB754 s active_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-3-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_inactive_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "$ c #8CB754 s inactive_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-4-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_active_xpm[] = { 3 | "2 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "$ c #8CB754 s active_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-4-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_inactive_xpm[] = { 3 | "2 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "$ c #8CB754 s inactive_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-5-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_active_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 8 | "$ c #8CB754 s active_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/title-5-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * title_middle_inactive_xpm[] = { 3 | "5 24 5 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 8 | "$ c #8CB754 s inactive_color_1", 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 | -------------------------------------------------------------------------------- /xfwm4/top-left-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_active_xpm[] = { 3 | "4 24 4 1", 4 | " c None", 5 | "+ c #FFFFFF s active_hilight_2", 6 | "@ c #D8D8D8 s active_color_2", 7 | "# c #B2B2B2 s active_shadow_2", 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 | -------------------------------------------------------------------------------- /xfwm4/top-left-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_left_inactive_xpm[] = { 3 | "4 24 4 1", 4 | " c None", 5 | "+ c #FFFFFF s inactive_hilight_2", 6 | "@ c #D8D8D8 s inactive_color_2", 7 | "# c #B2B2B2 s inactive_shadow_2", 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 | -------------------------------------------------------------------------------- /xfwm4/top-right-active.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_active_xpm[] = { 3 | "4 24 5 1", 4 | " c None", 5 | ". c #000000 s active_border_color", 6 | "+ c #FFFFFF s active_hilight_2", 7 | "@ c #D8D8D8 s active_color_2", 8 | "# c #B2B2B2 s active_shadow_2", 9 | "@@@.", 10 | "++#.", 11 | "@@#.", 12 | "@@#.", 13 | "@@#.", 14 | "@@#.", 15 | "@@#.", 16 | "@@#.", 17 | "@@#.", 18 | "@@#.", 19 | "@@#.", 20 | "@@#.", 21 | "@@#.", 22 | "@@#.", 23 | "@@#.", 24 | "@@#.", 25 | "@@#.", 26 | "@@#.", 27 | "@@#.", 28 | "@@#.", 29 | "@@#.", 30 | "@@#.", 31 | "@@#.", 32 | "@@#."}; 33 | -------------------------------------------------------------------------------- /xfwm4/top-right-inactive.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * top_right_inactive_xpm[] = { 3 | "4 24 5 1", 4 | " c None", 5 | ". c #000000 s inactive_border_color", 6 | "+ c #FFFFFF s inactive_hilight_2", 7 | "@ c #D8D8D8 s inactive_color_2", 8 | "# c #B2B2B2 s inactive_shadow_2", 9 | "@@@.", 10 | "++#.", 11 | "@@#.", 12 | "@@#.", 13 | "@@#.", 14 | "@@#.", 15 | "@@#.", 16 | "@@#.", 17 | "@@#.", 18 | "@@#.", 19 | "@@#.", 20 | "@@#.", 21 | "@@#.", 22 | "@@#.", 23 | "@@#.", 24 | "@@#.", 25 | "@@#.", 26 | "@@#.", 27 | "@@#.", 28 | "@@#.", 29 | "@@#.", 30 | "@@#.", 31 | "@@#.", 32 | "@@#."}; 33 | --------------------------------------------------------------------------------