2024-07-10 13:21:06 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
command_exists() { type "$1" &>/dev/null; }
|
2023-10-10 13:27:57 -05:00
|
|
|
|
2023-09-10 16:55:31 -05:00
|
|
|
chmod 700 ./distro-specific.bash
|
|
|
|
./distro-specific.bash
|
2023-09-10 12:35:10 -05:00
|
|
|
|
2023-09-10 16:55:31 -05:00
|
|
|
cd ./daily-use-pcs
|
|
|
|
chmod 700 ./setup-git.bash
|
|
|
|
./setup-git.bash
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd install-stuff/
|
|
|
|
chmod 700 ./*.bash
|
2024-03-17 19:34:11 -05:00
|
|
|
./install-claws-mail.bash
|
2023-10-10 13:27:57 -05:00
|
|
|
./install-fish.bash
|
|
|
|
./install-librewolf.bash
|
2023-11-20 12:28:28 -06:00
|
|
|
./install-misc.sh
|
2023-10-10 13:27:57 -05:00
|
|
|
./install-qemu-libvirt.bash
|
|
|
|
./install-steam.bash
|
|
|
|
./install-vs-code.bash
|
2024-04-20 20:35:22 -05:00
|
|
|
./install-fonts.bash
|
2024-07-10 13:21:06 -05:00
|
|
|
./install-yt-music.bash
|
|
|
|
./install-vesktop.bash
|
2023-10-10 13:27:57 -05:00
|
|
|
cd ..
|
2023-11-18 20:02:28 -06:00
|
|
|
|
|
|
|
cd ./dotfiles
|
2024-07-10 14:38:33 -05:00
|
|
|
chmod 700 run-distro-de-script.sh
|
|
|
|
./run-distro-de-script.sh
|
2023-11-18 20:02:28 -06:00
|
|
|
chmod 700 restore.sh
|
|
|
|
./restore.sh
|
|
|
|
cd ..
|
2024-07-10 13:21:06 -05:00
|
|
|
|
|
|
|
if command_exists "rpm-ostree"; then
|
|
|
|
read -p "Press enter to reboot"
|
|
|
|
reboot
|
|
|
|
fi
|