From ffe7968f5f7e332e48493d9ec4c488f58b3e3767 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Wed, 25 Oct 2023 20:53:17 -0700 Subject: [PATCH] fix: Add --noconfirm to OpenTabletDriver install step Fixes #467 --- .../deck/shared/usr/share/ublue-os/just/30-distrobox.just | 2 +- .../desktop/shared/usr/share/ublue-os/just/30-distrobox.just | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system_files/deck/shared/usr/share/ublue-os/just/30-distrobox.just b/system_files/deck/shared/usr/share/ublue-os/just/30-distrobox.just index 86c66258..32f3e66b 100644 --- a/system_files/deck/shared/usr/share/ublue-os/just/30-distrobox.just +++ b/system_files/deck/shared/usr/share/ublue-os/just/30-distrobox.just @@ -114,7 +114,7 @@ install-opentabletdriver: if grep -qvz "arch" <<< $(distrobox list); then \ distrobox-create --nvidia --image ghcr.io/ublue-os/arch-distrobox:latest -n arch -Y; \ fi && \ - distrobox enter -n arch -- ' paru -S opentabletdriver' && \ + distrobox enter -n arch -- ' paru -S opentabletdriver --noconfirm' && \ mkdir -p ~/.config/systemd/user/ && \ rm -f ~/.config/systemd/user/arch-opentabletdriver.service && \ wget https://raw.githubusercontent.com/ublue-os/bazzite/main/post_install_files/OpenTabletDriver/opentabletdriver.service -O ~/.config/systemd/user/arch-opentabletdriver.service && \ diff --git a/system_files/desktop/shared/usr/share/ublue-os/just/30-distrobox.just b/system_files/desktop/shared/usr/share/ublue-os/just/30-distrobox.just index d7e00f4f..dc3530b5 100644 --- a/system_files/desktop/shared/usr/share/ublue-os/just/30-distrobox.just +++ b/system_files/desktop/shared/usr/share/ublue-os/just/30-distrobox.just @@ -150,7 +150,7 @@ install-opentabletdriver: if grep -qvz "arch" <<< $(distrobox list); then \ distrobox-create --nvidia --image ghcr.io/ublue-os/arch-distrobox:latest -n arch -Y; \ fi && \ - distrobox enter -n arch -- ' paru -S opentabletdriver' && \ + distrobox enter -n arch -- ' paru -S opentabletdriver --noconfirm' && \ mkdir -p ~/.config/systemd/user/ && \ rm -f ~/.config/systemd/user/arch-opentabletdriver.service && \ wget https://raw.githubusercontent.com/ublue-os/bazzite/main/post_install_files/OpenTabletDriver/opentabletdriver.service -O ~/.config/systemd/user/arch-opentabletdriver.service && \