https://github.com/curs3w4ll/jrn
Journalize your working days and measure how many times tasks takes
https://github.com/curs3w4ll/jrn
python shell youtrack
Last synced: about 2 months ago
JSON representation
Journalize your working days and measure how many times tasks takes
- Host: GitHub
- URL: https://github.com/curs3w4ll/jrn
- Owner: Curs3W4ll
- Created: 2021-07-27T10:40:34.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-04T14:20:10.000Z (almost 5 years ago)
- Last Synced: 2025-07-06T08:05:35.883Z (12 months ago)
- Topics: python, shell, youtrack
- Language: Python
- Homepage:
- Size: 258 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jrn
Journalize your working days
## Description
Jrn is a tool to help you know at time what you've done in the day

## Installation
### Install python3
Ubuntu / Debian
```
sudo apt-get install python3
```
Arch
```
sudo pacman -S install python3
```
Fedora
```
sudo dnf install python3
```
MacOS
```
brew install python3
```
### Install jrn
```
git clone https://github.com/Curs3W4ll/jrn.git .jrn
cd .jrn
chmod +x build.sh; ./build.sh
```
## Update
```
cd .jrn
./update.sh
```
## Removing
```
cd .jrn
./remove.sh
cd ..
rm -rf .jrn
```
## General Tips
Use it by saying the name of the activity your starting:
```
$ jrn "My activity"
```

This will also end your previous activity if one was pending

---
To end the current activity:
```
$ jrn
```

---
To continue the task you was previously working on:
```
$ jrn -p
```

This will end the current activity if their is one

---
Display a summary of all the activity you've done in the day:
```
$ jrn -s
```

---
Display a global, more readable summary of your activities of the day:
```
$ jrn -rs
```
When multiples activities have the same name, their time is additionnated

---
If you want to select a specific date for the summaries:
```
$ jrn -s -d "27 Jul 2021"
```
