├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── TODO.md ├── controlCenter.js ├── convenience.js ├── debug.sh ├── extension.js ├── keyActivation.js ├── locale ├── cs_CZ │ └── LC_MESSAGES │ │ ├── switcher.mo │ │ └── switcher.po ├── de │ └── LC_MESSAGES │ │ ├── switcher.mo │ │ └── switcher.po ├── fi_FI │ └── LC_MESSAGES │ │ ├── switcher.mo │ │ └── switcher.po ├── fr │ └── LC_MESSAGES │ │ ├── switcher.mo │ │ └── switcher.po ├── nb_NO │ └── LC_MESSAGES │ │ ├── switcher.mo │ │ └── switcher.po └── nl │ └── LC_MESSAGES │ ├── switcher.mo │ └── switcher.po ├── metadata.json ├── modes ├── launcher.js ├── modeUtils.js └── switcher.js ├── noun_96501_cc.svg ├── onboardingmessages.js ├── prefs.css ├── prefs.js ├── promise.js ├── running.gif ├── schemas ├── gschemas.compiled └── org.gnome.shell.extensions.switcher.gschema.xml ├── session.sh ├── stylesheet.css ├── switcher-icon.png ├── switcher-icon.svg ├── switcher.pot ├── switcherApplication.js ├── test.sh └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | .tern-port 2 | *~ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | trailingComma: none 2 | singleQuote: true 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/TODO.md -------------------------------------------------------------------------------- /controlCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/controlCenter.js -------------------------------------------------------------------------------- /convenience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/convenience.js -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/debug.sh -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/extension.js -------------------------------------------------------------------------------- /keyActivation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/keyActivation.js -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/cs_CZ/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/cs_CZ/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/de/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/de/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/fi_FI/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/fi_FI/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/fr/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/fr/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /locale/nb_NO/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/nb_NO/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/nb_NO/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/nb_NO/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/switcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/nl/LC_MESSAGES/switcher.mo -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/switcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/locale/nl/LC_MESSAGES/switcher.po -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/metadata.json -------------------------------------------------------------------------------- /modes/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/modes/launcher.js -------------------------------------------------------------------------------- /modes/modeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/modes/modeUtils.js -------------------------------------------------------------------------------- /modes/switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/modes/switcher.js -------------------------------------------------------------------------------- /noun_96501_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/noun_96501_cc.svg -------------------------------------------------------------------------------- /onboardingmessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/onboardingmessages.js -------------------------------------------------------------------------------- /prefs.css: -------------------------------------------------------------------------------- 1 | .toplevel { 2 | margin: 10px; 3 | } -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/prefs.js -------------------------------------------------------------------------------- /promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/promise.js -------------------------------------------------------------------------------- /running.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/running.gif -------------------------------------------------------------------------------- /schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/schemas/gschemas.compiled -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.switcher.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/schemas/org.gnome.shell.extensions.switcher.gschema.xml -------------------------------------------------------------------------------- /session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/session.sh -------------------------------------------------------------------------------- /stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/stylesheet.css -------------------------------------------------------------------------------- /switcher-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/switcher-icon.png -------------------------------------------------------------------------------- /switcher-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/switcher-icon.svg -------------------------------------------------------------------------------- /switcher.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/switcher.pot -------------------------------------------------------------------------------- /switcherApplication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/switcherApplication.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/test.sh -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellandau/switcher/HEAD/util.js --------------------------------------------------------------------------------