This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
| <template> | |
| <figure :id="id"></figure> | |
| </template> | |
| <script> | |
| export default { | |
| props: ['id'], | |
| data() { | |
| return { | |
| source: `https://asciinema.org/a/${this.id}.js`, |
| #!/usr/bin/env bash | |
| # requires bash 4+ (for associative arrays) | |
| # description: convert text to keystrokes and send to a Virtualbox machine via VBoxManage | |
| # (when guest additions are not an option, for adding ssh-keys and such, it is quite slow) | |
| # usage: ./type $1 $2 | |
| # $1: virtual machine name | |
| # $2: text to type |
This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
{
"workbench.preferredDarkColorTheme": "Dracula",
"workbench.preferredLightColorTheme": "GitHub Light",
"window.autoDetectColorScheme": true
}| #!/usr/bin/env python3 | |
| import argparse | |
| import os | |
| import random | |
| import string | |
| import subprocess | |
| import sys | |
| import time | |
| from collections import defaultdict |
| # [...] | |
| # Remove all ENV vars | |
| unset $(env | cut -d= -f1) | |
| # Set back variables | |
| export TERM=xterm | |
| export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/.cargo/bin | |
| export SHELL=/usr/bin/bash | |
| export USER=user |