notion enhancer
@@ -7,6 +7,18 @@
if something is crossed out, then it is no longer a feature included by default,
but can still easily be enabled by following instructions in the docs.
+ v0.6.1 (wip) +
+-
+
- new: semi-mac support? installs, but can't confirm changes have taken effect. +
- bugfix:
cleaner.py
patched for linux.
+ - bugfix: odd mix of
\\
and/
being used for windows filepaths.
+ - bugfix: app no longer crashes when sidebar is toggled. +
@@ -15,13 +27,13 @@ but can still easily be enabled by following instructions in the u/Roosmaryn) +
diff --git a/docs/index.html b/docs/index.html
index c42ed92..dbeb143 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -73,7 +73,7 @@ additionally, if you ever need to change or reset your notion build, the c
symbolised with an arrow (4th from the right). when toggled to point up,
notion will remain the top visible window even if not focused.
to customise which characters are used for these buttons, open in the resources/preload.js
file,
-find the relevant button icon (lines 80 - 111) and replace it with your chosen unicode character (e.g.
+find the relevant button icon (lines 69 - 82) and replace it with your chosen unicode character (e.g.
replacing return '⨉';
with return '🙄';
).
return '⨉';
with return '🙄';
i mean, yeah. get rid of those ugly default scrollbars and use nice inconspicuous
ones that actually look as if they're part of notion.
-to add these to the web version, copy lines 44 - 75 from user.css
into your css customiser.
+to add these to the web version, copy lines 74 - 105 from user.css
into your css customiser.
image: before enhancement
diff --git a/resources/preload.js b/resources/preload.js
index b61245e..2ccf629 100644
--- a/resources/preload.js
+++ b/resources/preload.js
@@ -44,31 +44,27 @@ require('electron').remote.getGlobal('setTimeout')(() => {
const appwindow = require('electron').remote.getCurrentWindow();
- /* window control buttons */
- const buttons = document.createElement('div'),
+ /* titlebar */
+ const buttons = document.createElement('span'),
dragarea = document.createElement('div');
dragarea.className = 'window-dragarea';
- document
- .querySelector('.notion-topbar')
- .parentElement.appendChild(dragarea);
- buttons.className = 'window-topbar-container';
+ document.querySelector('.notion-topbar').prepend(dragarea);
+ buttons.className = 'window-buttons-area';
buttons.innerHTML = `
-
- `;
- document.querySelector('.notion-topbar').parentElement.appendChild(buttons);
+
+
+
+
+ `;
document
- .querySelector('.window-topbar-container')
- .appendChild(document.querySelector('.notion-topbar'));
+ .querySelector('.notion-topbar > div[style*="display: flex"]')
+ .appendChild(buttons);
document
- .querySelector('.window-topbar-container')
- .appendChild(
- document.querySelector('.notion-history-back-button').parentElement
- );
+ .querySelector('.notion-history-back-button')
+ .parentElement.nextSibling.classList.add('notion-topbar-breadcrumb');
+ document
+ .querySelector('.notion-topbar-share-menu')
+ .parentElement.classList.add('notion-topbar-actions');
const button_icons = {
alwaysontop() {
@@ -131,7 +127,7 @@ require('electron').remote.getGlobal('setTimeout')(() => {
button_elements.close.innerHTML = button_icons.close();
button_elements.close.onclick = button_actions.close;
- /* reload window */
+ /* hotkey: reload window */
document.defaultView.addEventListener(
'keyup',
(ev) => void (ev.code === 'F5' ? appwindow.reload() : 0),
diff --git a/resources/user.css b/resources/user.css
index 6baed09..4b6b028 100644
--- a/resources/user.css
+++ b/resources/user.css
@@ -5,7 +5,10 @@
* (https://dragonwocky.me/) under the MIT license
*/
-/* window control buttons */
+/* titlebar */
+.notion-topbar {
+ height: 55px !important;
+}
.window-dragarea {
height: 10px;
width: 100%;
@@ -16,42 +19,33 @@
.notion-dark-theme .window-dragarea {
background: #272d2f;
}
-.window-topbar-container {
- display: flex;
- flex-direction: row-reverse;
- user-select: none;
- -webkit-app-region: drag;
-}
-.window-topbar-container > :last-child,
.window-buttons-area {
display: flex;
align-items: center;
- height: 45px;
-}
-.window-topbar-container > :last-child {
- padding-left: 12px;
-}
-.window-buttons-area {
- justify-content: flex-end;
- padding-right: 12px;
font-size: 14px;
}
@media (max-width: 760px) {
- .window-topbar-container {
- display: grid;
- grid-template-columns: 1fr 1fr;
- }
- .titlebar-draggable-area {
- top: 10px;
- }
- .window-topbar-container > :last-child {
- grid-row: 1;
- }
.notion-topbar {
- grid-column-start: span 2;
+ height: 95px !important;
}
- .notion-topbar > div {
- padding-right: 12px !important;
+ .notion-topbar > :nth-child(2) {
+ display: grid !important;
+ height: 85px !important;
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
+ }
+ .window-buttons-area {
+ grid-row: 1;
+ grid-column: 9 / span end;
+ justify-content: flex-end;
+ }
+ .notion-topbar-breadcrumb {
+ grid-row: 2;
+ grid-column: 1 / span 8;
+ }
+ .notion-topbar-actions {
+ grid-row: 2;
+ grid-column: 9 / span end;
+ justify-content: flex-end;
}
}
/* window control buttons */