Crates.io | gitcal |
lib.rs | gitcal |
version | 0.1.1 |
source | src |
created_at | 2024-09-05 22:27:29.843512 |
updated_at | 2024-09-06 13:51:12.890726 |
description | A CLI tool for calendar visualization |
homepage | https://github.com/denehoffman/gitcal |
repository | https://github.com/denehoffman/gitcal |
max_upload_size | |
id | 1365234 |
size | 295,182 |
A CLI tool for calendar visualization
cargo install gitcal --locked
Usage: gitcal [OPTIONS]
Options:
--username <NAME> GitHub username (defaults to token owner)
--block Use block icons
--half Use block icons without spaces
--circle Use circle icons
--base <HEX> Set base color
--text <HEX> Set text color
--color0 <HEX> Set color for no contributions
--color1 <HEX> Set color for first quartile
--color2 <HEX> Set color for second quartile
--color3 <HEX> Set color for third quartile
--color4 <HEX> Set color for fourth quartile
--ytd Display the past year's worth of data
--month Display the past month's worth of data
--token <GITHUB_TOKEN> GitHub PAT token (uses $GITHUB_TOKEN if not specified)
--hide-days Hide day-of-the-week string
--hide-months Hide months in header
-h, --help Print help
To use this, you need an API token for GitHub. This can be created by going to GitHub, then Settings > Developer Settings > Personal access tokens
. Current advice from GitHub recommends making a fine-grained token
. This token should be passed to gitcal
via --token
argument, or you can set the $GITHUB_TOKEN
environment variable.
There are several unicode characters which can be used to display the calendar information. See the images below for examples of each:
(default)
--block
--circle
--half
Custom colors can be used by passing them as hex strings to the respective CLI arguments. For example, gitcal --base "#FFFFFF"
will make the background color white.
gitcal --base "#eff1f5" --text "#4c4f69" --color0 "#7287fd" --color1 "#179299" --color2 "#df8e1d" --color3 "#e64553" --color4 "#8839ef"
The --hide-days
and --hide-months
arguments can be used to hide the respective day column and month row.
By default, gitcal
will display past 365 days of information. However, the --ytd
and --month
arguments can be used to instead use the year-to-date starting at January 1st or the days since the beginning of the month respectively.