Charm – Tools to make the command line glamorous
81–90 of 223 posts
Re: Charm – Tools to make the command line glamorous
#82, I like it, but I am not sure about diving into Golant again. Any way to use it in other languages? Or do I just keep poking at Rich[1] in Python? [1] https://rich.readthedocs.io/en/latest/
Re: Charm – Tools to make the command line glamorous
#83Earlier quoted context omitted.
Do you know what language the libraries are written for?
From the first line of the readme of the first listed lib: > The fun, functional and stateful way to build terminal apps. A Go framework based on The Elm Architecture.
Re: Charm – Tools to make the command line glamorous
#84Re: Charm – Tools to make the command line glamorous
#85These apps look wonderful, only taking a casual glance at the repo, has anyone used, or would one recommend using Skate ( https://github.com/charmbracelet/skate ) as a personal PW manager or even keychain?
Also curious on how/what that would look like.
Re: Charm – Tools to make the command line glamorous
#86 haters > /dev/null™Re: Charm – Tools to make the command line glamorous
#87While we're on the subject (and from Rich the other day) is there a library to do pretty command line apps for Java?
Re: Charm – Tools to make the command line glamorous
#88I love the general renaissance of terminal UI tools we are seeing in the last few years. I can't quite put my finger on what I like about it so much. Something to do with the simplicity and directness of these UIs, guaranteed optimised for efficient keyboard nav, widespread adoption of vim-like navigation keys, and the fact that they link directly with my terminal shell so I can stay entirely in a stream of thought w…
Check out TMUX. TMUX has a copy mode that can be used to navigate the scrollback buffer for any TMUX window/pane and select and copy text. By default, that text is copied to a TMUX paste buffer, but can be copied to the system buffer using a simple command (e.g., `tmux show-buffer | pbcopy` on macOS or `tmux show-buffer | xsel -b` on Linux/X11). You can set that command to run automatically when you copy, which saves a step if you do it often.
Also, if you enable vi keys in TMUX (e.g., add `set-window-option -g mode-keys vi` to ~/.tmux.conf), then you can navigate copy mode using vi navigation keys, including '/' and '?' for search within the scrollback buffer.
Re: Charm – Tools to make the command line glamorous
#89Re: Charm – Tools to make the command line glamorous
#90I love the general renaissance of terminal UI tools we are seeing in the last few years. I can't quite put my finger on what I like about it so much. Something to do with the simplicity and directness of these UIs, guaranteed optimised for efficient keyboard nav, widespread adoption of vim-like navigation keys, and the fact that they link directly with my terminal shell so I can stay entirely in a stream of thought w…
Alacritty has this too, but I have never tried it because I use tmux.