Last active
March 20, 2023 14:57
-
-
Save derekthecool/ac495b3bb0f9433aa8ccb269fa774fb5 to your computer and use it in GitHub Desktop.
Downed the latest wezterm appimage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get the latest version and rename it to simply wezterm | |
curl -L https://github.com/wez/wezterm/releases/download/20221119-145034-49b9839f/WezTerm-20221119-145034-49b9839f-Ubuntu18.04.AppImage -o wezterm | |
# Make executable | |
chmod +x wezterm | |
# Move to location of exiting path variable, optionally using sudo | |
if [[ $(which sudo) ]]; then | |
sudo mv wezterm /usr/bin | |
else | |
mv wezterm /usr/bin | |
fi | |
# Verify | |
wezterm --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment