Moving toward working gui installation.

This commit is contained in:
Storm Dragon
2025-11-29 03:54:28 -05:00
parent dfd2609461
commit 013b3d11ac
13 changed files with 351 additions and 43 deletions

View File

@@ -38,4 +38,14 @@ if [ -d /home/stormux ]; then
chown -R 1000:1000 /home/stormux
fi
# Copy Stormux custom skel files to /etc/skel
# This is done after package installation to avoid conflicts with packages like screen
echo "Copying Stormux custom skel files..."
if [ -d /etc/skel.stormux ]; then
cp -a /etc/skel.stormux/. /etc/skel/
echo "Stormux skel files copied to /etc/skel"
else
echo "Warning: /etc/skel.stormux not found"
fi
echo "Airootfs customization complete"