From d3c301424ebb7cc4e6fc6ebeb1e35ad739e38951 Mon Sep 17 00:00:00 2001 From: Terry Date: Mon, 14 Nov 2022 21:02:15 -0500 Subject: [PATCH] initial --- ncdu-install.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ncdu-install.sh 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