I'm the author of Alacritty, and I'm here to answer any questions!
This looks like an awesome project! You mention tmux, what about GNU Screen? does it work as well? I don't remember major perf issues using vim within screen, I'm afraid to use Alacritty and then never be able to come back to my past setup :)
Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
211–220 of 491 posts
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#212Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#213A pity you can't use Vulkan on MacOS. Otherwise you could have used vulkano[1] instead of OpenGL. 1. https://github.com/tomaka/vulkano
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#214Earlier quoted context omitted.
The AGPL is different from the GPL. The AGPL prevents use at my Bigco (Google) for a number of good reasons.
That's company policy and not the fault of the license. EDIT: Unless you're making modifications to the software, the AGPL does not apply. EDIT2: http://www.affero.org/oagf.html#How_does_this_license_treat_... Specifically, the question, "How does this license treat commercial enterprise use over intranets and internal networks?"
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#215Earlier quoted context omitted.
> Features like ... are better provided by a terminal multiplexer I would strongly argue that this thinking is putting the cart before the horse. I don't use tmux, nor do I want to (though occasionally I have to use screen as a hack to keep programs running on remote servers, and I hate every second of it). Solutions like tmux arguably exist because terminals have poor UIs, and the terminal protocol is too weak to fo…
Thank you for the thoughtful comment. There's been a lot more pushback on the scrolling decision than I had anticipated. It's not something I want in my terminal, but it seems that a simple feature like this is essential for others. Perhaps I should reconsider. I worry that a "simple" feature like this may be overly complex internally. Performance with large amounts of output is also a concern. At least if we were to…
As much as I like tmux (although I exclusively use it via byobu), the single most annoying thing is that it won't let different viewers see different content. (eg start two terminal emulators, run tmux in both and any switching you do in one affects the other. There are supposedly elaborate workarounds, but far too much effort.)
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#216Earlier quoted context omitted.
I respectfully disagree. Alacritty follows the Unix philosophy of doing one thing, and doing it well. I used to think that terminal scrollback and tabs were great ideas -- but switching to tmux changed my mind completely. Tmux is so much more capable for managing your session history. The terminal's tab and scrollback features can never match this. They're just bloat :p
> Alacritty follows the Unix philosophy of doing one thing, and doing it well. That principle is often misapplied, and I think that's true here, too. The "do one thing" about Unix is really about composability (e.g. "find" doesn't need to sort because you do "find | sort"), but you don't compose a terminal app with anything. A terminal app that has terminal features doesn't violate any principles of simplicity.
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#217How much unsafe code was needed to make this work?
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#218Earlier quoted context omitted.
The AGPL is different from the GPL. The AGPL prevents use at my Bigco (Google) for a number of good reasons.
That's company policy and not the fault of the license. EDIT: Unless you're making modifications to the software, the AGPL does not apply. EDIT2: http://www.affero.org/oagf.html#How_does_this_license_treat_... Specifically, the question, "How does this license treat commercial enterprise use over intranets and internal networks?"
Re: Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust
#219Earlier quoted context omitted.
Don't worry. The Rust community is sensitive to the desire to only install Rust with a package manager. There was even talk (a few days ago) of making an LTS version of the Rust compiler for use in more conservative distros that don't want to update it every 6 weeks. On another front, Rust is working hard to get people off of nightly. This project, for example, uses 3 unstable features. Clippy can already work on sta…
> Clippy can already work on stable No. But we plan to make it work.