From 72dc352c1ab0e94ff931ac2dbf7552237c5e1ccf Mon Sep 17 00:00:00 2001 From: David Wales Date: Tue, 18 Nov 2025 00:27:43 -0800 Subject: [PATCH] Add exfatprogs to base packages (#3448) Complements 279259d5479707cfae863bfac66c4c641ee76a89 --- default/bash/functions | 3 +-- install/omarchy-base.packages | 1 + migrations/1763409182.sh | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 migrations/1763409182.sh diff --git a/default/bash/functions b/default/bash/functions index 7ced658a..5ec71255 100644 --- a/default/bash/functions +++ b/default/bash/functions @@ -15,7 +15,7 @@ iso2sd() { fi } -# Format an entire drive for a single partition using ext4 +# Format an entire drive for a single partition using exFAT format-drive() { if [ $# -ne 2 ]; then echo "Usage: format-drive " @@ -36,7 +36,6 @@ format-drive() { sudo partprobe "$1" || true sudo udevadm settle || true - omarchy-pkg-add exfatprogs sudo mkfs.exfat -n "$2" "$partition" echo "Drive $1 formatted as exFAT and labeled '$2'." diff --git a/install/omarchy-base.packages b/install/omarchy-base.packages index 78c72bfe..e42ef822 100644 --- a/install/omarchy-base.packages +++ b/install/omarchy-base.packages @@ -21,6 +21,7 @@ docker-buildx docker-compose dust evince +exfatprogs expac eza fastfetch diff --git a/migrations/1763409182.sh b/migrations/1763409182.sh new file mode 100644 index 00000000..74199ce4 --- /dev/null +++ b/migrations/1763409182.sh @@ -0,0 +1,3 @@ +echo "Install exfatprogs to support exfat in format-drive" + +omarchy-pkg-add exfatprogs