From d6883d4b04fc262df829c61bf1ec08bf61b96d19 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Tue, 7 Jul 2026 21:52:07 +0200 Subject: Update pacman provisioning --- provision | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'provision') diff --git a/provision b/provision index e99d633..da1eaab 100755 --- a/provision +++ b/provision @@ -18,8 +18,13 @@ else privilege="sudo" else if command -v pacman &> /dev/null; then - command_name="pacman" - install_command="-Sy" + if [[ "$1" == "flatpak" ]]; then + command_name="flatpak" + install_command="install" + else + command_name="pacman" + install_command="-Sy" + fi privilege="sudo" else if command -v apt &> /dev/null; then -- cgit