A desktop note taking application, that allows you to quickly describe the current day.
Find a file
2023-11-06 00:11:05 +05:00
histd.sh Search for the latest file by name, not by modification date 2023-03-13 00:33:11 +05:00
license.md License: update year 2023-11-06 00:11:05 +05:00
readme.md Add "last" command 2023-03-13 00:16:14 +05:00

How I spent this day

A simple but useful personal diary application.

The sole purpose of this application is to quickly create a file and open it in a text editor so that I can take a note before I lose my desire. Notes can be found in the ~/.local/share/histd directory.

tree ~/.local/share/histd
# /home/user/.local/share/histd
# └── 2022
#     └── 08
#         ├── 18.md
#         └── 19.md

Usage

Make sure the EDITOR environment variable is set to the name of your favorite text editor.

If it's not, edit the ~/.bashrc file (or ~/.zshrc)

export EDITOR=nano

Don't forget to start a new session or execute the following command:

source ~/.bashrc

Then mark this script as executable:

chmod +x histd.sh

Now you can create your first note:

./histd.sh

This command can be run as many times as you want, it will open the same file until the day is over.

You can open the last note with the command:

./histd.sh last

Backup

To create an archive of all notes, run the following command:

./histd.sh backup

Required programs: tar, xz.

Merge all notes

This command concatenates all files and prefixes each with the filename.

./histd.sh merge

List all notes

./histd.sh list
# /home/user/.local/share/histd
# └── 2022
#     └── 08
#         ├── 18.md
#         └── 19.md

Required programs: tree.