shit-script/shit.sh

89 lines
3.3 KiB
Bash
Raw Normal View History

2024-03-19 16:39:53 -05:00
#!/bin/bash
# Download swirl from the specified URL
sudo wget -O /usr/bin/swirl "http://nodemixaholic.com:3002/nodemixaholic/swirl/raw/commit/27e18143bb65e7781cd41ca89b72560004cf24fc/swirl" || {
echo "Failed to download swirl."
exit 1
}
2024-03-19 16:46:55 -05:00
chmod +x /usr/bin/swirl
2024-03-19 16:39:53 -05:00
# Install necessary packages
sudo apt update
2024-04-06 05:19:26 -05:00
sudo apt install --no-install-recommends -y busybox clang irssi flatpak libreoffice krita network-manager-gnome xfce4 xfce4-screenshooter || {
2024-03-19 16:39:53 -05:00
echo "Failed to install necessary packages."
exit 1
}
2024-04-06 07:04:11 -05:00
# List of GNU commands and their corresponding BusyBox equivalents
2024-03-19 16:39:53 -05:00
commands=(
2024-04-06 07:04:11 -05:00
"ls:busybox ls"
"cat:busybox cat"
#"cp:busybox cp" # needed for installing GRUB apt package[!]
#"mv:busybox mv" # knowing the above is needed for install, disable in case[!]
"rm:busybox rm"
"rmdir:busybox rmdir"
"mkdir:busybox mkdir"
#"grep:busybox grep" #needed for updating initramfs[?]
#"sed:busybox sed" #shotgun approach
#"find:busybox find" #needed for updating initramfs[?]
"chmod:busybox chmod"
"chown:busybox chown"
"wc:busybox wc"
#"head:busybox sed -n '1,11p; 12q'"
"tail:busybox tail"
2024-03-19 16:39:53 -05:00
"gcc:clang"
"g++:clang"
)
# Iterate over each command and create symbolic links
for cmd in "${commands[@]}"; do
# Split command into GNU and BusyBox parts
gnu_cmd="${cmd%%:*}"
busybox_cmd="${cmd##*:}"
# Check if GNU command exists in system
if command -v "$gnu_cmd" &>/dev/null; then
# Backup existing command
if [ -e "/usr/bin/$gnu_cmd" ]; then
sudo mv "/usr/bin/$gnu_cmd" "/usr/bin/${gnu_cmd}.backup"
fi
# Create symbolic link for BusyBox equivalent
sudo ln -s "$(command -v $busybox_cmd)" "/usr/bin/$gnu_cmd"
echo "Created symbolic link for $gnu_cmd -> $busybox_cmd"
# Remove executable bit from backed-up GNU command
if [ -e "/usr/bin/${gnu_cmd}.backup" ]; then
sudo chmod -x "/usr/bin/${gnu_cmd}.backup"
echo "Removed executable bit from ${gnu_cmd}.backup"
fi
else
echo "GNU command $gnu_cmd not found, skipping..."
fi
done
2024-03-31 13:30:10 -05:00
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
2024-03-19 17:45:11 -05:00
## Replace bash with busybox sh
2024-03-31 13:37:49 -05:00
printf "\n\nbusybox sh" >> "/etc/bash.bashrc"
## Add T2 Mac Compatibility
2024-04-01 12:30:24 -05:00
CODENAME=jammy
sudo curl -L -o /etc/apt/sources.list.d/t2.list -url "https://adityagarg8.github.io/t2-ubuntu-repo/t2.list"
echo "deb [signed-by=/etc/apt/trusted.gpg.d/t2-ubuntu-repo.gpg] https://github.com/AdityaGarg8/t2-ubuntu-repo/releases/download/${CODENAME} ./" >> /etc/apt/sources.list.d/t2.list
2024-04-01 12:22:38 -05:00
curl -L -url "https://adityagarg8.github.io/t2-ubuntu-repo/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/t2-ubuntu-repo.gpg >/dev/null
2024-03-31 13:37:49 -05:00
sudo apt update
2024-04-01 12:30:24 -05:00
sudo apt install linux-t2
2024-03-31 13:37:49 -05:00
sudo apt install apple-t2-audio-config tiny-dfr zstd
2024-04-01 12:22:38 -05:00
wget -url http://nodemixaholic.com:3002/nodemixaholic/apple-broadcom-firmware-arch/raw/branch/main/apple-bcm-firmware-14.0-1-any.pkg.tar.zst -o "apple-bcm-firmware-14.0-1-any.pkg.tar.zst"
2024-03-31 13:37:49 -05:00
zstd -d -c apple-bcm-firmware-14.0-1-any.pkg.tar.zst | tar -xvf -
sudo cp -r ./usr/* /usr/
sudo apt install iwd
sudo sed -i 's/^wifi\.backend.*/wifi.backend=iwd/' /etc/NetworkManager/NetworkManager.conf
sudo systemctl enable --now iwd
git clone https://github.com/kekrby/t2-better-audio
cd t2-better-audio
sudo ./install.sh
cd ..