├── .github ├── ISSUE_TEMPLATE.md ├── arc-dark-prv.png ├── arc-darker-prv.png ├── arc-lighter-prv.png └── arc-prv.png ├── AUTHORS ├── COPYING ├── HACKING.md ├── INSTALL.md ├── README.md ├── common ├── cinnamon │ ├── 3.8 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── 4.0 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── 4.2 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── 4.4 │ ├── 4.6 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── 4.8 │ ├── 5.0 │ ├── 5.2 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── 5.4 │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── cinnamon.scss.in │ ├── meson.build │ └── thumbnail │ │ ├── dark.png │ │ └── light.png ├── gnome-shell │ ├── 40 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-left.svg │ │ │ │ ├── ws-switch-arrow-right.svg │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── carousel-arrow-back-24-symbolic.svg │ │ │ ├── carousel-arrow-next-24-symbolic.svg │ │ │ ├── color-pick.svg │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── gnome-shell-start.svg │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ ├── process-working.svg │ │ │ └── window-close-24-symbolic.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 41 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-left.svg │ │ │ │ ├── ws-switch-arrow-right.svg │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── carousel-arrow-back-24-symbolic.svg │ │ │ ├── carousel-arrow-next-24-symbolic.svg │ │ │ ├── color-pick.svg │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── gnome-shell-start.svg │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ ├── process-working.svg │ │ │ ├── screen-privacy-disabled-symbolic.svg │ │ │ ├── screen-privacy-symbolic.svg │ │ │ └── window-close-24-symbolic.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 42 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ └── calendar-today.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── gnome-shell-start.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 43 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ └── calendar-today.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── gnome-shell-start.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 44 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ └── calendar-today.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── gnome-shell-start.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 45 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder-horizontal.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ └── calendar-today.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── gnome-shell-start.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.28 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-left.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3.svg │ │ │ │ └── running4.svg │ │ │ ├── key │ │ │ │ ├── key-enter.svg │ │ │ │ ├── key-hide-active.svg │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout-active.svg │ │ │ │ ├── key-layout.svg │ │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ │ ├── key-shift-uppercase.svg │ │ │ │ └── key-shift.svg │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-up.png │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-overview.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── message-indicator-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.30 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-left.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3.svg │ │ │ │ └── running4.svg │ │ │ ├── key │ │ │ │ ├── key-enter.svg │ │ │ │ ├── key-hide-active.svg │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout-active.svg │ │ │ │ ├── key-layout.svg │ │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ │ ├── key-shift-uppercase.svg │ │ │ │ └── key-shift.svg │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-up.png │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-overview.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── message-indicator-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.32 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-left.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3.svg │ │ │ │ └── running4.svg │ │ │ ├── key │ │ │ │ ├── key-enter.svg │ │ │ │ ├── key-hide-active.svg │ │ │ │ ├── key-layout-active.svg │ │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ │ └── key-shift-uppercase.svg │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-up.png │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── panel-overview.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ ├── gnome-shell-theme-lighter.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── message-indicator-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── message-active.svg │ │ │ │ ├── message-close-active.svg │ │ │ │ ├── message-close-hover.svg │ │ │ │ ├── message-close.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── lighter-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.34 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── key │ │ │ │ ├── key-enter.svg │ │ │ │ ├── key-hide-active.svg │ │ │ │ ├── key-layout-active.svg │ │ │ │ ├── key-shift-latched-uppercase.svg │ │ │ │ └── key-shift-uppercase.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-left.svg │ │ │ │ ├── ws-switch-arrow-right.svg │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ └── activities-active.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ ├── gnome-shell-theme-lighter.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── lighter-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── key │ │ │ │ ├── key-hide.svg │ │ │ │ ├── key-layout.svg │ │ │ │ └── key-shift.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.36 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-left.svg │ │ │ │ ├── ws-switch-arrow-right.svg │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ └── activities-active.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ ├── gnome-shell-theme-lighter.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── lighter-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ ├── 3.38 │ │ ├── common-assets │ │ │ ├── dash │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── running1-hover.svg │ │ │ │ ├── running1.svg │ │ │ │ ├── running2-hover.svg │ │ │ │ ├── running2.svg │ │ │ │ ├── running3-hover.svg │ │ │ │ ├── running3.svg │ │ │ │ ├── running4-hover.svg │ │ │ │ └── running4.svg │ │ │ ├── misc │ │ │ │ ├── calendar-today-active.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── ws-switch-arrow-down.svg │ │ │ │ ├── ws-switch-arrow-left.svg │ │ │ │ ├── ws-switch-arrow-right.svg │ │ │ │ └── ws-switch-arrow-up.svg │ │ │ ├── panel │ │ │ │ └── activities-active.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gresource │ │ │ ├── gnome-shell-theme-dark.gresource.xml │ │ │ ├── gnome-shell-theme-lighter.gresource.xml │ │ │ └── gnome-shell-theme.gresource.xml │ │ ├── icons │ │ │ ├── color-pick.svg │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ ├── pointer-drag-symbolic.svg │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ └── process-working.svg │ │ ├── light-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── lighter-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ └── calendar-arrow-right.svg │ │ │ ├── panel │ │ │ │ └── activities.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── pad-osd.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss.in │ └── meson.build ├── gtk-2.0 │ ├── apps.rc │ ├── assets-dark │ │ ├── assets.svg │ │ └── meson.build │ ├── assets-light │ │ ├── assets.svg │ │ └── meson.build │ ├── assets.txt │ ├── dark │ │ └── gtkrc │ ├── darker │ │ └── gtkrc │ ├── light │ │ └── gtkrc │ ├── lighter │ │ └── gtkrc │ ├── main.rc │ ├── menubar-toolbar │ │ ├── menubar-toolbar-dark.rc │ │ └── menubar-toolbar.rc │ ├── meson.build │ ├── panel.rc │ └── xfce-notify.rc ├── gtk-3.0 │ ├── assets │ │ ├── assets.svg │ │ ├── assets.txt │ │ └── meson.build │ ├── meson.build │ ├── sass │ │ ├── _applications.scss │ │ ├── _budgie.scss │ │ ├── _colors-public.scss │ │ ├── _colors.scss │ │ ├── _common.scss │ │ ├── _drawing.scss │ │ ├── _granite.scss │ │ ├── _libhandy.scss │ │ ├── _lightdm.scss │ │ ├── _transparent_widgets.scss │ │ ├── _unity.scss │ │ └── gtk.scss.in │ └── thumbnail │ │ ├── dark.png │ │ └── light.png ├── gtk-4.0 │ ├── assets │ │ ├── assets.svg │ │ ├── assets.txt │ │ └── meson.build │ ├── meson.build │ └── sass │ │ ├── _colors-public.scss │ │ ├── _colors.scss │ │ ├── _common.scss │ │ ├── _drawing.scss │ │ ├── _libadwaita-defaults.scss │ │ ├── _libadwaita.scss │ │ └── gtk.scss.in ├── index.theme.in ├── meson.build ├── metacity-1 │ ├── button-bg.svg │ ├── button-border.svg │ ├── close-icon.svg │ ├── max-icon.svg │ ├── menu-icon.svg │ ├── meson.build │ ├── metacity-theme-1-dark.xml │ ├── metacity-theme-1.xml │ ├── metacity-theme-2-dark.xml │ ├── metacity-theme-2.xml │ ├── metacity-theme-3-dark.xml │ ├── metacity-theme-3.xml │ ├── min-icon.svg │ ├── shade-icon.svg │ ├── stick-icon.svg │ ├── thumbnail-dark.png │ └── thumbnail.png ├── plank │ ├── dock-lighter.theme │ ├── dock.theme │ └── meson.build ├── unity │ ├── close.svg │ ├── close_dash.svg │ ├── close_dash_disabled.svg │ ├── close_dash_prelight.svg │ ├── close_dash_pressed.svg │ ├── close_focused_normal.svg │ ├── close_focused_prelight.svg │ ├── close_focused_pressed.svg │ ├── close_unfocused.svg │ ├── close_unfocused_prelight.svg │ ├── close_unfocused_pressed.svg │ ├── dash │ │ ├── close_dash.svg │ │ ├── close_dash_disabled.svg │ │ ├── close_dash_prelight.svg │ │ ├── close_dash_pressed.svg │ │ ├── maximize_dash.svg │ │ ├── maximize_dash_disabled.svg │ │ ├── maximize_dash_prelight.svg │ │ ├── maximize_dash_pressed.svg │ │ ├── minimize_dash.svg │ │ ├── minimize_dash_disabled.svg │ │ ├── minimize_dash_prelight.svg │ │ └── minimize_dash_pressed.svg │ ├── launcher_arrow_ltr_19.svg │ ├── launcher_arrow_ltr_37.svg │ ├── launcher_arrow_outline_ltr_19.svg │ ├── launcher_arrow_outline_ltr_37.svg │ ├── launcher_arrow_outline_rtl_19.svg │ ├── launcher_arrow_outline_rtl_37.svg │ ├── launcher_arrow_rtl_19.svg │ ├── launcher_arrow_rtl_37.svg │ ├── launcher_icon_back_150.svg │ ├── launcher_icon_back_54.svg │ ├── launcher_icon_edge_150.svg │ ├── launcher_icon_edge_54.svg │ ├── launcher_icon_glow_200.svg │ ├── launcher_icon_glow_62.svg │ ├── launcher_icon_selected_back_150.svg │ ├── launcher_icon_selected_back_54.svg │ ├── launcher_icon_shadow_200.svg │ ├── launcher_icon_shadow_62.svg │ ├── launcher_icon_shine_150.svg │ ├── launcher_icon_shine_54.svg │ ├── launcher_pip_ltr_19.svg │ ├── launcher_pip_ltr_37.svg │ ├── launcher_pip_rtl_19.svg │ ├── launcher_pip_rtl_37.svg │ ├── maximize.svg │ ├── maximize_dash.svg │ ├── maximize_dash_disabled.svg │ ├── maximize_dash_prelight.svg │ ├── maximize_dash_pressed.svg │ ├── maximize_focused_normal.svg │ ├── maximize_focused_prelight.svg │ ├── maximize_focused_pressed.svg │ ├── maximize_unfocused.svg │ ├── maximize_unfocused_prelight.svg │ ├── maximize_unfocused_pressed.svg │ ├── meson.build │ ├── minimize.svg │ ├── minimize_dash.svg │ ├── minimize_dash_disabled.svg │ ├── minimize_dash_prelight.svg │ ├── minimize_dash_pressed.svg │ ├── minimize_focused_normal.svg │ ├── minimize_focused_prelight.svg │ ├── minimize_focused_pressed.svg │ ├── minimize_unfocused.svg │ ├── minimize_unfocused_prelight.svg │ ├── minimize_unfocused_pressed.svg │ ├── sheet_style_close_focused.svg │ ├── sheet_style_close_focused_prelight.svg │ ├── sheet_style_close_focused_pressed.svg │ ├── unmaximize.svg │ ├── unmaximize_dash.svg │ ├── unmaximize_dash_disabled.svg │ ├── unmaximize_dash_prelight.svg │ ├── unmaximize_dash_pressed.svg │ ├── unmaximize_focused_normal.svg │ ├── unmaximize_focused_prelight.svg │ ├── unmaximize_focused_pressed.svg │ ├── unmaximize_unfocused.svg │ ├── unmaximize_unfocused_prelight.svg │ ├── unmaximize_unfocused_pressed.svg │ ├── window-buttons-dark │ │ ├── close.svg │ │ ├── close_prelight.svg │ │ ├── close_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── maximize.svg │ │ ├── maximize_prelight.svg │ │ ├── maximize_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── minimize.svg │ │ ├── minimize_prelight.svg │ │ ├── minimize_pressed.svg │ │ └── minimize_unfocused.svg │ └── window-buttons │ │ ├── close.svg │ │ ├── close_prelight.svg │ │ ├── close_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── maximize.svg │ │ ├── maximize_prelight.svg │ │ ├── maximize_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── minimize.svg │ │ ├── minimize_prelight.svg │ │ ├── minimize_pressed.svg │ │ └── minimize_unfocused.svg └── xfwm4 │ ├── assets.txt │ ├── dark │ ├── assets.svg │ ├── meson.build │ └── themerc │ ├── light │ ├── assets.svg │ ├── meson.build │ └── themerc │ └── meson.build ├── meson.build ├── meson ├── install-file.py └── render-assets.py └── meson_options.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/arc-dark-prv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/.github/arc-dark-prv.png -------------------------------------------------------------------------------- /.github/arc-darker-prv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/.github/arc-darker-prv.png -------------------------------------------------------------------------------- /.github/arc-lighter-prv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/.github/arc-lighter-prv.png -------------------------------------------------------------------------------- /.github/arc-prv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/.github/arc-prv.png -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/COPYING -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/HACKING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/README.md -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/3.8/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/3.8/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/3.8/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/3.8/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/3.8/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.0/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/4.0/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/4.0/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/4.0/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.0/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.2/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/4.2/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/4.2/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/4.2/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.2/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/4.4: -------------------------------------------------------------------------------- 1 | 4.2 -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/4.6/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/4.6/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/4.6/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/4.6/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/4.6/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/4.8: -------------------------------------------------------------------------------- 1 | 4.6 -------------------------------------------------------------------------------- /common/cinnamon/5.0: -------------------------------------------------------------------------------- 1 | 4.6 -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/5.2/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/5.2/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/5.2/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/5.2/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.2/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/corner-ripple.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/activities-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/activities-active.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/panel-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/panel-left.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/panel-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/panel-right.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/common-assets/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/common-assets/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/misc/button-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/misc/button-box.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/5.4/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/sass/_colors.scss -------------------------------------------------------------------------------- /common/cinnamon/5.4/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/sass/_common.scss -------------------------------------------------------------------------------- /common/cinnamon/5.4/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/sass/_drawing.scss -------------------------------------------------------------------------------- /common/cinnamon/5.4/sass/cinnamon.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/5.4/sass/cinnamon.scss.in -------------------------------------------------------------------------------- /common/cinnamon/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/meson.build -------------------------------------------------------------------------------- /common/cinnamon/thumbnail/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/thumbnail/dark.png -------------------------------------------------------------------------------- /common/cinnamon/thumbnail/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/cinnamon/thumbnail/light.png -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/dash-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/dash-left.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/dash-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/dash-right.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/key/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/key/key-enter.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/key/key-hide-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/key/key-hide-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/more-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/more-results.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/common-assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/common-assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/misc/message-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/misc/message-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.28/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.28/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.28/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.28/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.28/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.28/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/dash-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/dash-left.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/dash-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/dash-right.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/key/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/key/key-enter.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/close-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/close-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/more-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/more-results.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/common-assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/common-assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/misc/message-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/misc/message-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.30/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.30/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.30/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.30/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.30/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.30/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/dash-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/dash-left.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/dash-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/dash-right.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/key/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/key/key-enter.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/misc/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/misc/bg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/misc/more-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/misc/more-results.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/common-assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/common-assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/misc/message-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/misc/message-active.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/misc/message-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/misc/message-close.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/misc/message-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/misc/message-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/lighter-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/lighter-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/lighter-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/lighter-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/lighter-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/lighter-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/lighter-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/lighter-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/lighter-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/lighter-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.32/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.32/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.32/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.32/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.32/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.32/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/3.34/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/common-assets/key/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/common-assets/key/key-enter.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/icons/pointer-drag-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/icons/pointer-drag-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/lighter-assets/key/key-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/lighter-assets/key/key-hide.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/lighter-assets/key/key-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/lighter-assets/key/key-layout.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/lighter-assets/key/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/lighter-assets/key/key-shift.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/lighter-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/lighter-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/lighter-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/lighter-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.34/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.34/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.34/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.34/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.34/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.34/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/3.36/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/dark-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/dark-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/icons/eye-not-looking-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/icons/eye-not-looking-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/icons/keyboard-enter-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/icons/keyboard-enter-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/icons/keyboard-hide-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/icons/keyboard-hide-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/icons/pointer-drag-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/icons/pointer-drag-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/light-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/light-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/lighter-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/lighter-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/lighter-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/lighter-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.36/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.36/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.36/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.36/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.36/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.36/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/3.38/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/dark-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/dark-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/color-pick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/color-pick.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/eye-not-looking-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/eye-not-looking-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/keyboard-enter-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/keyboard-enter-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/keyboard-hide-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/keyboard-hide-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/pointer-drag-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/pointer-drag-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/light-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/light-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/lighter-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/lighter-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/lighter-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/lighter-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.38/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/3.38/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.38/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.38/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.38/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/3.38/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/color-pick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/color-pick.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/eye-not-looking-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/eye-not-looking-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/keyboard-enter-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/keyboard-enter-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/keyboard-hide-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/keyboard-hide-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/message-indicator-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/pointer-drag-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/pointer-drag-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/icons/window-close-24-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/icons/window-close-24-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/40/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/40/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/40/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/40/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/40/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/40/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/color-pick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/color-pick.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/eye-not-looking-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/eye-not-looking-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/keyboard-enter-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/keyboard-enter-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/keyboard-hide-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/keyboard-hide-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/message-indicator-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/pointer-drag-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/pointer-drag-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/screen-privacy-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/screen-privacy-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/icons/window-close-24-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/icons/window-close-24-symbolic.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/41/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/41/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/41/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/41/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/41/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/41/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/42/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/42/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/42/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/42/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/42/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/42/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/43/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/43/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/43/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/43/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/43/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/43/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/common-assets/panel/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/common-assets/panel/activities.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/44/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/44/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/44/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/44/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/44/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/44/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running1-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running1-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running1.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running2-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running2-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running2.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running3-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running3-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running3.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running4-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running4-hover.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/dash/running4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/dash/running4.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/common-assets/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/common-assets/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/dark-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/dark-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/dark-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/dark-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/icons/gnome-shell-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/icons/gnome-shell-start.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/icons/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/icons/process-working.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/light-assets/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/light-assets/switch/switch-off.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/light-assets/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/light-assets/switch/switch-on.svg -------------------------------------------------------------------------------- /common/gnome-shell/45/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/pad-osd.css -------------------------------------------------------------------------------- /common/gnome-shell/45/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/45/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/45/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/45/sass/gnome-shell.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/45/sass/gnome-shell.scss.in -------------------------------------------------------------------------------- /common/gnome-shell/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gnome-shell/meson.build -------------------------------------------------------------------------------- /common/gtk-2.0/apps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/apps.rc -------------------------------------------------------------------------------- /common/gtk-2.0/assets-dark/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/assets-dark/assets.svg -------------------------------------------------------------------------------- /common/gtk-2.0/assets-dark/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/assets-dark/meson.build -------------------------------------------------------------------------------- /common/gtk-2.0/assets-light/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/assets-light/assets.svg -------------------------------------------------------------------------------- /common/gtk-2.0/assets-light/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/assets-light/meson.build -------------------------------------------------------------------------------- /common/gtk-2.0/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/assets.txt -------------------------------------------------------------------------------- /common/gtk-2.0/dark/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/dark/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0/darker/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/darker/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0/light/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/light/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0/lighter/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/lighter/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/main.rc -------------------------------------------------------------------------------- /common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc -------------------------------------------------------------------------------- /common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc -------------------------------------------------------------------------------- /common/gtk-2.0/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/meson.build -------------------------------------------------------------------------------- /common/gtk-2.0/panel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/panel.rc -------------------------------------------------------------------------------- /common/gtk-2.0/xfce-notify.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-2.0/xfce-notify.rc -------------------------------------------------------------------------------- /common/gtk-3.0/assets/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/assets/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/assets/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/assets/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/assets/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/assets/meson.build -------------------------------------------------------------------------------- /common/gtk-3.0/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/meson.build -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_applications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_applications.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_budgie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_budgie.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_granite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_granite.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_libhandy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_libhandy.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_lightdm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_lightdm.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_transparent_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_transparent_widgets.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/_unity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/_unity.scss -------------------------------------------------------------------------------- /common/gtk-3.0/sass/gtk.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/sass/gtk.scss.in -------------------------------------------------------------------------------- /common/gtk-3.0/thumbnail/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/thumbnail/dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/thumbnail/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-3.0/thumbnail/light.png -------------------------------------------------------------------------------- /common/gtk-4.0/assets/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/assets/assets.svg -------------------------------------------------------------------------------- /common/gtk-4.0/assets/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/assets/assets.txt -------------------------------------------------------------------------------- /common/gtk-4.0/assets/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/assets/meson.build -------------------------------------------------------------------------------- /common/gtk-4.0/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/meson.build -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_libadwaita-defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_libadwaita-defaults.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/_libadwaita.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/_libadwaita.scss -------------------------------------------------------------------------------- /common/gtk-4.0/sass/gtk.scss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/gtk-4.0/sass/gtk.scss.in -------------------------------------------------------------------------------- /common/index.theme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/index.theme.in -------------------------------------------------------------------------------- /common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/meson.build -------------------------------------------------------------------------------- /common/metacity-1/button-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/button-bg.svg -------------------------------------------------------------------------------- /common/metacity-1/button-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/button-border.svg -------------------------------------------------------------------------------- /common/metacity-1/close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/close-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/max-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/max-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/menu-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/meson.build -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-1-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-1-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-1.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-2-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-2-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-2.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-3-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-3-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/metacity-theme-3.xml -------------------------------------------------------------------------------- /common/metacity-1/min-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/min-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/shade-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/shade-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/stick-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/stick-icon.svg -------------------------------------------------------------------------------- /common/metacity-1/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/thumbnail-dark.png -------------------------------------------------------------------------------- /common/metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /common/plank/dock-lighter.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/plank/dock-lighter.theme -------------------------------------------------------------------------------- /common/plank/dock.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/plank/dock.theme -------------------------------------------------------------------------------- /common/plank/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/plank/meson.build -------------------------------------------------------------------------------- /common/unity/close.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /common/unity/close_dash.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash.svg -------------------------------------------------------------------------------- /common/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /common/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /common/unity/dash/close_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/close_dash.svg -------------------------------------------------------------------------------- /common/unity/dash/close_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/close_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/dash/close_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/close_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/dash/close_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/close_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/dash/maximize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/maximize_dash.svg -------------------------------------------------------------------------------- /common/unity/dash/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/dash/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/dash/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/dash/minimize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/minimize_dash.svg -------------------------------------------------------------------------------- /common/unity/dash/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/dash/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/dash/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_ltr_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_ltr_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_ltr_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_ltr_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_outline_ltr_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_outline_ltr_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_outline_ltr_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_outline_ltr_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_outline_rtl_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_outline_rtl_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_outline_rtl_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_outline_rtl_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_rtl_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_rtl_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_rtl_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_arrow_rtl_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_back_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_back_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_back_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_back_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_edge_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_edge_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_edge_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_edge_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_glow_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_glow_200.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_glow_62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_glow_62.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_selected_back_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_selected_back_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_selected_back_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_selected_back_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shadow_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_shadow_200.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shadow_62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_shadow_62.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shine_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_shine_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shine_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_icon_shine_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_ltr_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_pip_ltr_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_ltr_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_pip_ltr_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_rtl_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_pip_rtl_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_rtl_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/launcher_pip_rtl_37.svg -------------------------------------------------------------------------------- /common/unity/maximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/meson.build -------------------------------------------------------------------------------- /common/unity/minimize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /common/unity/sheet_style_close_focused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close.svg -------------------------------------------------------------------------------- /common/unity/sheet_style_close_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /common/unity/sheet_style_close_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /common/unity/unmaximize.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- 1 | dash/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- 1 | window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/close.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/close_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/close_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/close_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/close_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/close_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/close_unfocused.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/maximize.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/maximize_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/maximize_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/maximize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/maximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/minimize.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/minimize_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/minimize_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/minimize_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/minimize_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons-dark/minimize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons-dark/minimize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/close.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/close_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/close_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/close_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/close_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/close_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/close_unfocused.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/maximize.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/maximize_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/maximize_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/maximize_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/maximize_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/maximize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/maximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/minimize.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/minimize_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/minimize_prelight.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/minimize_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/minimize_pressed.svg -------------------------------------------------------------------------------- /common/unity/window-buttons/minimize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/unity/window-buttons/minimize_unfocused.svg -------------------------------------------------------------------------------- /common/xfwm4/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/assets.txt -------------------------------------------------------------------------------- /common/xfwm4/dark/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/dark/assets.svg -------------------------------------------------------------------------------- /common/xfwm4/dark/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/dark/meson.build -------------------------------------------------------------------------------- /common/xfwm4/dark/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/dark/themerc -------------------------------------------------------------------------------- /common/xfwm4/light/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/light/assets.svg -------------------------------------------------------------------------------- /common/xfwm4/light/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/light/meson.build -------------------------------------------------------------------------------- /common/xfwm4/light/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/light/themerc -------------------------------------------------------------------------------- /common/xfwm4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/common/xfwm4/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/meson.build -------------------------------------------------------------------------------- /meson/install-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/meson/install-file.py -------------------------------------------------------------------------------- /meson/render-assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/meson/render-assets.py -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnsh/arc-theme/HEAD/meson_options.txt --------------------------------------------------------------------------------