From facbdfbf5e244410d2ec2cec0a75c12259ca7f65 Mon Sep 17 00:00:00 2001 From: JohnnyRevay <65253638+jan-revay@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:35:56 +0100 Subject: [PATCH] source_packages_install.ps1: scroll-desktops - scroll on the bottom instead of top --- Windows_1X/source_packages_install.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Windows_1X/source_packages_install.ps1 b/Windows_1X/source_packages_install.ps1 index a550c5c45..dac2e4bc7 100644 --- a/Windows_1X/source_packages_install.ps1 +++ b/Windows_1X/source_packages_install.ps1 @@ -13,12 +13,14 @@ pushd ~/x/scroll-windows-v-desktops pip install -r requirements.txt pyinstaller --onefile scroll-desktops.py # TODO try adapting this position so that it works well on Win11 i.e. taskbar on the bottom +# Having the desktop scrolling area up is buggy because of focus on hover (cursor will move to the focused window +# and brak the flow when scrolling. $config = @" { "xMin": -1, "xMax": 10000, - "yMin": -1, - "yMax": 45, + "yMin": 2140, + "yMax": 10000, "printPosition": false } "@