-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQemu_Boot_Me
More file actions
20 lines (18 loc) · 796 Bytes
/
Qemu_Boot_Me
File metadata and controls
20 lines (18 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
sudo curl -L https://raw.githubusercontent.com/GlitchLinux/BORDERIZE/refs/heads/main/borderize -o /usr/local/bin/borderize && sudo chmod +x /usr/local/bin/borderize
cd /tmp
wget "https://glitchlinux.wtf/FILES/Qemu-Boot-Disk/qemu-uefi.sh"
wget "https://glitchlinux.wtf/FILES/Qemu-Boot-Disk/qemu-bios.sh"
sudo cp qemu-bios.sh /
sudo cp qemu-uefi.sh /
sudo chmod +x /qemu-uefi.sh
sudo chmod +x /qemu-bios.sh
sudo cp /qemu-uefi.sh /usr/local/bin/qemu-uefi
sudo cp /qemu-bios.sh /usr/local/bin/qemu-bios
sudo chmod +x /usr/local/bin/qemu-uefi
sudo chmod +x /usr/local/bin/qemu-bios
echo ""
echo "QEMU Boot-Me scripts installed to disk" > /tmp/qemu-boot-me-message
echo " Execute With qemu-uefi or qemu-bios" >> /tmp/qemu-boot-me-message
cat /tmp/qemu-boot-me-message | borderize
echo ""