updated styling and installation steps
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
tumillanino
2025-10-31 22:55:30 +11:00
parent cbce2162fe
commit d6a284d48a
7 changed files with 725 additions and 72 deletions

View File

@@ -1,4 +1,26 @@
#!/bin/bash
set -e
MOUNT_POINT="/mnt"
echo "Setting up Cosmic Desktop..."
echo "Configuring display manager..."
systemctl enable cosmic-greeter
echo "Installing additional Cosmic components..."
pacman -S --noconfirm --needed \
cosmic-files \
cosmic-edit \
cosmic-term \
cosmic-store \
cosmic-settings
echo "Setting up user environment..."
if [ -n "$SUDO_USER" ]; then
USER_HOME="/home/$SUDO_USER"
mkdir -p "$USER_HOME/.config"
chown -R "$SUDO_USER:$SUDO_USER" "$USER_HOME/.config"
fi
echo "Cosmic Desktop setup complete!"