Skip to content

Commit

Permalink
fix: Correct skel.d error in installer
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Jan 27, 2024
1 parent 502664a commit e116567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dx/usr/etc/profile.d/vscode-bluefin-profile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ 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
cp -f /etc/skel/.config/Code/User/settings.json "$HOME"/.config/Code/User/settings.json
fi
fi
2 changes: 1 addition & 1 deletion usr/etc/profile.d/bluefin-firstboot.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if test "$(id -u)" -gt "0" && test -d "$HOME"; then
if test ! -e "$HOME"/.config/autostart/bluefin-firstboot.desktop; then
mkdir -p "$HOME"/.config/autostart
cp -f /etc/skel.d/.config/autostart/bluefin-firstboot.desktop "$HOME"/.config/autostart
cp -f /etc/skel/.config/autostart/bluefin-firstboot.desktop "$HOME"/.config/autostart
fi
fi

0 comments on commit e116567

Please sign in to comment.