aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.md
AgeCommit message (Collapse)Author
2023-07-10Create man5 directory along with man1Yug Shende
2023-06-12Switch to TOML configuration formatChristian Duerr
This switches Alacritty's default configuration format from yaml to toml. While yaml is still supported, it is done by converting it to toml and should be removed entirely in the future. All existing features were persisted based on my testing. Behavior should not change much, though `--option` might have slightly different behavior since the entire line is not interpreted as one line of toml. A new `alacritty migrate` subcommand has been added which allows automatic migration from yaml to toml. This also could be used as a facility to automatically fix configuration file changes in the future. Closes #6592.
2023-05-28Move manpages to scdocChristian Duerr
This rewrites the existing manpages to use the `scdoc` format, making it simpler to read and edit the manpages without intricate roff knowledge. Some minor changes to the manpages were made in the process, mostly focusing on correcting some of the wording. The list of maintainers has also changed to ensure people not involved in the project anymore aren't unnecessarily contacted for support.
2023-03-16Improve fish completions installation instructionsCRATO LABS
Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
2023-02-15Update INSTALL.md Ubuntu instructionsNathan Lilienthal
2022-10-07Add RHEL8 instructions to INSTALL.mdNathaniel Graham
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2022-02-08Add instructions for building without X11/Waylandsckzor
2021-11-08Add alacritty-msg manpage to documentationChristian Duerr
The original multiwindow PR added a new manpage, however this was not properly documented or included in our CI. This patch resolves these issues.
2021-11-02Fix libxkbcommon-devel package name for openSUSEDiego Garza
Fixes #5586.
2021-09-17Add python to Archlinux install instructionsJonathan V
2021-09-14Add libxkbcommon-dev to openSUSE dependenciesChristian Duerr
2021-08-17Add macOS ARM builds to CIChristian Duerr
2021-08-15Add python3 dep to freebsd install instructionsyancyribbens
2021-07-29Add note about dependencies to Cargo InstallationVincent Olivert-Riera
2021-07-12Add libxkbcommon to INSTALL.md dependenciesChristian Duerr
Fixes #5320.
2021-07-08Fix Void Linux link in the install guidePaul Barker
2021-06-27Add libxkbcommon-dev to debian INSTALL.mdTim Hourigan
2021-01-01Remove Windows WinPTY backendChristian Duerr
2020-11-24Fixed typo in INSTALL.mdEverlastinggit
2020-11-24Remove copr from installation instructionsEverlastinggit
Since Fedora now provides Alacritty in the default repository, that should be used instead of the copr repository.
2020-11-16Add Alpine Linux build dependenciesChandler Swift
2020-11-10Add g++ to Fedora build dependency documentationMatthew Neal
Fixes #4400.
2020-09-30Add additional CentOS/RHEL build dependenciesChristian Duerr
Fixes #4271.
2020-08-07Rework installation instructionsCanh Dinh
Since users should be capable of finding packages for their distributions, this removes all instructions that point users directly at specific packages. The third party repositories like COPR have been kept, since those are more difficult to find. The structure of the installation instructions has also been reworked to adjust for this and the post build instructions should be a bit cleaner now. Co-authored-by: Christian Duerr <contact@christianduerr.com>
2020-07-24Remove outdated sections from READMEChristian Duerr
2020-05-12Remove prebuilt linux binariesChristian Duerr
Fixes #3628.
2020-05-07Fix INSTALL.md platform orderingChristian Duerr
2020-05-07Add fontconfig to Clear Linux install requirementsPierre Massat
2020-03-13Capitalized the .desktop Filename (#3425)Nathan Lilienthal
Follow free desktop file naming conventions.
2020-03-01Add GNU Guix installation instructionsValentin Ignatev
2020-01-11Move Alacritty to organizationChristian Duerr
This fixes various outdated links pointing to the old jwilm/alacritty repository. Since `copypasta` now has its own github repository at https://github.com/alacritty/copypasta, the sources have been removed from Alacritty.
2019-11-26Simplify `cargo deb` usagePen Tree
2019-06-30Suggest installing fish completions per-userFabian Homborg
This uses $fish_complete_path[1], which should be in the user's home directory, so `sudo` is no longer needed.
2019-06-25Fix dependencies for Archlinux in INSTALL.mdBenjamin Bauer
2019-06-23Update manual install instructions for Void LinuxGabriel Silva Simões
2019-06-17Fix ubuntu deploymentChristian Duerr
2019-06-15Add INSTALL.md note about OpenBSD user datasize limitspwrdwnsys
2019-06-13Add python 3 to OpenBSD dependenciespwrdwnsys
2019-06-03Fix INSTALL.md relative windows/linux build linkAndy
2019-06-03Add Gentoo install dependenciesChristian Duerr
While Gentoo was listed in the table of contents of the INSTALL.md, the instructions to install the build dependencies were missing. This adds the emerge command necessary to install all dependencies of Alacritty (other than Rust) so building from source without the overlay is possible.
2019-06-03Fix INSTALL.md .deb instruction linkKurgol
2019-05-25Add build instructions for Clear LinuxRon Waldon
2019-05-01Update Fedora and Ubuntu/Debian dependenciesKiril Videlov
2019-04-30Add libxcb-devel dependency to INSTALL.md for openSUSEChris Coutinho
2019-04-28Switch from copypasta to rust-clipboardChristian Duerr
This switches our own `copypasta` crate with the more standardized `clipboard` library, which allows us to get rid of the `xclip` dependency on X11. Additionally, this lays the foundation for native Wayland clipboard support once the clipboard crate is updated (or a fork is created). Fixes #5.
2019-04-28Split alacritty into a separate cratesTheodore Dubois
The crate containing the entry point is called alacritty, and the crate containing everything else is called alacritty_terminal.
2019-04-09Document EGL driver dependency on WaylandChristian Duerr
This fixes #1497.
2019-04-04Add icon to Linux .desktop fileKirill Chibisov
2019-04-01Add official logov0.3.0-rc2Christian Duerr
2019-03-03Fix terminfo support for extended capabilitiesChristian Duerr
To make sure all extended capabilities can be queried correctly, it is necessary to compile the terminfo file using the `-x` flag. Since Alacritty specified support for the XTerm mouse mode (XM/xm), using the `-x` flag was not possible until now without breaking programs like `htop`. By removing this flag, these issues should be resolved. This fixes https://github.com/jwilm/alacritty/issues/2131.