1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- mkdir ~/Apps
- mkdir ~/Apps/Games
- mkdir ~/Donwloads
- mkdir ~/Videos
- mkdir ~/Pictures
- mkdir ~/Documents
- mkdir ~/Box
- cd
- mkdir /tmp/install
- cd /tmp/install
- #!/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/org.pwmt.zathura.desktop
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/mimeapps.list
- 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
- wget https://notabug.org/X5DragonFire/MinArch/raw/master/wifi.sh
- 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
- git clone https://aur.archlinux.org/yay.git
- cd yay
- makepkg -si
- cd /tmp/install
- yay -S --noconfirm aur/yambar-wayland
- yay -S --noconfirm aur/light
- sudo sh install.sh
|