├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── automatic-theme-switching.gif ├── keymaps └── keymaps.json ├── lib └── main.js ├── menus └── menus.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/README.md -------------------------------------------------------------------------------- /automatic-theme-switching.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/automatic-theme-switching.gif -------------------------------------------------------------------------------- /keymaps/keymaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/keymaps/keymaps.json -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/lib/main.js -------------------------------------------------------------------------------- /menus/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/menus/menus.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paysonwallach/auto-dark-mode/HEAD/package.json --------------------------------------------------------------------------------