add F5 as a window reload hotkey

This commit is contained in:
dragonwocky 2020-03-30 11:49:50 +11:00
parent e71df80c7a
commit 03113659e7
Signed by: dragonwocky
GPG Key ID: B570B11B1DFB50E4
6 changed files with 31 additions and 16 deletions

View File

@ -5,7 +5,8 @@ but can still easily be enabled by following instructions in the [docs](README.m
### v0.5.0 (wip)
- new: running from the WSL.
- new: running from the wsl.
- new: reload window with f5.
- improved: code has been refactored and cleaned up,
inc. file renaming.
- bugfix: un-break having multiple notion windows open.

View File

@ -60,10 +60,11 @@ to add these to the web version, copy lines 43 - 87 from `user.css` into your cs
### hotkey
by default, `ctrl+shift+a` (will hide/show all notion windows to/from the tray).
to set your own, open `customiser.py` and change line 16 (`hotkey = 'ctrl+shift+a'`)
to your preference. you will need to run or re-run `customiser.py` afterwards.
- **toggle all notion windows to/from the tray**: `CmdOrCtrl+Shift+A` by default.
to set your own, open `customiser.py` and change line 16 (`hotkey = 'ctrl+shift+a'`)
to your preference. you will need to run or re-run `customiser.py` afterwards.
- **reload window**: in addition to the built-in `CmdOrCtrl+R` reload,
you can now reload a window with `F5`.
### tray
@ -141,7 +142,7 @@ as it is a per-table-column style, unlike all others here, it must be prepended
#### hide calculations table row
```css
[] .notion-table-view-add-row + div {
.notion-table-view-add-row + div {
display: none !important;
}
```

View File

@ -14,12 +14,12 @@ from time import sleep
# for toggling notion visibility
hotkey = 'ctrl+shift+a'
hotkey = 'CmdOrCtrl+Shift+A'
# f'{bold}=== title ==={normal}' = headers
# '*' = information
# '...' = actions
# '##' = warnings
# '##' = warnings
# '>' = exit
bold = '\033[1m'

View File

@ -13,7 +13,8 @@ but can still easily be enabled by following instructions in the <a href="/index
<a href="#v050-wip">v0.5.0 (wip)</a>
</h3>
<ul>
<li>new: running from the WSL.</li>
<li>new: running from the wsl.</li>
<li>new: reload window with f5.</li>
<li>improved: code has been refactored and cleaned up,
inc. file renaming.</li>
<li>bugfix: un-break having multiple notion windows open.</li>

View File

@ -78,9 +78,13 @@ ones that actually look as if they&#39;re part of notion.</p>
<h3 id="hotkey">
<a href="#hotkey">hotkey</a>
</h3>
<p>by default, <code>ctrl+shift+a</code> (will hide/show all notion windows to/from the tray).</p>
<p>to set your own, open <code>customiser.py</code> and change line 16 (<code>hotkey = &#39;ctrl+shift+a&#39;</code>)
to your preference. you will need to run or re-run <code>customiser.py</code> afterwards.</p>
<ul>
<li><strong>toggle all notion windows to/from the tray</strong>: <code>CmdOrCtrl+Shift+A</code> by default.
to set your own, open <code>customiser.py</code> and change line 16 (<code>hotkey = &#39;ctrl+shift+a&#39;</code>)
to your preference. you will need to run or re-run <code>customiser.py</code> afterwards.</li>
<li><strong>reload window</strong>: in addition to the built-in <code>CmdOrCtrl+R</code> reload,
you can now reload a window with <code>F5</code>.</li>
</ul>
</section>
<section class="block">
@ -169,7 +173,7 @@ as it is a per-table-column style, unlike all others here, it must be prepended
<h4 id="hide-calculations-table-row">
<a href="#hide-calculations-table-row">hide calculations table row</a>
</h4>
<pre><code class="lang-css"><span class="hljs-selector-attr">[]</span> <span class="hljs-selector-class">.notion-table-view-add-row</span> + <span class="hljs-selector-tag">div</span> {
<pre><code class="lang-css"><span class="hljs-selector-class">.notion-table-view-add-row</span> + <span class="hljs-selector-tag">div</span> {
<span class="hljs-attribute">display</span>: none <span class="hljs-meta">!important</span>;
}</code></pre>

View File

@ -22,12 +22,13 @@ require('electron').remote.getGlobal('setTimeout')(() => {
style.innerHTML = css;
head.appendChild(style);
/* window control buttons */
const intervalID = setInterval(insertbuttons, 100);
function insertbuttons() {
const intervalID = setInterval(injection, 100);
function injection() {
if (document.querySelector('div.notion-topbar > div') == undefined) return;
const appwindow = require('electron').remote.getCurrentWindow();
/* window control buttons */
let node = document.querySelector('div.notion-topbar > div'),
element = document.createElement('div');
element.id = 'window-buttons-area';
@ -82,5 +83,12 @@ require('electron').remote.getGlobal('setTimeout')(() => {
node.appendChild(element);
clearInterval(intervalID);
/* reload window */
document.defaultView.addEventListener(
'keyup',
ev => void (ev.code === 'F5' ? appwindow.reload() : 0),
true
);
}
}, 100);