17 lines
269 B
Bash
17 lines
269 B
Bash
#!/bin/bash
|
|
if [[ $UID -ne 0 ]]; then
|
|
sudo /bin/bash "$0" "$@"
|
|
exit $?
|
|
fi
|
|
|
|
#btrfs property set -ts / ro false
|
|
steamos-readonly disable
|
|
|
|
pacman-key --init
|
|
pacman-key --populate archlinux
|
|
|
|
pacman -S ncdu
|
|
|
|
#btrfs property set -ts / ro true
|
|
steamos-readonly enable
|