simple password protection without encryption would be enough, I mean I don't want my relatives to click the shortcut "diary" and open my private files
I've come up with such a script, it creates password protected zip and deletes data folder every time you close RedNotebook
#!/bin/sh
cd ~/.rednotebook
unzip data.zip
rednotebook
#change 'secretpassword' to password you would like to have
zip --password secretpassword -r data.zip data
#delete data folder
rm -rf data
simple password protection without encryption would be enough, I mean I don't want my relatives to click the shortcut "diary" and open my private files
I've come up with such a script, it creates password protected zip and deletes data folder every time you close RedNotebook
#!/bin/sh
cd ~/.rednotebook
unzip data.zip
rednotebook
#change 'secretpassword' to password you would like to have
zip --password secretpassword -r data.zip data
#delete data folder
rm -rf data