Refactor xow
installation
This commit is contained in:
parent
54ab217936
commit
128acc5d90
4 changed files with 12 additions and 4 deletions
|
@ -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";
|
||||||
|
|
3
scripts/Arch/Config/xow/install.sh
Executable file
3
scripts/Arch/Config/xow/install.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
yes | sudo xow-get-firmware.sh;
|
||||||
|
sudo systemctl enable --now xow;
|
|
@ -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
|
||||||
|
|
||||||
|
|
7
scripts/Arch/Software/xow/install.sh
Executable file
7
scripts/Arch/Software/xow/install.sh
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||||
|
|
||||||
|
yay --noconfirm -Syu xow;
|
||||||
|
. "../../Config/xow/install.sh";
|
||||||
|
|
||||||
|
popd > /dev/null;
|
Loading…
Reference in a new issue