├── .gitattributes ├── .github └── workflows │ ├── build-wsl-image.yml │ └── release-event.json ├── Dockerfile ├── LICENSE ├── README.md ├── clab_icon.ico ├── images ├── devpod_settings.png └── docker_desktop_integration.png ├── oobe.sh ├── profile ├── proxyman.sh ├── terminal-profile.json ├── wsl-distribution.conf ├── wsl.conf └── zsh ├── .p10k-lean.zsh ├── .p10k.zsh ├── .zshrc ├── .zshrc-lean ├── install-tools-completions.sh └── install-zsh-plugins.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/build-wsl-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/.github/workflows/build-wsl-image.yml -------------------------------------------------------------------------------- /.github/workflows/release-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/.github/workflows/release-event.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/README.md -------------------------------------------------------------------------------- /clab_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/clab_icon.ico -------------------------------------------------------------------------------- /images/devpod_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/images/devpod_settings.png -------------------------------------------------------------------------------- /images/docker_desktop_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/images/docker_desktop_integration.png -------------------------------------------------------------------------------- /oobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/oobe.sh -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/profile -------------------------------------------------------------------------------- /proxyman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/proxyman.sh -------------------------------------------------------------------------------- /terminal-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/terminal-profile.json -------------------------------------------------------------------------------- /wsl-distribution.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/wsl-distribution.conf -------------------------------------------------------------------------------- /wsl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/wsl.conf -------------------------------------------------------------------------------- /zsh/.p10k-lean.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/.p10k-lean.zsh -------------------------------------------------------------------------------- /zsh/.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/.p10k.zsh -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/.zshrc -------------------------------------------------------------------------------- /zsh/.zshrc-lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/.zshrc-lean -------------------------------------------------------------------------------- /zsh/install-tools-completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/install-tools-completions.sh -------------------------------------------------------------------------------- /zsh/install-zsh-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srl-labs/wsl-containerlab/HEAD/zsh/install-zsh-plugins.sh --------------------------------------------------------------------------------