Refactor xow installation

This commit is contained in:
Manuel Thalmann 2023-06-21 21:45:52 +02:00
parent 14d5e038a5
commit f49d0554f0
4 changed files with 12 additions and 4 deletions

View file

@ -3,12 +3,11 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../../scripts/Arch/Config/SecureBoot/install.sh"; . "../../../scripts/Arch/Config/SecureBoot/install.sh";
. "../../../scripts/Arch/Software/nvidia-dkms/install.sh"; . "../../../scripts/Arch/Software/nvidia-dkms/install.sh";
. "../../../scripts/Arch/Software/xow/install.sh";
. "../../../scripts/Arch/Software/sddm/install.sh"; . "../../../scripts/Arch/Software/sddm/install.sh";
. "../../../scripts/Arch/Config/ssh-agent/install.sh"; . "../../../scripts/Arch/Config/ssh-agent/install.sh";
. "../../../scripts/Arch/Collections/personal.sh"; . "../../../scripts/Arch/Collections/personal.sh";
yay --noconfirm -Syu xow;
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \ NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
INSTALL_FONTS=0 \ INSTALL_FONTS=0 \
. "../../../scripts/Common/Config/UserProfile/install.sh"; . "../../../scripts/Common/Config/UserProfile/install.sh";

View file

@ -0,0 +1,3 @@
#!/bin/bash
yes | sudo xow-get-firmware.sh;
sudo systemctl enable --now xow;

View file

@ -3,14 +3,13 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../Software/yay/install.sh"; . "../../Software/yay/install.sh";
. "../../Software/nvidia-dkms/install.sh"; . "../../Software/nvidia-dkms/install.sh";
. "../../Software/xow/install.sh";
. "../Surface/install.sh"; . "../Surface/install.sh";
yay --noconfirm -Syu \ yay --noconfirm -Syu \
surface-dtx-daemon-bin \ surface-dtx-daemon-bin \
surface-control-bin; surface-control-bin;
yay --noconfirm -Syu xow;
sudo systemctl enable surface-dtx-daemon.service sudo systemctl enable surface-dtx-daemon.service
systemctl enable --user surface-dtx-userd.service systemctl enable --user surface-dtx-userd.service

View file

@ -0,0 +1,7 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu xow;
. "../../Config/xow/install.sh";
popd > /dev/null;