1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 04:56:12 +03:00

update for rename of master branch -> main

This commit is contained in:
Wez Furlong 2021-02-03 21:31:32 -08:00
parent a034730373
commit 8ee11484b9
8 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
# Wez's Terminal
<img alt="WezTerm Icon" src="https://raw.githubusercontent.com/wez/wezterm/master/assets/icon/terminal.png" align="left"> *A GPU-accelerated cross-platform terminal emulator and multiplexer written by <a href="https://github.com/wez/">@wez</a> and implemented in <a href="https://www.rust-lang.org/">Rust</a>*
<img alt="WezTerm Icon" src="https://raw.githubusercontent.com/wez/wezterm/main/assets/icon/terminal.png" align="left"> *A GPU-accelerated cross-platform terminal emulator and multiplexer written by <a href="https://github.com/wez/">@wez</a> and implemented in <a href="https://www.rust-lang.org/">Rust</a>*
User facing docs and guide at: https://wezfurlong.org/wezterm/

View File

@ -1,6 +1,6 @@
# Maintainer: Wez Furlong <wez at wezfurlong dot org>
# NOTE: if you're looking at this on AUR, this file is generated from
# https://github.com/wez/wezterm/blob/master/ci/PKGBUILD.template
# https://github.com/wez/wezterm/blob/main/ci/PKGBUILD.template
# by automation in the wezterm repo.
pkgname=wezterm-bin
@ -27,7 +27,7 @@ depends=(
)
source=(
"wezterm::https://github.com/wez/wezterm/releases/download/${_tag}/WezTerm-${_tag}-Ubuntu16.04.AppImage"
'LICENSE::https://github.com/wez/wezterm/raw/master/LICENSE.md'
'LICENSE::https://github.com/wez/wezterm/raw/main/LICENSE.md'
)
sha256sums=(
'@SHA256@'

View File

@ -1,6 +1,6 @@
# Note: if you are viewing this from the tap repo, this file is automatically
# updated from:
# https://github.com/wez/wezterm/blob/master/ci/wezterm-homebrew-macos.rb.template
# https://github.com/wez/wezterm/blob/main/ci/wezterm-homebrew-macos.rb.template
# by automation in the wezterm repo.
class Wezterm < Formula

View File

@ -1,6 +1,6 @@
# Note: if you are viewing this from the tap repo, this file is automatically
# updated from:
# https://github.com/wez/wezterm/blob/master/ci/wezterm-linuxbrew.rb.template
# https://github.com/wez/wezterm/blob/main/ci/wezterm-linuxbrew.rb.template
# by automation in the wezterm repo.
class Wezterm < Formula
desc "A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"

View File

@ -88,7 +88,7 @@ return {
If you'd like to factor your color schemes out into separate files, you
can create a file with a `[colors]` section; take a look at [one of
the available color schemes for an example](https://github.com/wez/wezterm/blob/master/assets/colors/Builtin%20Dark.toml).
the available color schemes for an example](https://github.com/wez/wezterm/blob/main/assets/colors/Builtin%20Dark.toml).
It is recommended that you place your custom scheme in a directory
named `$HOME/.config/wezterm/colors` if you're on a POSIX system.

View File

@ -10,7 +10,7 @@ wish to install a copy of the `wezterm` TERM definition:
```
tempfile=$(mktemp) \
&& curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo \
&& curl -o $tempfile https://raw.githubusercontent.com/wez/wezterm/main/termwiz/data/wezterm.terminfo \
&& tic -x -o ~/.terminfo $tempfile \
&& rm $tempfile
```

View File

@ -10,9 +10,9 @@ macOS.
* Build in release mode: `cargo build --release`
* Run it via either `cargo run --release` or `target/release/wezterm`
You will need a collection of support libraries; the [`get-deps`](https://github.com/wez/wezterm/blob/master/get-deps) script will
You will need a collection of support libraries; the [`get-deps`](https://github.com/wez/wezterm/blob/main/get-deps) script will
attempt to install them for you. If it doesn't know about your system,
[please contribute instructions!](https://github.com/wez/wezterm/blob/master/CONTRIBUTING.md)
[please contribute instructions!](https://github.com/wez/wezterm/blob/main/CONTRIBUTING.md)
If you don't plan to submit a pull request to the wezterm repo, you can
download a smaller source tarball using these steps:
@ -31,7 +31,7 @@ Alternatively, use the full git repo:
```bash
curl https://sh.rustup.rs -sSf | sh -s
git clone --depth=1 --branch=master --recursive https://github.com/wez/wezterm.git
git clone --depth=1 --branch=main --recursive https://github.com/wez/wezterm.git
cd wezterm
git submodule update --init --recursive
sudo ./get-deps

View File

@ -14,7 +14,7 @@ In order for these features to be enabled, you will need to configure your
shell program to emit the escape sequences at the appropriate place.
You can find some [examples for various shells in the wezterm
repo](https://github.com/wez/wezterm/tree/master/assets/shell-integration).
repo](https://github.com/wez/wezterm/tree/main/assets/shell-integration).
In the most recently nightly builds the Fedora and Debian packages
automatically activate shell integration for Bash and Zsh.