- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Source: https://bleepcoder.com/starship/640385008/unable-to-install-on-windows-git-bash-configuration-not
All scripts should be ran in your git bash terminal, not cmd or ps.
mkdir -p ~/bin/starship && cd ~/bin
curl -fsSL https://starship.rs/install.sh > ./install.sh
./install.sh --bin-dir /c/Users/<username>/bin/starship/ --platform pc-windows-msvc
Edit /etc/systemd/resolved.conf
, set option Domains=
(space separated list of domains) according to docs and then restart systemd-resolved.
$ systemctl restart systemd-resolved
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, cat
the TGZs, and extract:
$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -
You don't even need to use brace expansion. Globbing will order the files numerically:
$ cat takeout-20201023T123551Z-*.tgz | tar xzivf -
other reminders: https://www.youtube.com/watch?v=PBrCahw1IQk
#!/usr/bin/env python | |
#BATOCERA SETUP: | |
#(removed custom game collection section, caused error in batocera) | |
#wget -O export.py <this gist> | |
#SETUP PREREQ: (I cloned repo on laptop first and scp'ed up to batocera box) | |
#git clone --depth=1 https://github.com/jmcnamara/xlsxwriter | |
#cd xlsxwriter | |
#sudo python3 setup.py install |
#!/bin/bash | |
#After installing holoiso 4 offline iso -- released in Dec '22 -- you may run into the inability to download system updates | |
#due to repo names out of sync with upstream. (https://steamdeck-packages.steamos.cloud/archlinux-mirror/) | |
#First, ensure your current version reads 3.4 in steamdeck GUI system properties. | |
# | |
#switch to desktop mode, load Konsole | |
#save this script to your home dir ~/ | |
# |