├── .gitignore ├── LICENSE.CC ├── LICENSE.GPL ├── README ├── gtk-2.0 └── gtkrc ├── gtk-3.0 ├── apps │ ├── gnome-applications.css │ ├── unity.css │ └── xfce.css ├── assets │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked.png │ ├── grid-selection-checked.png │ ├── grid-selection-unchecked.png │ ├── menuitem-checkbox-checked-insensitive.png │ ├── menuitem-checkbox-checked-selected.png │ ├── menuitem-checkbox-checked.png │ ├── menuitem-checkbox-mixed-insensitive.png │ ├── menuitem-checkbox-mixed-selected.png │ ├── menuitem-checkbox-mixed.png │ ├── menuitem-radio-checked-insensitive.png │ ├── menuitem-radio-checked-selected.png │ ├── menuitem-radio-checked.png │ ├── progress-vertical.png │ ├── progress.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed.png │ ├── radio-selected-insensitive.png │ ├── radio-selected.png │ ├── radio-unselected-insensitive.png │ └── radio-unselected.png ├── gtk-widgets-assets.css ├── gtk-widgets.css ├── gtk.css └── settings.ini ├── index.theme ├── metacity-1 ├── close_focused_normal.png ├── close_focused_prelight.png ├── close_focused_pressed.png ├── close_unfocused.png ├── maximize_focused_normal.png ├── maximize_focused_prelight.png ├── maximize_focused_pressed.png ├── maximize_unfocused.png ├── metacity-theme-2.xml ├── metacity-theme-3.xml ├── minimize_focused_normal.png ├── minimize_focused_prelight.png ├── minimize_focused_pressed.png ├── minimize_unfocused.png ├── shade_focused_normal.png ├── shade_focused_prelight.png ├── shade_focused_pressed.png ├── shade_unfocused.png ├── unmaximize_focused_normal.png ├── unmaximize_focused_prelight.png ├── unmaximize_focused_pressed.png ├── unmaximize_unfocused.png ├── unshade_focused_normal.png ├── unshade_focused_prelight.png ├── unshade_focused_pressed.png └── unshade_unfocused.png └── xfwm4 ├── bottom-active.png ├── bottom-active.xpm ├── bottom-inactive.png ├── bottom-inactive.xpm ├── bottom-left-active.png ├── bottom-left-active.xpm ├── bottom-left-inactive.png ├── bottom-left-inactive.xpm ├── bottom-right-active.png ├── bottom-right-active.xpm ├── bottom-right-inactive.png ├── bottom-right-inactive.xpm ├── close-active.png ├── close-active.xpm ├── close-inactive.png ├── close-inactive.xpm ├── close-prelight.png ├── close-prelight.xpm ├── close-pressed.png ├── close-pressed.xpm ├── hide-active.png ├── hide-active.xpm ├── hide-inactive.png ├── hide-inactive.xpm ├── hide-prelight.png ├── hide-prelight.xpm ├── hide-pressed.png ├── hide-pressed.xpm ├── left-active.png ├── left-active.xpm ├── left-inactive.png ├── left-inactive.xpm ├── maximize-active.png ├── maximize-active.xpm ├── maximize-inactive.png ├── maximize-inactive.xpm ├── maximize-prelight.png ├── maximize-prelight.xpm ├── maximize-pressed.png ├── maximize-pressed.xpm ├── maximize-toggled-active.png ├── maximize-toggled-active.xpm ├── maximize-toggled-inactive.png ├── maximize-toggled-inactive.xpm ├── maximize-toggled-prelight.png ├── maximize-toggled-prelight.xpm ├── maximize-toggled-pressed.png ├── maximize-toggled-pressed.xpm ├── menu-active.png ├── menu-active.xpm ├── menu-inactive.png ├── menu-inactive.xpm ├── menu-prelight.png ├── menu-prelight.xpm ├── menu-pressed.png ├── menu-pressed.xpm ├── right-active.png ├── right-active.xpm ├── right-inactive.png ├── right-inactive.xpm ├── shade-active.png ├── shade-active.xpm ├── shade-inactive.png ├── shade-inactive.xpm ├── shade-prelight.png ├── shade-prelight.xpm ├── shade-pressed.png ├── shade-pressed.xpm ├── shade-toggle-pressed.png ├── shade-toggled-active.png ├── shade-toggled-active.xpm ├── shade-toggled-inactive.png ├── shade-toggled-inactive.xpm ├── shade-toggled-prelight.png ├── shade-toggled-prelight.xpm ├── shade-toggled-pressed.png ├── shade-toggled-pressed.xpm ├── stick-active.png ├── stick-active.xpm ├── stick-inactive.png ├── stick-inactive.xpm ├── stick-prelight.png ├── stick-prelight.xpm ├── stick-pressed.png ├── stick-pressed.xpm ├── stick-toggled-active.png ├── stick-toggled-active.xpm ├── stick-toggled-inactive.png ├── stick-toggled-inactive.xpm ├── stick-toggled-prelight.png ├── stick-toggled-prelight.xpm ├── stick-toggled-pressed.png ├── stick-toggled-pressed.xpm ├── themerc ├── title-1-active.png ├── title-1-active.xpm ├── title-1-inactive.png ├── title-1-inactive.xpm ├── title-2-active.png ├── title-2-active.xpm ├── title-2-inactive.png ├── title-2-inactive.xpm ├── title-3-active.png ├── title-3-active.xpm ├── title-3-inactive.png ├── title-3-inactive.xpm ├── title-4-active.png ├── title-4-active.xpm ├── title-4-inactive.png ├── title-4-inactive.xpm ├── title-5-active.png ├── title-5-active.xpm ├── title-5-inactive.png ├── title-5-inactive.xpm ├── top-left-active.png ├── top-left-active.xpm ├── top-left-inactive.png ├── top-left-inactive.xpm ├── top-right-active.png ├── top-right-active.xpm ├── top-right-inactive.png └── top-right-inactive.xpm /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.CC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/LICENSE.CC -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/README -------------------------------------------------------------------------------- /gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /gtk-3.0/apps/gnome-applications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/apps/gnome-applications.css -------------------------------------------------------------------------------- /gtk-3.0/apps/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/apps/unity.css -------------------------------------------------------------------------------- /gtk-3.0/apps/xfce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/apps/xfce.css -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/grid-selection-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/grid-selection-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/grid-selection-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/grid-selection-unchecked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-checked-selected.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-mixed-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-mixed-selected.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-checkbox-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-radio-checked-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-radio-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-radio-checked-selected.png -------------------------------------------------------------------------------- /gtk-3.0/assets/menuitem-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/menuitem-radio-checked.png -------------------------------------------------------------------------------- /gtk-3.0/assets/progress-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/progress-vertical.png -------------------------------------------------------------------------------- /gtk-3.0/assets/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/progress.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-selected-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-selected-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-selected.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unselected-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-unselected-insensitive.png -------------------------------------------------------------------------------- /gtk-3.0/assets/radio-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/assets/radio-unselected.png -------------------------------------------------------------------------------- /gtk-3.0/gtk-widgets-assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/gtk-widgets-assets.css -------------------------------------------------------------------------------- /gtk-3.0/gtk-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/gtk-widgets.css -------------------------------------------------------------------------------- /gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/index.theme -------------------------------------------------------------------------------- /metacity-1/close_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/close_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/close_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/close_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/close_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/close_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/close_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/close_unfocused.png -------------------------------------------------------------------------------- /metacity-1/maximize_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/maximize_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/maximize_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/maximize_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/maximize_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/maximize_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/maximize_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/maximize_unfocused.png -------------------------------------------------------------------------------- /metacity-1/metacity-theme-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/metacity-theme-2.xml -------------------------------------------------------------------------------- /metacity-1/metacity-theme-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/metacity-theme-3.xml -------------------------------------------------------------------------------- /metacity-1/minimize_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/minimize_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/minimize_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/minimize_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/minimize_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/minimize_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/minimize_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/minimize_unfocused.png -------------------------------------------------------------------------------- /metacity-1/shade_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/shade_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/shade_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/shade_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/shade_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/shade_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/shade_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/shade_unfocused.png -------------------------------------------------------------------------------- /metacity-1/unmaximize_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unmaximize_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/unmaximize_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unmaximize_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/unmaximize_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unmaximize_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/unmaximize_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unmaximize_unfocused.png -------------------------------------------------------------------------------- /metacity-1/unshade_focused_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unshade_focused_normal.png -------------------------------------------------------------------------------- /metacity-1/unshade_focused_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unshade_focused_prelight.png -------------------------------------------------------------------------------- /metacity-1/unshade_focused_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unshade_focused_pressed.png -------------------------------------------------------------------------------- /metacity-1/unshade_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/metacity-1/unshade_unfocused.png -------------------------------------------------------------------------------- /xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-active.xpm -------------------------------------------------------------------------------- /xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /xfwm4/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-left-active.xpm -------------------------------------------------------------------------------- /xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /xfwm4/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /xfwm4/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-right-active.xpm -------------------------------------------------------------------------------- /xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /xfwm4/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-active.png -------------------------------------------------------------------------------- /xfwm4/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-active.xpm -------------------------------------------------------------------------------- /xfwm4/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-inactive.png -------------------------------------------------------------------------------- /xfwm4/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /xfwm4/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /xfwm4/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/close-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-active.png -------------------------------------------------------------------------------- /xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-active.xpm -------------------------------------------------------------------------------- /xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-inactive.png -------------------------------------------------------------------------------- /xfwm4/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-prelight.png -------------------------------------------------------------------------------- /xfwm4/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-pressed.png -------------------------------------------------------------------------------- /xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/hide-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/left-active.png -------------------------------------------------------------------------------- /xfwm4/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/left-active.xpm -------------------------------------------------------------------------------- /xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /xfwm4/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/left-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-active.png -------------------------------------------------------------------------------- /xfwm4/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-active.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-inactive.png -------------------------------------------------------------------------------- /xfwm4/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-prelight.png -------------------------------------------------------------------------------- /xfwm4/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-pressed.png -------------------------------------------------------------------------------- /xfwm4/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-active.png -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-active.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-inactive.png -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /xfwm4/maximize-toggled-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/maximize-toggled-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-active.png -------------------------------------------------------------------------------- /xfwm4/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-active.xpm -------------------------------------------------------------------------------- /xfwm4/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-inactive.png -------------------------------------------------------------------------------- /xfwm4/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-prelight.png -------------------------------------------------------------------------------- /xfwm4/menu-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-pressed.png -------------------------------------------------------------------------------- /xfwm4/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/menu-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/right-active.png -------------------------------------------------------------------------------- /xfwm4/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/right-active.xpm -------------------------------------------------------------------------------- /xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /xfwm4/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/right-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-active.png -------------------------------------------------------------------------------- /xfwm4/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-active.xpm -------------------------------------------------------------------------------- /xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-inactive.png -------------------------------------------------------------------------------- /xfwm4/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-prelight.png -------------------------------------------------------------------------------- /xfwm4/shade-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-pressed.png -------------------------------------------------------------------------------- /xfwm4/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/shade-toggle-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggle-pressed.png -------------------------------------------------------------------------------- /xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-active.png -------------------------------------------------------------------------------- /xfwm4/shade-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-active.xpm -------------------------------------------------------------------------------- /xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-inactive.png -------------------------------------------------------------------------------- /xfwm4/shade-toggled-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-prelight.png -------------------------------------------------------------------------------- /xfwm4/shade-toggled-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-pressed.png -------------------------------------------------------------------------------- /xfwm4/shade-toggled-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/shade-toggled-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-active.png -------------------------------------------------------------------------------- /xfwm4/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-active.xpm -------------------------------------------------------------------------------- /xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-inactive.png -------------------------------------------------------------------------------- /xfwm4/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-prelight.png -------------------------------------------------------------------------------- /xfwm4/stick-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-pressed.png -------------------------------------------------------------------------------- /xfwm4/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-active.png -------------------------------------------------------------------------------- /xfwm4/stick-toggled-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-active.xpm -------------------------------------------------------------------------------- /xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-inactive.png -------------------------------------------------------------------------------- /xfwm4/stick-toggled-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-prelight.png -------------------------------------------------------------------------------- /xfwm4/stick-toggled-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-prelight.xpm -------------------------------------------------------------------------------- /xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-pressed.png -------------------------------------------------------------------------------- /xfwm4/stick-toggled-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/stick-toggled-pressed.xpm -------------------------------------------------------------------------------- /xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/themerc -------------------------------------------------------------------------------- /xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /xfwm4/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-1-active.xpm -------------------------------------------------------------------------------- /xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /xfwm4/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-1-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /xfwm4/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-2-active.xpm -------------------------------------------------------------------------------- /xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /xfwm4/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-2-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /xfwm4/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-3-active.xpm -------------------------------------------------------------------------------- /xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /xfwm4/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-3-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /xfwm4/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-4-active.xpm -------------------------------------------------------------------------------- /xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /xfwm4/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-4-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /xfwm4/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-5-active.xpm -------------------------------------------------------------------------------- /xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /xfwm4/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/title-5-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-left-active.png -------------------------------------------------------------------------------- /xfwm4/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-left-active.xpm -------------------------------------------------------------------------------- /xfwm4/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-left-inactive.png -------------------------------------------------------------------------------- /xfwm4/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-left-inactive.xpm -------------------------------------------------------------------------------- /xfwm4/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-right-active.png -------------------------------------------------------------------------------- /xfwm4/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-right-active.xpm -------------------------------------------------------------------------------- /xfwm4/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-right-inactive.png -------------------------------------------------------------------------------- /xfwm4/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimmerproject/Albatross/HEAD/xfwm4/top-right-inactive.xpm --------------------------------------------------------------------------------