I’ve also updated my README in the repo. Maybe this will help as well:
How to install
There are different ways you can install and use the theme, but the most comfortable way is as follows:
- Clone the repository into your Joplin profile directory. If you don’t know where it is, go to
Preferences and it will show you the location.
- Create symlinks to the
.css files. (Remove or rename your current css files, if they already exist.)
- Create a new branch for your own changes. This will make it easier when new updates are available.
cd ~/.config/joplin-desktop
git clone https://github.com/tessus/joplin-custom-css.git
ln -s joplin-custom-css/Dark/userchrome.css
ln -s joplin-custom-css/Dark/userstyle.css
cd joplin-custom-css
git checkout -b my-css
# make changes to the css files and commit them
# when a new update is available, merge or rebase
git fetch origin master:master && git rebase master
1 Like