fix: tweaks

This commit is contained in:
alban 2023-01-05 22:01:25 +01:00
parent abca7f3085
commit 0c5714d24c
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,7 @@ USEROPENSCAD="$USERHOME//.local/share/OpenSCAD/libraries"
# add user 1000 to dialout
adduser $USER dialout
mkdir -p $USERHOME/bin && chown $USER:$USER $USERHOME/bin
mkdir -p $USEROPENSCAD && chown $USER:$USER $USEROPENSCAD
mkdir -p $USEROPENSCAD && chown -R $USER:$USER $USERHOME/.local/share/OpenSCAD
declare -a PACKAGES
@ -49,6 +49,9 @@ PACKAGES+=(inkscape)
# blender
PACKAGES+=(blender)
# fuse for AppImage
PACKAGES+=(fuse)
apt-get update
apt-get install -y --no-install-recommends ${PACKAGES[@]}