Skip to content

Commit

Permalink
source_packages_install.ps1: scroll-desktops - scroll on the bottom i…
Browse files Browse the repository at this point in the history
…nstead of top
  • Loading branch information
jan-revay authored Dec 19, 2024
1 parent 7652104 commit facbdfb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Windows_1X/source_packages_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
"@

Check notice

Code scanning / Psscriptanalyzer (reported by Codacy)

'echo' is an alias of 'Write-Output'. Alias can introduce possible problems and make scripts hard to maintain. Please consider changing alias to its full content. Note

'echo' is an alias of 'Write-Output'. Alias can introduce possible problems and make scripts hard to maintain. Please consider changing alias to its full content.
Expand Down

0 comments on commit facbdfb

Please sign in to comment.