Remix.run Logo
jmorenoamor 3 hours ago

No. I like them.

danpalmer 3 hours ago | parent [-]

What do you like about them? I disagree, but so many people seem to like them that I assume I'm missing something. The main one I've heard before is that they work nicely over SSH, but I assume there must be more?

jmorenoamor 5 minutes ago | parent | next [-]

A good UI can be text, graphic, voice, etc.

I enjoy the usability and self perceived speed of not having to leave the console or reach the mouse to move a pointer when a cople of key presees is enough.

It's a matter of choice, I know, but I also think there is a genuine case for text over graphics. I see it everyday on businesses that keep old cobol tpvs at the cash, the speed at which the clercks check inventories or perform other crm activities is unmatched to mouse or touch interfaces

nimih 2 hours ago | parent | prev | next [-]

I personally like making (and using) TUIs because:

- They encourage developing simpler, information-dense, and keyboard-driven interfaces, which I tend to prefer in general.

- I find them more fun to write, and less aggravating to maintain and debug, than interfaces built with GUI toolkits.

- Most software I write for personal use is going to be run in both a Linux and Mac OS environment (and a lot of the time on a headless server to boot), and a TUI often has less fuss than other options (at least, IME).

- I think monospaced text in a terminal just looks cool.

annapanna an hour ago | parent [-]

But you can't really do information dense when you are limited to a fixed grid of monospaced character glyphs. Variable width fonts are much more information dense for example.

barnabee 2 hours ago | parent | prev | next [-]

IMHO the rise of TUIs is heavily correlated with the near-abandonment of professional quality graphical interfaces.

If there was a powerful, information dense, configurable docking/tiling, multi-application-composing GUI framework (all things a good terminal can do) then yes, build everything in that. I’d love to see it.

Until then, TUIs are vastly better than another Electron app or Mac app using UI frameworks that are trying their hardest to look and act like basic phone apps.

mrheosuper 2 hours ago | parent | prev | next [-]

Lightweight and can run over ssh are 2 main reasons i like them.

takluyver 2 hours ago | parent | prev | next [-]

In addition to what other people have said, the terminal interface is cross-platform and very stable, so TUIs need little or no maintenance to keep working.

duskdozer 2 hours ago | parent | prev | next [-]

(other user) in my typical experience:

- keyboard can be used for pretty much everything

- less visually busy (no/less animations, background images/color variations. often close to plain text on plain background)

- more information dense (fewer things hidden behind hamburger menus, modals, drawers, etc)

- more/more easily customizable and documented

- more often can provide data directly into the terminal that I'm working in, so don't need to copy/paste through windows etc

these aren't necessarily impossible for GUI or universally true for TUI, but maybe I would guess just more an artifact of there being types of people who prefer working in the terminal who are then more likely to make TUIs, and I share their preferences more.

TurboHaskal 2 hours ago | parent | prev | next [-]

I don't think TUIs are inherently better but some are simply too good versus the alternative. magit and k9s for example.

skeledrew 2 hours ago | parent | prev [-]

It's easier to automate TUIs, since it's just text.

benj111 22 minutes ago | parent [-]

Nit. Surely it would be keyboard navigation? Your macro can consist of the key presses you would actually use, rather than trying to describe mouse movement.

If you want to automate from the perspective of what's on screen, tuis have no metadata. A button in a gui does have metadata associated with it, so you could automate 'click button x' where as in a TUI you'd be limited to clicking 'position x,y'