Monorepo for Aesthetic.Computer
aesthetic.computer
1#!/bin/bash
2
3echo "🟠 Beginning \`Aesthetic Computer\` System Installation"
4
5echo "🟣 Installing \`fish\` shell"
6
7# Install Fish shell
8sudo dnf install -y fish
9
10echo "🟣 Setting \`fish\` shell as default"
11# Change the default shell to Fish
12chsh -s /usr/bin/fish me
13
14# Run the Fish script to install other software
15fish /home/me/aesthetic-computer/utilities/thinkpad.fish
16
17echo "🟢 Installation complete"