9 lines
357 B
Bash
Executable file
9 lines
357 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
. "../../../scripts/Common/Config/Steam/hidpi.sh";
|
|
. "../../../scripts/Unix/Devices/Surface Book 2/install.sh";
|
|
. "../../../scripts/Unix/Devices/Logitech G903/install.sh";
|
|
|
|
# Because, as it looks, Surface Books are fucking stupid.
|
|
. "$dir/../../../scripts/Common/Config/GRUB/verbose.sh";
|
|
popd > /dev/null;
|