├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug---error-report.md ├── images │ ├── QS-PresentationIMG_inkscape.svg │ ├── dev-preview.png │ ├── layout.png │ ├── media-control.png │ ├── notifications.png │ ├── overlay.png │ ├── quick-settings-tweaker.png │ ├── screen_audio-mixer.png │ ├── screen_media-controls.png │ ├── screen_notifications.png │ ├── screenshot_5446_SpzYu18.png │ └── volume-mixer.png └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── Todo.md ├── dirzsh.zsh ├── docker-compose.example.yml ├── install.sh ├── media ├── Changelog.md ├── dbus.xml ├── hicolor │ └── scalable │ │ └── actions │ │ ├── qst-github-logo-symbolic.svg │ │ ├── qst-gnome-extension-logo-symbolic.svg │ │ └── qst-weblate-logo-symbolic.svg ├── licenses.json ├── qst-project-icon.svg └── rounded_corners.frag ├── metadata.json ├── old ├── features │ └── volumeMixer.ts ├── inputOutput.ts ├── layoutCustomize.ts ├── libs │ ├── streamSlider.ts │ └── volumeMixerHandlerNotImpled.ts ├── menus.ts ├── other.ts ├── panel.ts ├── prefsPages │ └── volumeMixer.ts ├── qst-patreon-logo-symbolic.svg ├── sidebarPrefs.ts └── widgetManager.ts ├── package.json ├── po ├── ca.po ├── cs.po ├── de.po ├── en.po ├── ja.po ├── ko.po ├── pl.po ├── pt.po ├── quick-settings-tweaks@qwreey.pot ├── ru.po ├── ta.po └── zh_Hans.po ├── schemas └── org.gnome.shell.extensions.quick-settings-tweaks.gschema.xml ├── scripts ├── contributor-labels.json ├── reindent.js └── version │ ├── gnome-docker-version │ ├── latest-build-number │ ├── latest-middle-version │ ├── latest-minor-version │ └── major-version ├── src ├── ambient.d.ts ├── config.ts ├── extension.ts ├── features │ ├── debug.ts │ ├── layout │ │ ├── dateMenu.ts │ │ ├── sound.ts │ │ ├── systemIndicator.ts │ │ ├── systemItems.ts │ │ └── toggles.ts │ ├── menuAnimation.ts │ ├── overlayMenu.ts │ ├── toggle │ │ ├── dndQuickToggle.ts │ │ └── unsafeQuickToggle.ts │ └── widget │ │ ├── media.ts │ │ ├── notifications.ts │ │ ├── volumeMixer.ts │ │ └── weather.ts ├── global.scss ├── global.ts ├── libs │ ├── prefs │ │ └── components.ts │ ├── shared │ │ ├── colors.ts │ │ ├── imageUtils.ts │ │ ├── jsUtils.ts │ │ ├── logger.ts │ │ ├── maid.ts │ │ └── styleClass.ts │ ├── shell │ │ ├── advani.ts │ │ ├── effects.ts │ │ ├── feature.ts │ │ ├── gesture.ts │ │ ├── quickSettingsUtils.ts │ │ └── styler.ts │ └── types │ │ ├── quickSettingsOrderItem.ts │ │ ├── systemIndicatorOrderItem.ts │ │ └── toggleOrderItem.ts ├── prefPages │ ├── about.ts │ ├── layout.ts │ ├── menu.ts │ ├── toggles.ts │ └── widgets.ts ├── prefs.ts ├── styles │ ├── date-menu.scss │ ├── debug.scss │ ├── media-widget.scss │ ├── message-compact.scss │ ├── message-remove-shadow.scss │ ├── notification-widget.scss │ ├── system-indicator.scss │ ├── volume-mixer-widget.scss │ └── weather-widget.scss ├── stylesheet.scss └── types.d.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug---error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/ISSUE_TEMPLATE/bug---error-report.md -------------------------------------------------------------------------------- /.github/images/QS-PresentationIMG_inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/QS-PresentationIMG_inkscape.svg -------------------------------------------------------------------------------- /.github/images/dev-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/dev-preview.png -------------------------------------------------------------------------------- /.github/images/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/layout.png -------------------------------------------------------------------------------- /.github/images/media-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/media-control.png -------------------------------------------------------------------------------- /.github/images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/notifications.png -------------------------------------------------------------------------------- /.github/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/overlay.png -------------------------------------------------------------------------------- /.github/images/quick-settings-tweaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/quick-settings-tweaker.png -------------------------------------------------------------------------------- /.github/images/screen_audio-mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/screen_audio-mixer.png -------------------------------------------------------------------------------- /.github/images/screen_media-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/screen_media-controls.png -------------------------------------------------------------------------------- /.github/images/screen_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/screen_notifications.png -------------------------------------------------------------------------------- /.github/images/screenshot_5446_SpzYu18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/screenshot_5446_SpzYu18.png -------------------------------------------------------------------------------- /.github/images/volume-mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/images/volume-mixer.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | i 3 | *.po~ 4 | host/ 5 | docker-compose.yml 6 | node_modules/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /Todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/Todo.md -------------------------------------------------------------------------------- /dirzsh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/dirzsh.zsh -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/install.sh -------------------------------------------------------------------------------- /media/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/Changelog.md -------------------------------------------------------------------------------- /media/dbus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/dbus.xml -------------------------------------------------------------------------------- /media/hicolor/scalable/actions/qst-github-logo-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/hicolor/scalable/actions/qst-github-logo-symbolic.svg -------------------------------------------------------------------------------- /media/hicolor/scalable/actions/qst-gnome-extension-logo-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/hicolor/scalable/actions/qst-gnome-extension-logo-symbolic.svg -------------------------------------------------------------------------------- /media/hicolor/scalable/actions/qst-weblate-logo-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/hicolor/scalable/actions/qst-weblate-logo-symbolic.svg -------------------------------------------------------------------------------- /media/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/licenses.json -------------------------------------------------------------------------------- /media/qst-project-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/qst-project-icon.svg -------------------------------------------------------------------------------- /media/rounded_corners.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/media/rounded_corners.frag -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/metadata.json -------------------------------------------------------------------------------- /old/features/volumeMixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/features/volumeMixer.ts -------------------------------------------------------------------------------- /old/inputOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/inputOutput.ts -------------------------------------------------------------------------------- /old/layoutCustomize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/layoutCustomize.ts -------------------------------------------------------------------------------- /old/libs/streamSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/libs/streamSlider.ts -------------------------------------------------------------------------------- /old/libs/volumeMixerHandlerNotImpled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/libs/volumeMixerHandlerNotImpled.ts -------------------------------------------------------------------------------- /old/menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/menus.ts -------------------------------------------------------------------------------- /old/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/other.ts -------------------------------------------------------------------------------- /old/panel.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/prefsPages/volumeMixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/prefsPages/volumeMixer.ts -------------------------------------------------------------------------------- /old/qst-patreon-logo-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/qst-patreon-logo-symbolic.svg -------------------------------------------------------------------------------- /old/sidebarPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/sidebarPrefs.ts -------------------------------------------------------------------------------- /old/widgetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/old/widgetManager.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/package.json -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/de.po -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/en.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/quick-settings-tweaks@qwreey.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/quick-settings-tweaks@qwreey.pot -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/po/zh_Hans.po -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.quick-settings-tweaks.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/schemas/org.gnome.shell.extensions.quick-settings-tweaks.gschema.xml -------------------------------------------------------------------------------- /scripts/contributor-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/scripts/contributor-labels.json -------------------------------------------------------------------------------- /scripts/reindent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/scripts/reindent.js -------------------------------------------------------------------------------- /scripts/version/gnome-docker-version: -------------------------------------------------------------------------------- 1 | 1.0.3 -------------------------------------------------------------------------------- /scripts/version/latest-build-number: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /scripts/version/latest-middle-version: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /scripts/version/latest-minor-version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /scripts/version/major-version: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/features/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/debug.ts -------------------------------------------------------------------------------- /src/features/layout/dateMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/layout/dateMenu.ts -------------------------------------------------------------------------------- /src/features/layout/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/layout/sound.ts -------------------------------------------------------------------------------- /src/features/layout/systemIndicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/layout/systemIndicator.ts -------------------------------------------------------------------------------- /src/features/layout/systemItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/layout/systemItems.ts -------------------------------------------------------------------------------- /src/features/layout/toggles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/layout/toggles.ts -------------------------------------------------------------------------------- /src/features/menuAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/menuAnimation.ts -------------------------------------------------------------------------------- /src/features/overlayMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/overlayMenu.ts -------------------------------------------------------------------------------- /src/features/toggle/dndQuickToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/toggle/dndQuickToggle.ts -------------------------------------------------------------------------------- /src/features/toggle/unsafeQuickToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/toggle/unsafeQuickToggle.ts -------------------------------------------------------------------------------- /src/features/widget/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/widget/media.ts -------------------------------------------------------------------------------- /src/features/widget/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/widget/notifications.ts -------------------------------------------------------------------------------- /src/features/widget/volumeMixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/widget/volumeMixer.ts -------------------------------------------------------------------------------- /src/features/widget/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/features/widget/weather.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/global.ts -------------------------------------------------------------------------------- /src/libs/prefs/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/prefs/components.ts -------------------------------------------------------------------------------- /src/libs/shared/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/colors.ts -------------------------------------------------------------------------------- /src/libs/shared/imageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/imageUtils.ts -------------------------------------------------------------------------------- /src/libs/shared/jsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/jsUtils.ts -------------------------------------------------------------------------------- /src/libs/shared/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/logger.ts -------------------------------------------------------------------------------- /src/libs/shared/maid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/maid.ts -------------------------------------------------------------------------------- /src/libs/shared/styleClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shared/styleClass.ts -------------------------------------------------------------------------------- /src/libs/shell/advani.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/advani.ts -------------------------------------------------------------------------------- /src/libs/shell/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/effects.ts -------------------------------------------------------------------------------- /src/libs/shell/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/feature.ts -------------------------------------------------------------------------------- /src/libs/shell/gesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/gesture.ts -------------------------------------------------------------------------------- /src/libs/shell/quickSettingsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/quickSettingsUtils.ts -------------------------------------------------------------------------------- /src/libs/shell/styler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/shell/styler.ts -------------------------------------------------------------------------------- /src/libs/types/quickSettingsOrderItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/types/quickSettingsOrderItem.ts -------------------------------------------------------------------------------- /src/libs/types/systemIndicatorOrderItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/types/systemIndicatorOrderItem.ts -------------------------------------------------------------------------------- /src/libs/types/toggleOrderItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/libs/types/toggleOrderItem.ts -------------------------------------------------------------------------------- /src/prefPages/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefPages/about.ts -------------------------------------------------------------------------------- /src/prefPages/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefPages/layout.ts -------------------------------------------------------------------------------- /src/prefPages/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefPages/menu.ts -------------------------------------------------------------------------------- /src/prefPages/toggles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefPages/toggles.ts -------------------------------------------------------------------------------- /src/prefPages/widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefPages/widgets.ts -------------------------------------------------------------------------------- /src/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/prefs.ts -------------------------------------------------------------------------------- /src/styles/date-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/date-menu.scss -------------------------------------------------------------------------------- /src/styles/debug.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/debug.scss -------------------------------------------------------------------------------- /src/styles/media-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/media-widget.scss -------------------------------------------------------------------------------- /src/styles/message-compact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/message-compact.scss -------------------------------------------------------------------------------- /src/styles/message-remove-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/message-remove-shadow.scss -------------------------------------------------------------------------------- /src/styles/notification-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/notification-widget.scss -------------------------------------------------------------------------------- /src/styles/system-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/system-indicator.scss -------------------------------------------------------------------------------- /src/styles/volume-mixer-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/volume-mixer-widget.scss -------------------------------------------------------------------------------- /src/styles/weather-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/styles/weather-widget.scss -------------------------------------------------------------------------------- /src/stylesheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/stylesheet.scss -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwreey/quick-settings-tweaks/HEAD/tsconfig.json --------------------------------------------------------------------------------