Compare commits

...

3 Commits

Author SHA1 Message Date
David Young
fe879c5c3b add sway installation and enable 2026-05-29 06:41:08 -06:00
David Young
e985ddde70 Merge branch 'main' of https://gitea.young.computer/david/MiniServer 2026-05-14 13:49:43 -06:00
David Young
896a4fc604 add utilities 2026-05-14 13:48:11 -06:00
2 changed files with 25 additions and 0 deletions

View File

@@ -116,6 +116,10 @@ fi
cd ~/.local/share/MiniServer cd ~/.local/share/MiniServer
# Fix Networking
. fix-networking.sh
# Install Cockpit # Install Cockpit
if ! pacman -Qi cockpit &> /dev/null; then if ! pacman -Qi cockpit &> /dev/null; then
echo "Installing Cockpit..." echo "Installing Cockpit..."
@@ -126,6 +130,16 @@ else
echo "Cockpit is already installed, skipping." echo "Cockpit is already installed, skipping."
fi fi
# Install Sway config files
if [ ! -d "$HOME/.config/sway" ]; then
mkdir -p "$HOME/.config/sway"
cp /etc/sway/config "$HOME/.config/sway/config"
fi
# Enable SDDM
if ! systemctl is-enabled --quiet sddm; then
sudo systemctl enable sddm
fi
echo "" echo ""
read -rp "A reboot is required to complete setup. Reboot now? [y/N] " response </dev/tty read -rp "A reboot is required to complete setup. Reboot now? [y/N] " response </dev/tty

View File

@@ -5,6 +5,7 @@ SERVERS=(
# Utilities # Utilities
UTILITIES=( UTILITIES=(
btop
cmake cmake
cockpit cockpit
cockpit-storaged cockpit-storaged
@@ -12,12 +13,22 @@ UTILITIES=(
docker docker
docker-compose docker-compose
firewalld firewalld
foot
fuzzel
nano nano
neofetch
networkmanager networkmanager
nodejs nodejs
npm npm
sddm
sway
swaybg
swayidle
swaylock
vi vi
waybar
wget wget
wmenu
unzip unzip
) )