mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 14:27:09 +00:00
This file is required in the new Microsoft WSL package format. Co-authored-by: Carlos Nihelton <carlos.santanadeoliveira@canonical.com>
21 lines
366 B
Bash
Executable File
21 lines
366 B
Bash
Executable File
#!/bin/bash -eu
|
|
# vi: ts=4 expandtab
|
|
#
|
|
# Create wsl-distribution.conf for WSL setup
|
|
#
|
|
|
|
source /etc/os-release
|
|
|
|
cat <<EOF >/etc/wsl-distribution.conf
|
|
[oobe]
|
|
command = /usr/libexec/wsl-setup
|
|
defaultUid = 1000
|
|
defaultName = ${NAME}-${VERSION_ID}
|
|
|
|
[shortcut]
|
|
icon = /usr/share/wsl/ubuntu.ico
|
|
|
|
[windowsterminal]
|
|
ProfileTemplate = /usr/share/wsl/terminal-profile.json
|
|
EOF
|