├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── communitheme ├── HACKING ├── README ├── activities.svg ├── calendar-arrow-left.svg ├── calendar-arrow-right.svg ├── calendar-today.svg ├── checkbox-focused.svg ├── checkbox-off-focused.svg ├── checkbox-off.svg ├── checkbox.svg ├── close-window-active.svg ├── close-window-hover.svg ├── close-window.svg ├── close.svg ├── corner-ripple-ltr.svg ├── corner-ripple-rtl.svg ├── dash-placeholder.svg ├── dots.svg ├── filter-selected-ltr.svg ├── filter-selected-rtl.svg ├── gnome-shell-high-contrast.scss ├── gnome-shell-sass │ ├── COPYING │ ├── HACKING │ ├── NEWS │ ├── README │ ├── _colors.scss │ ├── _common.scss │ ├── _dock.scss │ ├── _drawing.scss │ ├── _high-contrast-colors.scss │ ├── _ubuntu-colors.scss │ └── gnome-shell-sass.doap ├── gnome-shell.scss ├── key-enter.svg ├── key-hide.svg ├── key-layout.svg ├── key-shift-latched-uppercase.svg ├── key-shift-uppercase.svg ├── key-shift.svg ├── lockscreen-gradient.svg ├── logged-in-indicator.svg ├── meson.build ├── message-indicator-symbolic.svg ├── no-events.svg ├── no-notifications.svg ├── noise-texture.png ├── pad-osd.css ├── page-indicator-active.svg ├── page-indicator-checked.svg ├── page-indicator-hover.svg ├── page-indicator-inactive.svg ├── process-working.svg ├── running-indicator.svg ├── source-button-border.svg ├── summary-counter.svg ├── toggle-off-hc.svg ├── toggle-off-intl.svg ├── toggle-off-us.svg ├── toggle-on-hc.svg ├── toggle-on-intl.svg ├── toggle-on-us.svg ├── ubuntu-appgrid-icon.svg ├── ubuntu-logo-icon.svg ├── ws-switch-arrow-down.svg └── ws-switch-arrow-up.svg ├── debian ├── changelog ├── compat ├── control ├── copyright ├── gnome-shell-communitheme.install ├── rules ├── source │ └── format ├── ubuntu-communitheme-session.gsettings-override ├── ubuntu-communitheme-session.install ├── ubuntu-communitheme-session.postinst └── ubuntu-communitheme-session.prerm ├── docs ├── gnome-tweaks.png ├── widget-factory1.png ├── widget-factory2.png ├── widget-factory3.png └── widget-factory4.png ├── meson.build ├── session ├── meson.build ├── ubuntu-communitheme-xorg.desktop ├── ubuntu-communitheme.desktop └── ubuntu-communitheme.json └── upstream ├── HACKING ├── README ├── calendar-arrow-left.svg ├── calendar-arrow-right.svg ├── calendar-today.svg ├── checkbox-focused.svg ├── checkbox-off-focused.svg ├── checkbox-off.svg ├── checkbox.svg ├── close-window-active.svg ├── close-window-hover.svg ├── close-window.svg ├── close.svg ├── corner-ripple-ltr.png ├── corner-ripple-rtl.png ├── dash-placeholder.svg ├── filter-selected-ltr.svg ├── filter-selected-rtl.svg ├── gnome-shell-high-contrast.scss ├── gnome-shell-sass ├── COPYING ├── HACKING ├── NEWS ├── README ├── _colors.scss ├── _common.scss ├── _drawing.scss ├── _high-contrast-colors.scss └── gnome-shell-sass.doap ├── gnome-shell.scss ├── key-enter.svg ├── key-hide.svg ├── key-layout.svg ├── key-shift-latched-uppercase.svg ├── key-shift-uppercase.svg ├── key-shift.svg ├── logged-in-indicator.svg ├── meson.build ├── message-indicator-symbolic.svg ├── no-events.svg ├── no-notifications.svg ├── noise-texture.png ├── pad-osd.css ├── page-indicator-active.svg ├── page-indicator-checked.svg ├── page-indicator-hover.svg ├── page-indicator-inactive.svg ├── process-working.svg ├── running-indicator.svg ├── source-button-border.svg ├── summary-counter.svg ├── toggle-off-hc.svg ├── toggle-off-intl.svg ├── toggle-off-us.svg ├── toggle-on-hc.svg ├── toggle-on-intl.svg ├── toggle-on-us.svg ├── ws-switch-arrow-down.png └── ws-switch-arrow-up.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/README.md -------------------------------------------------------------------------------- /communitheme/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/HACKING -------------------------------------------------------------------------------- /communitheme/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/README -------------------------------------------------------------------------------- /communitheme/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/activities.svg -------------------------------------------------------------------------------- /communitheme/calendar-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/calendar-arrow-left.svg -------------------------------------------------------------------------------- /communitheme/calendar-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/calendar-arrow-right.svg -------------------------------------------------------------------------------- /communitheme/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/calendar-today.svg -------------------------------------------------------------------------------- /communitheme/checkbox-focused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/checkbox-focused.svg -------------------------------------------------------------------------------- /communitheme/checkbox-off-focused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/checkbox-off-focused.svg -------------------------------------------------------------------------------- /communitheme/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/checkbox-off.svg -------------------------------------------------------------------------------- /communitheme/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/checkbox.svg -------------------------------------------------------------------------------- /communitheme/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/close-window-active.svg -------------------------------------------------------------------------------- /communitheme/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/close-window-hover.svg -------------------------------------------------------------------------------- /communitheme/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/close-window.svg -------------------------------------------------------------------------------- /communitheme/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/close.svg -------------------------------------------------------------------------------- /communitheme/corner-ripple-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/corner-ripple-ltr.svg -------------------------------------------------------------------------------- /communitheme/corner-ripple-rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/corner-ripple-rtl.svg -------------------------------------------------------------------------------- /communitheme/dash-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/dash-placeholder.svg -------------------------------------------------------------------------------- /communitheme/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/dots.svg -------------------------------------------------------------------------------- /communitheme/filter-selected-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/filter-selected-ltr.svg -------------------------------------------------------------------------------- /communitheme/filter-selected-rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/filter-selected-rtl.svg -------------------------------------------------------------------------------- /communitheme/gnome-shell-high-contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-high-contrast.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/COPYING -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/HACKING -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/README -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_colors.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_common.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_dock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_dock.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_drawing.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_high-contrast-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_high-contrast-colors.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/_ubuntu-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/_ubuntu-colors.scss -------------------------------------------------------------------------------- /communitheme/gnome-shell-sass/gnome-shell-sass.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell-sass/gnome-shell-sass.doap -------------------------------------------------------------------------------- /communitheme/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/gnome-shell.scss -------------------------------------------------------------------------------- /communitheme/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-enter.svg -------------------------------------------------------------------------------- /communitheme/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-hide.svg -------------------------------------------------------------------------------- /communitheme/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-layout.svg -------------------------------------------------------------------------------- /communitheme/key-shift-latched-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-shift-latched-uppercase.svg -------------------------------------------------------------------------------- /communitheme/key-shift-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-shift-uppercase.svg -------------------------------------------------------------------------------- /communitheme/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/key-shift.svg -------------------------------------------------------------------------------- /communitheme/lockscreen-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/lockscreen-gradient.svg -------------------------------------------------------------------------------- /communitheme/logged-in-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/logged-in-indicator.svg -------------------------------------------------------------------------------- /communitheme/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/meson.build -------------------------------------------------------------------------------- /communitheme/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/message-indicator-symbolic.svg -------------------------------------------------------------------------------- /communitheme/no-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/no-events.svg -------------------------------------------------------------------------------- /communitheme/no-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/no-notifications.svg -------------------------------------------------------------------------------- /communitheme/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/noise-texture.png -------------------------------------------------------------------------------- /communitheme/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/pad-osd.css -------------------------------------------------------------------------------- /communitheme/page-indicator-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/page-indicator-active.svg -------------------------------------------------------------------------------- /communitheme/page-indicator-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/page-indicator-checked.svg -------------------------------------------------------------------------------- /communitheme/page-indicator-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/page-indicator-hover.svg -------------------------------------------------------------------------------- /communitheme/page-indicator-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/page-indicator-inactive.svg -------------------------------------------------------------------------------- /communitheme/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/process-working.svg -------------------------------------------------------------------------------- /communitheme/running-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/running-indicator.svg -------------------------------------------------------------------------------- /communitheme/source-button-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/source-button-border.svg -------------------------------------------------------------------------------- /communitheme/summary-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/summary-counter.svg -------------------------------------------------------------------------------- /communitheme/toggle-off-hc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-off-hc.svg -------------------------------------------------------------------------------- /communitheme/toggle-off-intl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-off-intl.svg -------------------------------------------------------------------------------- /communitheme/toggle-off-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-off-us.svg -------------------------------------------------------------------------------- /communitheme/toggle-on-hc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-on-hc.svg -------------------------------------------------------------------------------- /communitheme/toggle-on-intl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-on-intl.svg -------------------------------------------------------------------------------- /communitheme/toggle-on-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/toggle-on-us.svg -------------------------------------------------------------------------------- /communitheme/ubuntu-appgrid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/ubuntu-appgrid-icon.svg -------------------------------------------------------------------------------- /communitheme/ubuntu-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/ubuntu-logo-icon.svg -------------------------------------------------------------------------------- /communitheme/ws-switch-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/ws-switch-arrow-down.svg -------------------------------------------------------------------------------- /communitheme/ws-switch-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/communitheme/ws-switch-arrow-up.svg -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gnome-shell-communitheme.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/gnome-shell-communitheme.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/ubuntu-communitheme-session.gsettings-override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/ubuntu-communitheme-session.gsettings-override -------------------------------------------------------------------------------- /debian/ubuntu-communitheme-session.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/ubuntu-communitheme-session.install -------------------------------------------------------------------------------- /debian/ubuntu-communitheme-session.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/ubuntu-communitheme-session.postinst -------------------------------------------------------------------------------- /debian/ubuntu-communitheme-session.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/debian/ubuntu-communitheme-session.prerm -------------------------------------------------------------------------------- /docs/gnome-tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/docs/gnome-tweaks.png -------------------------------------------------------------------------------- /docs/widget-factory1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/docs/widget-factory1.png -------------------------------------------------------------------------------- /docs/widget-factory2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/docs/widget-factory2.png -------------------------------------------------------------------------------- /docs/widget-factory3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/docs/widget-factory3.png -------------------------------------------------------------------------------- /docs/widget-factory4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/docs/widget-factory4.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/meson.build -------------------------------------------------------------------------------- /session/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/session/meson.build -------------------------------------------------------------------------------- /session/ubuntu-communitheme-xorg.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/session/ubuntu-communitheme-xorg.desktop -------------------------------------------------------------------------------- /session/ubuntu-communitheme.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/session/ubuntu-communitheme.desktop -------------------------------------------------------------------------------- /session/ubuntu-communitheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/session/ubuntu-communitheme.json -------------------------------------------------------------------------------- /upstream/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/HACKING -------------------------------------------------------------------------------- /upstream/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/README -------------------------------------------------------------------------------- /upstream/calendar-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/calendar-arrow-left.svg -------------------------------------------------------------------------------- /upstream/calendar-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/calendar-arrow-right.svg -------------------------------------------------------------------------------- /upstream/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/calendar-today.svg -------------------------------------------------------------------------------- /upstream/checkbox-focused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/checkbox-focused.svg -------------------------------------------------------------------------------- /upstream/checkbox-off-focused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/checkbox-off-focused.svg -------------------------------------------------------------------------------- /upstream/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/checkbox-off.svg -------------------------------------------------------------------------------- /upstream/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/checkbox.svg -------------------------------------------------------------------------------- /upstream/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/close-window-active.svg -------------------------------------------------------------------------------- /upstream/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/close-window-hover.svg -------------------------------------------------------------------------------- /upstream/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/close-window.svg -------------------------------------------------------------------------------- /upstream/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/close.svg -------------------------------------------------------------------------------- /upstream/corner-ripple-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/corner-ripple-ltr.png -------------------------------------------------------------------------------- /upstream/corner-ripple-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/corner-ripple-rtl.png -------------------------------------------------------------------------------- /upstream/dash-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/dash-placeholder.svg -------------------------------------------------------------------------------- /upstream/filter-selected-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/filter-selected-ltr.svg -------------------------------------------------------------------------------- /upstream/filter-selected-rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/filter-selected-rtl.svg -------------------------------------------------------------------------------- /upstream/gnome-shell-high-contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-high-contrast.scss -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/COPYING -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/HACKING -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/README -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/_colors.scss -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/_common.scss -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/_drawing.scss -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/_high-contrast-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/_high-contrast-colors.scss -------------------------------------------------------------------------------- /upstream/gnome-shell-sass/gnome-shell-sass.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell-sass/gnome-shell-sass.doap -------------------------------------------------------------------------------- /upstream/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/gnome-shell.scss -------------------------------------------------------------------------------- /upstream/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-enter.svg -------------------------------------------------------------------------------- /upstream/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-hide.svg -------------------------------------------------------------------------------- /upstream/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-layout.svg -------------------------------------------------------------------------------- /upstream/key-shift-latched-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-shift-latched-uppercase.svg -------------------------------------------------------------------------------- /upstream/key-shift-uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-shift-uppercase.svg -------------------------------------------------------------------------------- /upstream/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/key-shift.svg -------------------------------------------------------------------------------- /upstream/logged-in-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/logged-in-indicator.svg -------------------------------------------------------------------------------- /upstream/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/meson.build -------------------------------------------------------------------------------- /upstream/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/message-indicator-symbolic.svg -------------------------------------------------------------------------------- /upstream/no-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/no-events.svg -------------------------------------------------------------------------------- /upstream/no-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/no-notifications.svg -------------------------------------------------------------------------------- /upstream/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/noise-texture.png -------------------------------------------------------------------------------- /upstream/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/pad-osd.css -------------------------------------------------------------------------------- /upstream/page-indicator-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/page-indicator-active.svg -------------------------------------------------------------------------------- /upstream/page-indicator-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/page-indicator-checked.svg -------------------------------------------------------------------------------- /upstream/page-indicator-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/page-indicator-hover.svg -------------------------------------------------------------------------------- /upstream/page-indicator-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/page-indicator-inactive.svg -------------------------------------------------------------------------------- /upstream/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/process-working.svg -------------------------------------------------------------------------------- /upstream/running-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/running-indicator.svg -------------------------------------------------------------------------------- /upstream/source-button-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/source-button-border.svg -------------------------------------------------------------------------------- /upstream/summary-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/summary-counter.svg -------------------------------------------------------------------------------- /upstream/toggle-off-hc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-off-hc.svg -------------------------------------------------------------------------------- /upstream/toggle-off-intl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-off-intl.svg -------------------------------------------------------------------------------- /upstream/toggle-off-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-off-us.svg -------------------------------------------------------------------------------- /upstream/toggle-on-hc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-on-hc.svg -------------------------------------------------------------------------------- /upstream/toggle-on-intl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-on-intl.svg -------------------------------------------------------------------------------- /upstream/toggle-on-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/toggle-on-us.svg -------------------------------------------------------------------------------- /upstream/ws-switch-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/ws-switch-arrow-down.png -------------------------------------------------------------------------------- /upstream/ws-switch-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntu/gnome-shell-communitheme/HEAD/upstream/ws-switch-arrow-up.png --------------------------------------------------------------------------------