sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
///////////////////////////////////////////////////// | |
// Customized for Lefthanded Keyboard Alignment (QWEASZ) | |
// Simply place this Customkeys.txt file into your WC3 | |
// folder usually under Documents or Program Files then | |
// in the game options Enable Custom Keyboard Shortcuts | |
/////////////////////////////////////////////////////// | |
///////////////////////////////////////////////////////// | |
// This Custom Keys setup aligns all races units, heroes, |
curl
to get the JSON response for the latest releasegrep
to find the line containing file URLcut
and tr
to extract the URLwget
to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \