commit d3c301424ebb7cc4e6fc6ebeb1e35ad739e38951 Author: Terry Date: Mon Nov 14 21:02:15 2022 -0500 initial diff --git a/ncdu-install.sh b/ncdu-install.sh new file mode 100644 index 0000000..a5f3c55 --- /dev/null +++ b/ncdu-install.sh @@ -0,0 +1,16 @@ +#!/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