- Windows 10
- Ubuntu 22.04 WSL
- zsh
- git
#!/bin/bash | |
# Source: https://serverfault.com/a/887402/169782 | |
# Usage: | |
# krsync -av --progress --stats src-dir/ pod<@namespace>:/dest-dir | |
if [ -z "$KRSYNC_STARTED" ]; then | |
export KRSYNC_STARTED=true | |
exec rsync --blocking-io --rsh "$0" $@ |
In order to cycle through windows with alt+tab on the current workspace, run:
gsettings set org.gnome.shell.app-switcher current-workspace-only true
sudo apt update | |
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
sudo apt update | |
sudo apt install -y docker-ce | |
sudo usermod -aG docker ${USER} |
chmod +x deploy.sh | |
./deploy.sh |