Files
.dotfiles/setup.sh
2025-10-18 13:33:05 +02:00

31 lines
713 B
Bash

#!/bin/bash
sudo pacman -Syu --noconfirm\
cachyos-gaming-meta \
cachyos-gaming-applications \
dysk \
htop \
nvim \
godot \
discord \
obs-studio \
vlc \
brave-bin
paru -Syu --noconfirm \
teamspeak \
protonup-qt \
brave-bin \
prismlauncher \
bottles \
signal-desktop
git clone https://github.com/DerTyp7/.dotfiles.git ~/.config/
rsync -a ~/.config/.dotfiles/ ~/.config/ && rm -rf ~/.config/.dotfiles
read -r -p "Reboot now? (Y/n) " reply
if [[ $reply =~ ^[Yy] ]]; then
sudo reboot now
else
exit 0
fi