diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-02 22:39:11 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-02 22:40:19 +0200 |
| commit | 96f92ddd8ea1554766b358333e911f607c3e5d6c (patch) | |
| tree | afc26a32d4c42c752165e4975ab74b597ac4c09f /install-fish-integration.fish | |
| parent | 7afe4c2c1afe9d8f4ba8887758523999fde12b7b (diff) | |
- Add 4 new ASCII art fonts (mono12, rebel, ansi, ansiShadow) adapted from pomo project
- Implement random font selection on startup when no font is specified
- Add 'f' hotkey in live mode to cycle through fonts
- Update LICENSE with MIT attribution for pomo fonts
- Update README with comprehensive font documentation
- Bump version to v0.3.0
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'install-fish-integration.fish')
| -rwxr-xr-x | install-fish-integration.fish | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/install-fish-integration.fish b/install-fish-integration.fish index 53d864e..b90be24 100755 --- a/install-fish-integration.fish +++ b/install-fish-integration.fish @@ -35,10 +35,16 @@ end complete -c timr -n __fish_use_subcommand -a start -d \"Start the timer\" complete -c timr -n __fish_use_subcommand -a stop -d \"Stop the timer\" complete -c timr -n __fish_use_subcommand -a pause -d \"Pause the timer\" +complete -c timr -n __fish_use_subcommand -a continue -d \"Continue the timer\" +complete -c timr -n __fish_use_subcommand -a cont -d \"Continue the timer\" complete -c timr -n __fish_use_subcommand -a status -d \"Show the timer status\" complete -c timr -n __fish_use_subcommand -a reset -d \"Reset the timer\" +complete -c timr -n __fish_use_subcommand -a track -d \"Save time with description\" complete -c timr -n __fish_use_subcommand -a live -d \"Show the live timer\" complete -c timr -n __fish_use_subcommand -a prompt -d \"Show the prompt status\" + +# Font completions for live mode +complete -c timr -n \"__fish_seen_subcommand_from live\" -s f -l font -d \"Font style\" -a \"doom mono12 rebel ansi ansiShadow\" " > "$integration_file" echo "Created: $integration_file" |
