19 lines
741 B
Bash
Executable File
19 lines
741 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Make sure build scripts are executable
|
|
chmod +x "./"{"mkarchiso","run_before_squashfs.sh"}
|
|
|
|
# Get Antergos wallpaper for installed system
|
|
wget -qN --show-progress -P "airootfs/root/" "https://raw.githubusercontent.com/Antergos/wallpapers/master/antergos-wallpaper.png"
|
|
|
|
# Get live session wallpaper
|
|
wget -qN --show-progress -P "airootfs/root/" "https://raw.githubusercontent.com/Antergos/wallpapers/master/antergos-wallpaper.png"
|
|
cp airootfs/root/antergos-wallpaper.png airootfs/root/livewall.png
|
|
|
|
# Get Antergos icon for SDDM avatar
|
|
wget -qN --show-progress -O "airootfs/root/liveuser.png" "https://avatars.githubusercontent.com/u/17977612"
|
|
|
|
# Build liveuser skel
|
|
cd "airootfs/root/antergos-skel-liveuser"
|
|
makepkg -f
|