histd/readme.md

47 lines
998 B
Markdown
Raw Normal View History

2022-08-19 17:31:51 +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.
2022-09-25 14:01:34 +05:00
Notes can be found in the `~/.local/share/histd` directory.
2022-08-19 17:31:51 +05:00
```sh
2022-09-25 14:01:34 +05:00
tree ~/.local/share/histd
# /home/user/.local/share/histd
2022-08-19 17:31:51 +05:00
# └── 2022
# └── 08
2022-10-02 15:10:19 +05:00
# ├── 18.md
# └── 19.md
2022-08-19 17:31:51 +05:00
```
## Usage
```sh
python3 histd.py
2022-08-19 17:31:51 +05:00
```
## Installation
2022-10-03 18:40:37 +05:00
Recommended method
2022-08-19 17:31:51 +05:00
```sh
2022-10-03 18:35:56 +05:00
sudo cp histd.py /usr/local/bin/histd
2022-08-19 17:31:51 +05:00
```
2022-10-03 18:40:37 +05:00
Risky way (without cloning the repository)
```sh
sudo curl -o /usr/local/bin/histd "https://raw.githubusercontent.com/ordinary-dev/histd/master/histd.py"
```
2022-10-03 18:35:56 +05:00
To create a new note, you can simply type `histd` in the terminal.
2022-10-03 18:28:49 +05:00
## Backup
2022-12-03 19:49:57 +05:00
To create an archive of all notes, run the following command:
```bash
histd backup
2022-10-03 18:28:49 +05:00
```
## Merge all notes
2022-12-15 22:25:44 +05:00
This command concatenates all files and prefixes each with the filename.
```bash
histd merge
2022-10-03 18:28:49 +05:00
```