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
|
2022-08-24 22:21:13 +05:00
|
|
|
python3 histd.py
|
2022-08-19 17:31:51 +05:00
|
|
|
```
|
2022-08-24 22:21:13 +05:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
To copy the script to `/usr/local/bin`, run this command as root:
|
2022-08-19 17:31:51 +05:00
|
|
|
```sh
|
2022-08-24 22:21:13 +05:00
|
|
|
make install
|
2022-08-19 17:31:51 +05:00
|
|
|
```
|