-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: moul <[email protected]>
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# `gnokeykc` | ||
|
||
`gnokeykc` is a Go-based CLI tool that enhances [`gnokey`](../../gno.land/cmd/gnokey) by integrating with your system's keychain. It adds `gnokey kc ...` subcommands to set and unset passwords in the keychain, allowing Gnokey to fetch passwords directly from the keychain instead of prompting for terminal input. | ||
|
||
## Usage | ||
|
||
gnokey kc -h | ||
|
||
## Terminal Alias | ||
|
||
For ease of use, set up a terminal alias to replace `gnokey` with `gnokeykc`: | ||
|
||
echo "alias gnokey='gnokeykc'" >> ~/.bashrc && source ~/.bashrc | ||
|
||
Now, `gnokey` commands will use `gnokeykc`, fetching passwords from the keychain. | ||
|