WinJump
WinJump copied to clipboard
Readme could be more clear on a few points
Hello
- In the "Syntax" section of the readme, it says that there are three blocks. It then gives around five list items. Which are blocks, and which are not? Since it's JSON, it's absurdly sensitive to mistakes.
- It doesn't tell you what to do, if you don't want some of the features. For example, all I want to be able to do, is quick switch to desktops by
Win+Ctrl+digit. I don't want any of the other stuff. But how do I disable the other features? - Following on from the above, perhaps a config file sample that only does the jumping, which I guess is the original purpose, and none of the other stuff, can be provided as well as the full sample you already give?
Thanks
@XLTechie Sorry for the delay, been busy lately. I'm working on a user-friendly UI to replace the JSON configuration.
Until then - I improved the README a bit. By blocks, I just mean "JSON keys",
Here's a config file that I believe does what you want:
{
"toggle-groups": [],
"jump-to": [
{
"shortcut": "win+ctrl+d1",
"desktop": 1
},
{
"shortcut": "win+ctrl+d2",
"desktop": 2
},
{
"shortcut": "win+ctrl+d3",
"desktop": 3
},
{
"shortcut": "win+ctrl+d4",
"desktop": 4
},
{
"shortcut": "win+ctrl+d5",
"desktop": 5
},
{
"shortcut": "win+ctrl+d6",
"desktop": 6
},
{
"shortcut": "win+ctrl+d7",
"desktop": 7
},
{
"shortcut": "win+ctrl+d8",
"desktop": 8
},
{
"shortcut": "win+ctrl+d9",
"desktop": 9
},
{
"shortcut": "win+ctrl+d10",
"desktop": 10
}
]
}
Hi @widavies, thanks.
UI design is a PITA, I well know. :)
A UI should be nice (though make sure it works with Narrator/other accessibility tools such as NVDA, please), but even a more human friendly ini file format would be a big step. Something like configobj generates, depending on the base language (I forget, would have to check the repo).