mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-15 15:18:26 +00:00
21 lines
366 B
Plaintext
21 lines
366 B
Plaintext
|
#!/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
|