13 lines
534 B
Bash
13 lines
534 B
Bash
#!/bin/bash
|
|
set -e # we do not fail here :chameleon:
|
|
# curl -sSL https://raw.githubusercontent.com/PrincessPi3/general-scripts-and-system-ssssssetup/refs/heads/main/customscripts/steam_deck_setup.sh | "$SHELL"
|
|
# passwd
|
|
echo -e "\nsetting os to be writable\n"
|
|
sudo steamos-readonly disable
|
|
echo -e "\ninitalizing keys\n"
|
|
sudo pacman-key --init
|
|
echo -e "\npopulatiing keys\n"
|
|
sudo pacman-key --populate archlinux holo
|
|
echo -e "\nupdatikng repos\n"
|
|
sudo pacman -Syu
|
|
echo -e "\nall done!~ :3 install shit wikth pacman -S <package name>\n" |