Skip to content

Instantly share code, notes, and snippets.

@derekthecool
Last active March 20, 2023 14:57
Show Gist options
  • Save derekthecool/ac495b3bb0f9433aa8ccb269fa774fb5 to your computer and use it in GitHub Desktop.
Save derekthecool/ac495b3bb0f9433aa8ccb269fa774fb5 to your computer and use it in GitHub Desktop.
Downed the latest wezterm appimage
# 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