Add settings for Logitech G903

This commit is contained in:
Manuel Thalmann 2024-03-28 13:17:08 +01:00
parent f8f15ba9dd
commit 7d19a83bf0
3 changed files with 11 additions and 0 deletions

View file

@ -9,6 +9,11 @@ function installDrivers() {
. "$dir/../../../scripts/Arch/Software/bt-dualboot/install.sh";
}
function initializeConfig() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Unix/Devices/Logitech G903/install.sh";
}
. "../../../scripts/Arch/OS/install.sh";
popd > /dev/null;

View file

@ -16,6 +16,7 @@ function initializeConfig() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Common/Config/Steam/hidpi.sh";
. "$dir/../../../scripts/Unix/Devices/Surface Book 2/install.sh";
. "$dir/../../../scripts/Unix/Devices/Logitech G903/install.sh";
}
. "../../../scripts/Arch/OS/install.sh";

View file

@ -0,0 +1,5 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../Config/KDE/input.sh";
addInputConfig "1133" "16519" "Logitech G903 LS" "PointerAccelerationProfile=1";
popd > /dev/null;