12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- mkdir ~/Apps
- mkdir ~/Apps/Games
- #!/bin/bash
- echo "Choose an Desktop or Laptop:"
- echo "1. Laptop"
- echo "2. Desktop"
- read -p "Enter your choice (1 or 2): " choice
- if [ "$choice" == "1" ]; then
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/laptop/fuzzel.ini
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/laptop/foot.ini
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/laptop/config.yml
- elif [ "$choice" == "2" ]; then
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/desktop/fuzzel.ini
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/desktop/foot.ini
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/desktop/config.yml
- else
- echo "You Must Choose 1.Laptop or 2.Desktop"
- fi
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/install.sh
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/post.sh
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/configs/init
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/bashrc
- mkdir ~/.config/river
- mkdir ~/.config/yambar
- mkdir ~/.config/fuzzel
- mkdir ~/.config/foot
- mv init ~/.config/river
- mv config.yml ~/.config/yambar
- mv fuzzel.ini ~/.config/fuzzel
- mv foot.ini ~/.config/foot
- mv bashrc ~/.bashrc
|