mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-04-15 14:42:33 +00:00
8 lines
320 B
Bash
8 lines
320 B
Bash
if test "$(id -u)" -gt "0" && test -d "$HOME"; then
|
|
# Add default settings when there are no settings
|
|
if test ! -e "$HOME"/.config/Code/User/settings.json; then
|
|
mkdir -p "$HOME"/.config/Code/User
|
|
cp -f /etc/skel.d/.config/Code/User/settings.json "$HOME"/.config/Code/User/settings.json
|
|
fi
|
|
fi
|