mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
night shift checks every interaction to respond to system changes
This commit is contained in:
parent
8f1612e43c
commit
a3e8758280
@ -14,6 +14,8 @@
|
||||
- bugfix: remove shadow around light mode board headers
|
||||
\+ minor text colour fixes for night shift theming.
|
||||
- bugfix: properly detect/respond to `EACCES` errors.
|
||||
- bugfix: night shift checks every interaction,
|
||||
will respond to system changes without any manual changes.
|
||||
|
||||
### v0.9.1 (2020-09-26)
|
||||
|
||||
|
@ -43,7 +43,7 @@ execute the following lines in the terminal:
|
||||
```
|
||||
bash curl -sL https://deb.nodesource.com setup_current.x | sudo -E bash -
|
||||
sudo apt-get install -y nodejs
|
||||
sudo npm i -g notion-enhancer
|
||||
npm i -g notion-enhancer
|
||||
```
|
||||
|
||||
**arch linux, manjaro**
|
||||
|
@ -27,6 +27,7 @@ module.exports = {
|
||||
const observer = new MutationObserver(process);
|
||||
observer.observe(notion_elem, {
|
||||
attributes: true,
|
||||
subtree: true,
|
||||
});
|
||||
function process(list, observer) {
|
||||
const mode = `notion-app-inner notion-${
|
||||
@ -34,8 +35,7 @@ module.exports = {
|
||||
? 'dark'
|
||||
: 'light'
|
||||
}-theme`;
|
||||
if (list[0].target.className !== mode)
|
||||
list[0].target.className = mode;
|
||||
if (notion_elem.className !== mode) notion_elem.className = mode;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user