├── .gitmodules ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.md ├── assets ├── GNOME-40.png ├── demo-blue.jpg ├── demo-colors.jpg ├── demo-green.jpg ├── demo-red.jpg ├── demo-yellow.jpg ├── flat-remix-gnome-dark.png ├── flat-remix-gnome-darkest.png ├── flat-remix-gnome-miami-dark.png ├── flat-remix-gnome-miami.png ├── gdm-session-selector.jpg ├── login.png ├── logo.png ├── logo.svg ├── preview-small.png ├── preview-wide.png ├── preview.png └── preview.xcf ├── generate-color-theme.sh ├── share ├── glib-2.0 │ └── schemas │ │ └── 90_flat-remix-gnome.gschema.override ├── gnome-shell │ └── modes │ │ └── flat-remix.json ├── gtksourceview-3.0 │ └── styles │ │ ├── Flat-Remix-Dark.xml │ │ └── Flat-Remix-Light.xml ├── gtksourceview-4 │ └── styles │ │ ├── Flat-Remix-Dark.xml │ │ └── Flat-Remix-Light.xml ├── gtksourceview-5 │ └── styles │ │ ├── Flat-Remix-Dark.xml │ │ └── Flat-Remix-Light.xml ├── wayland-sessions │ └── flat-remix-gnome-wayland.desktop └── xsessions │ └── flat-remix-gnome.desktop ├── src ├── Makefile ├── Makefile.inc ├── assets-renderer │ ├── Makefile │ └── assets │ │ ├── calendar-today-light.svg │ │ ├── calendar-today.svg │ │ ├── close-window-active.svg │ │ ├── close-window-hover.svg │ │ ├── close-window.svg │ │ ├── gnome-shell-start.svg │ │ └── process-working.svg ├── gresource │ ├── Makefile │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-dark.css │ ├── gnome-shell-high-contrast-dark.css │ ├── gnome-shell-high-contrast.css │ ├── gnome-shell-start.svg │ ├── gnome-shell-theme.gresource │ ├── gnome-shell-theme.gresource.xml │ ├── gnome-shell.css │ ├── login-background │ ├── pad-osd.css │ └── process-working.svg └── sass │ ├── Makefile │ ├── gnome-shell-dark-fullpanel.scss │ ├── gnome-shell-dark.scss │ ├── gnome-shell-darkest-fullpanel.scss │ ├── gnome-shell-darkest.scss │ ├── gnome-shell-fullpanel.scss │ ├── gnome-shell-miami-dark-fullpanel.scss │ ├── gnome-shell-miami-dark.scss │ ├── gnome-shell-miami-fullpanel.scss │ ├── gnome-shell-miami.scss │ ├── gnome-shell.scss │ └── gnome-shell │ ├── _colors.scss │ ├── _common-tweaks.scss │ └── upstream │ ├── gnome-shell-high-contrast.scss │ ├── gnome-shell-sass │ ├── _colors.scss │ ├── _common.scss │ ├── _common.scss.patch │ ├── _default-colors.scss │ ├── _drawing.scss │ ├── _palette.scss │ ├── _widgets.scss │ └── widgets │ │ ├── _a11y.scss │ │ ├── _app-grid.scss │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _calendar.scss │ │ ├── _check-box.scss │ │ ├── _corner-ripple.scss │ │ ├── _dash.scss │ │ ├── _dialogs.scss │ │ ├── _entries.scss │ │ ├── _ibus-popup.scss │ │ ├── _keyboard.scss │ │ ├── _login-lock.scss │ │ ├── _looking-glass.scss │ │ ├── _message-list.scss │ │ ├── _misc.scss │ │ ├── _notifications.scss │ │ ├── _osd.scss │ │ ├── _overview.scss │ │ ├── _panel.scss │ │ ├── _popovers.scss │ │ ├── _quick-settings.scss │ │ ├── _screenshot.scss │ │ ├── _scrollbars.scss │ │ ├── _search-entry.scss │ │ ├── _search-results.scss │ │ ├── _slider.scss │ │ ├── _switcher-popup.scss │ │ ├── _switches.scss │ │ ├── _window-picker.scss │ │ ├── _workspace-switcher.scss │ │ └── _workspace-thumbnails.scss │ ├── pad-osd.css │ └── sync.sh └── themes ├── Flat-Remix-Dark-fullPanel └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Dark └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Darkest-fullPanel └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Darkest └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Light-fullPanel └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Light └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Miami-Dark-fullPanel └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Miami-Dark └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css ├── Flat-Remix-Miami-fullPanel └── gnome-shell │ ├── assets │ ├── calendar-today-light.svg │ ├── calendar-today.svg │ ├── close-window-active.svg │ ├── close-window-hover.svg │ ├── close-window.svg │ ├── gnome-shell-start.svg │ └── process-working.svg │ └── gnome-shell.css └── Flat-Remix-Miami └── gnome-shell ├── assets ├── calendar-today-light.svg ├── calendar-today.svg ├── close-window-active.svg ├── close-window-hover.svg ├── close-window.svg ├── gnome-shell-start.svg └── process-working.svg └── gnome-shell.css /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/README.md -------------------------------------------------------------------------------- /assets/GNOME-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/GNOME-40.png -------------------------------------------------------------------------------- /assets/demo-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/demo-blue.jpg -------------------------------------------------------------------------------- /assets/demo-colors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/demo-colors.jpg -------------------------------------------------------------------------------- /assets/demo-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/demo-green.jpg -------------------------------------------------------------------------------- /assets/demo-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/demo-red.jpg -------------------------------------------------------------------------------- /assets/demo-yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/demo-yellow.jpg -------------------------------------------------------------------------------- /assets/flat-remix-gnome-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/flat-remix-gnome-dark.png -------------------------------------------------------------------------------- /assets/flat-remix-gnome-darkest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/flat-remix-gnome-darkest.png -------------------------------------------------------------------------------- /assets/flat-remix-gnome-miami-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/flat-remix-gnome-miami-dark.png -------------------------------------------------------------------------------- /assets/flat-remix-gnome-miami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/flat-remix-gnome-miami.png -------------------------------------------------------------------------------- /assets/gdm-session-selector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/gdm-session-selector.jpg -------------------------------------------------------------------------------- /assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/login.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/preview-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/preview-small.png -------------------------------------------------------------------------------- /assets/preview-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/preview-wide.png -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/preview.png -------------------------------------------------------------------------------- /assets/preview.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/assets/preview.xcf -------------------------------------------------------------------------------- /generate-color-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/generate-color-theme.sh -------------------------------------------------------------------------------- /share/glib-2.0/schemas/90_flat-remix-gnome.gschema.override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/glib-2.0/schemas/90_flat-remix-gnome.gschema.override -------------------------------------------------------------------------------- /share/gnome-shell/modes/flat-remix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/gnome-shell/modes/flat-remix.json -------------------------------------------------------------------------------- /share/gtksourceview-3.0/styles/Flat-Remix-Dark.xml: -------------------------------------------------------------------------------- 1 | ../../gtksourceview-4/styles/Flat-Remix-Dark.xml -------------------------------------------------------------------------------- /share/gtksourceview-3.0/styles/Flat-Remix-Light.xml: -------------------------------------------------------------------------------- 1 | ../../gtksourceview-4/styles/Flat-Remix-Light.xml -------------------------------------------------------------------------------- /share/gtksourceview-4/styles/Flat-Remix-Dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/gtksourceview-4/styles/Flat-Remix-Dark.xml -------------------------------------------------------------------------------- /share/gtksourceview-4/styles/Flat-Remix-Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/gtksourceview-4/styles/Flat-Remix-Light.xml -------------------------------------------------------------------------------- /share/gtksourceview-5/styles/Flat-Remix-Dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/gtksourceview-5/styles/Flat-Remix-Dark.xml -------------------------------------------------------------------------------- /share/gtksourceview-5/styles/Flat-Remix-Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/gtksourceview-5/styles/Flat-Remix-Light.xml -------------------------------------------------------------------------------- /share/wayland-sessions/flat-remix-gnome-wayland.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/wayland-sessions/flat-remix-gnome-wayland.desktop -------------------------------------------------------------------------------- /share/xsessions/flat-remix-gnome.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/share/xsessions/flat-remix-gnome.desktop -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.inc: -------------------------------------------------------------------------------- 1 | OPTIPNG?=optipng -o7 --strip all --quiet 2 | SCSS?=sassc -------------------------------------------------------------------------------- /src/assets-renderer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/Makefile -------------------------------------------------------------------------------- /src/assets-renderer/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/calendar-today.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/close-window-active.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/close-window-hover.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/close-window.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /src/assets-renderer/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/assets-renderer/assets/process-working.svg -------------------------------------------------------------------------------- /src/gresource/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/Makefile -------------------------------------------------------------------------------- /src/gresource/calendar-today-light.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /src/gresource/calendar-today.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/calendar-today.svg -------------------------------------------------------------------------------- /src/gresource/close-window-active.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/close-window-active.svg -------------------------------------------------------------------------------- /src/gresource/close-window-hover.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/close-window-hover.svg -------------------------------------------------------------------------------- /src/gresource/close-window.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/close-window.svg -------------------------------------------------------------------------------- /src/gresource/gnome-shell-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell-dark.css -------------------------------------------------------------------------------- /src/gresource/gnome-shell-high-contrast-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell-high-contrast-dark.css -------------------------------------------------------------------------------- /src/gresource/gnome-shell-high-contrast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell-high-contrast.css -------------------------------------------------------------------------------- /src/gresource/gnome-shell-start.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /src/gresource/gnome-shell-theme.gresource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell-theme.gresource -------------------------------------------------------------------------------- /src/gresource/gnome-shell-theme.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell-theme.gresource.xml -------------------------------------------------------------------------------- /src/gresource/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/gnome-shell.css -------------------------------------------------------------------------------- /src/gresource/login-background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/login-background -------------------------------------------------------------------------------- /src/gresource/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/gresource/pad-osd.css -------------------------------------------------------------------------------- /src/gresource/process-working.svg: -------------------------------------------------------------------------------- 1 | ../assets-renderer/assets/process-working.svg -------------------------------------------------------------------------------- /src/sass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/Makefile -------------------------------------------------------------------------------- /src/sass/gnome-shell-dark-fullpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-dark-fullpanel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-dark.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-darkest-fullpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-darkest-fullpanel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-darkest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-darkest.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-fullpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-fullpanel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-miami-dark-fullpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-miami-dark-fullpanel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-miami-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-miami-dark.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-miami-fullpanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-miami-fullpanel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell-miami.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell-miami.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/_colors.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/_common-tweaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/_common-tweaks.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-high-contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-high-contrast.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_colors.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_common.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_common.scss.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_common.scss.patch -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_default-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_default-colors.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_drawing.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_palette.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/_widgets.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_a11y.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_a11y.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_app-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_app-grid.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_base.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_buttons.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_calendar.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_check-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_check-box.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_corner-ripple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_corner-ripple.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_dash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_dash.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_dialogs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_dialogs.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_entries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_entries.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_ibus-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_ibus-popup.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_keyboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_keyboard.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_login-lock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_login-lock.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_looking-glass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_looking-glass.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_message-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_message-list.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_misc.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_notifications.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_osd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_osd.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_overview.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_panel.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_popovers.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_quick-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_quick-settings.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_screenshot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_screenshot.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_scrollbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_scrollbars.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_search-entry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_search-entry.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_search-results.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_search-results.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_slider.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_switcher-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_switcher-popup.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_switches.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_switches.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_window-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_window-picker.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_workspace-switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_workspace-switcher.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_workspace-thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/gnome-shell-sass/widgets/_workspace-thumbnails.scss -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/pad-osd.css -------------------------------------------------------------------------------- /src/sass/gnome-shell/upstream/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/src/sass/gnome-shell/upstream/sync.sh -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark-fullPanel/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark-fullPanel/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Dark/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Dark/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest-fullPanel/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest-fullPanel/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Darkest/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Darkest/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light-fullPanel/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light-fullPanel/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Light/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Light/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark-fullPanel/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-Dark/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-Dark/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami-fullPanel/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami-fullPanel/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/calendar-today-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/calendar-today-light.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/close-window-active.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/close-window-hover.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/close-window.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/gnome-shell-start.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /themes/Flat-Remix-Miami/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniruiz/flat-remix-gnome/HEAD/themes/Flat-Remix-Miami/gnome-shell/gnome-shell.css --------------------------------------------------------------------------------