This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Wallabag Android SQLite DB to Wallabag Export format | |
# tested to work on Wallabag Android app version 2.4.2 as of 2021-07-08 | |
# Preparation: To export data from the app go to "Settings - Miscellaneous - Database location" and select "External storage", after that the DB should be available as three wallabag* files in /sdcard/Android/data/fr.gaulupeau.apps.InThePoche/files/ , copy that over to your desktop. | |
# Usage: After that, ensure python is installed, open a command prompt or terminal | |
# make sure to run this script within the Android/data/fr.gaulupeau.apps.InThePoche/files/ directory. Otherwise change the OUTPUT_PATH to that directory. | |
# python wallabag-android-export.py | |
# This will create the following files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .cm-scroller, | |
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .markdown-reading-view { | |
background-color: var(--background-secondary); /*dark bg in 1 pane*/ | |
} | |
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .cm-contentContainer { | |
margin: auto; | |
padding-left: 0!important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.nav-folder.mod-root > .nav-folder-children > .nav-folder > .nav-folder-title { | |
font-size: .9em; | |
padding: .5em .75em; | |
background-color: var(--background-secondary); | |
color: var(--text-muted); | |
margin: 1em 0; | |
} | |
.nav-folder.mod-root > .nav-folder-children > .nav-folder > .nav-folder-title:hover { | |
background-color: var(--secondary-accent); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.card-view { | |
--card-width:35em; /*adjust this size if you want narrower or wider cards*/ | |
/*unit has to be in em so that card background will scale along with your font | |
when you zoom in and out*/ | |
} | |
/*The Card*/ | |
.card-view .markdown-preview-section { | |
background-color: var(--background-primary); | |
margin: 3% auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*HIDE RIBBON WHEN SIDEBAR IS COLLAPSED*/ | |
.side-dock-ribbon.mod-left.is-collapsed .side-dock-ribbon-action { | |
opacity: 0; | |
transition: opacity .3s; | |
} | |
.side-dock-ribbon.mod-left.is-collapsed:hover .side-dock-actions:hover .side-dock-ribbon-action, | |
.side-dock-ribbon.mod-left.is-collapsed:hover .side-dock-settings:hover .side-dock-ribbon-action { | |
opacity: 1; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.tag, | |
.kanban-plugin .kanban-plugin__item-tags .kanban-plugin__item-tag { | |
position: relative; | |
display: inline-block; | |
margin: .125em; | |
} | |
a.tag::before, | |
.cm-formatting-hashtag::before { | |
font-size: .85em; | |
content: "πΊ"; |