├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── 🐛-bug-report.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── ambient.d.ts ├── assets ├── Settings.ui ├── metadata.json ├── po │ ├── bluetooth-quick-connect.pot │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── fr.po │ ├── it.po │ ├── nl.po │ ├── oc.po │ ├── pl.po │ ├── pt_BR.po │ ├── ro.po │ └── ru.po └── schemas │ └── org.gnome.shell.extensions.bluetooth-quick-connect.gschema.xml ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── src ├── bluetooth.ts ├── extension.ts ├── prefs.ts ├── settings.ts ├── ui.ts └── utils.ts ├── tsconfig.json └── tsup.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: BlankParticle 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🐛-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/.github/ISSUE_TEMPLATE/🐛-bug-report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/README.md -------------------------------------------------------------------------------- /ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/ambient.d.ts -------------------------------------------------------------------------------- /assets/Settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/Settings.ui -------------------------------------------------------------------------------- /assets/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/metadata.json -------------------------------------------------------------------------------- /assets/po/bluetooth-quick-connect.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/bluetooth-quick-connect.pot -------------------------------------------------------------------------------- /assets/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/cs.po -------------------------------------------------------------------------------- /assets/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/de.po -------------------------------------------------------------------------------- /assets/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/el.po -------------------------------------------------------------------------------- /assets/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/es.po -------------------------------------------------------------------------------- /assets/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/fr.po -------------------------------------------------------------------------------- /assets/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/it.po -------------------------------------------------------------------------------- /assets/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/nl.po -------------------------------------------------------------------------------- /assets/po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/oc.po -------------------------------------------------------------------------------- /assets/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/pl.po -------------------------------------------------------------------------------- /assets/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/pt_BR.po -------------------------------------------------------------------------------- /assets/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/ro.po -------------------------------------------------------------------------------- /assets/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/po/ru.po -------------------------------------------------------------------------------- /assets/schemas/org.gnome.shell.extensions.bluetooth-quick-connect.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/assets/schemas/org.gnome.shell.extensions.bluetooth-quick-connect.gschema.xml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/bluetooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/bluetooth.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/prefs.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/ui.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Extensions-Valhalla/gnome-bluetooth-quick-connect/HEAD/tsup.config.ts --------------------------------------------------------------------------------