├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── dnd-symbolic.svg ├── lib └── gjsunit.js ├── screenshots ├── activate.gif ├── dnd.gif └── do-not-disturb.png ├── src ├── dndExtension.js ├── doNotDisturb.js ├── extension.js ├── lib.js ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── gnome-shell-extension-do-not-disturb.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── gnome-shell-extension-do-not-disturb.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── gnome-shell-extension-do-not-disturb.po │ └── pt │ │ └── LC_MESSAGES │ │ └── gnome-shell-extension-do-not-disturb.po ├── metadata.json ├── prefs.js ├── schemas │ └── org.gnome.shell.extensions.kylecorry31-do-not-disturb.gschema.xml ├── settings.js ├── stylesheet.css ├── system.js └── widgets.js ├── test ├── MockAudio.js ├── MockDNDIndicator.js ├── MockDNDToggle.js ├── MockPresence.js ├── MockRemoteAPI.js ├── TestDoNotDisturb.js └── TestExtension.js └── todo.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | *.zip 3 | *.mo 4 | gschemas.compiled -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dnd-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/dnd-symbolic.svg -------------------------------------------------------------------------------- /lib/gjsunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/lib/gjsunit.js -------------------------------------------------------------------------------- /screenshots/activate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/screenshots/activate.gif -------------------------------------------------------------------------------- /screenshots/dnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/screenshots/dnd.gif -------------------------------------------------------------------------------- /screenshots/do-not-disturb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/screenshots/do-not-disturb.png -------------------------------------------------------------------------------- /src/dndExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/dndExtension.js -------------------------------------------------------------------------------- /src/doNotDisturb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/doNotDisturb.js -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/lib.js -------------------------------------------------------------------------------- /src/locale/de/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/locale/de/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po -------------------------------------------------------------------------------- /src/locale/es/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/locale/es/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po -------------------------------------------------------------------------------- /src/locale/fr/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/locale/fr/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po -------------------------------------------------------------------------------- /src/locale/pt/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/locale/pt/LC_MESSAGES/gnome-shell-extension-do-not-disturb.po -------------------------------------------------------------------------------- /src/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/metadata.json -------------------------------------------------------------------------------- /src/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/prefs.js -------------------------------------------------------------------------------- /src/schemas/org.gnome.shell.extensions.kylecorry31-do-not-disturb.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/schemas/org.gnome.shell.extensions.kylecorry31-do-not-disturb.gschema.xml -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/stylesheet.css -------------------------------------------------------------------------------- /src/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/system.js -------------------------------------------------------------------------------- /src/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/src/widgets.js -------------------------------------------------------------------------------- /test/MockAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/MockAudio.js -------------------------------------------------------------------------------- /test/MockDNDIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/MockDNDIndicator.js -------------------------------------------------------------------------------- /test/MockDNDToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/MockDNDToggle.js -------------------------------------------------------------------------------- /test/MockPresence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/MockPresence.js -------------------------------------------------------------------------------- /test/MockRemoteAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/MockRemoteAPI.js -------------------------------------------------------------------------------- /test/TestDoNotDisturb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/TestDoNotDisturb.js -------------------------------------------------------------------------------- /test/TestExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/test/TestExtension.js -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/gnome-shell-extension-do-not-disturb/HEAD/todo.txt --------------------------------------------------------------------------------