37 lines
No EOL
667 B
Bash
Executable file
37 lines
No EOL
667 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
command_exists() { type "$1" &>/dev/null; }
|
|
|
|
chmod 700 ./distro-specific.bash
|
|
./distro-specific.bash
|
|
|
|
cd ./daily-use-pcs
|
|
chmod 700 ./setup-git.bash
|
|
./setup-git.bash
|
|
cd ..
|
|
|
|
cd install-stuff/
|
|
chmod 700 ./*.bash
|
|
./install-claws-mail.bash
|
|
./install-fish.bash
|
|
./install-librewolf.bash
|
|
./install-misc.sh
|
|
./install-qemu-libvirt.bash
|
|
./install-steam.bash
|
|
./install-vs-code.bash
|
|
./install-fonts.bash
|
|
./install-yt-music.bash
|
|
./install-vesktop.bash
|
|
cd ..
|
|
|
|
cd ./dotfiles
|
|
chmod 700 run-distro-de-script.sh
|
|
./run-distro-de-script.sh
|
|
chmod 700 restore.sh
|
|
./restore.sh
|
|
cd ..
|
|
|
|
if command_exists "rpm-ostree"; then
|
|
read -p "Press enter to reboot"
|
|
reboot
|
|
fi |