add configuration files

This commit is contained in:
unset
2025-03-09 16:00:20 +01:00
committed by Quinn
commit 0bff70d604
51 changed files with 6970 additions and 0 deletions

View File

@@ -0,0 +1,97 @@
{
"keybinding-header": {
"type": "header",
"description": "Hotkeys to switch focus relative to the current window"
},
"left-key": {
"type": "keybinding",
"description": "Activate window to the left",
"default": "<Alt><Super>Left",
"value": "<Primary><Shift><Super>Left::"
},
"right-key": {
"type": "keybinding",
"description": "Activate window to the right",
"default": "<Alt><Super>Right",
"value": "<Primary><Shift><Super>Right::"
},
"up-key": {
"type": "keybinding",
"description": "Activate window above",
"default": "<Alt><Super>Up",
"value": "<Primary><Shift><Super>Up::"
},
"down-key": {
"type": "keybinding",
"description": "Activate window below",
"default": "<Alt><Super>Down",
"value": "<Primary><Shift><Super>Down::"
},
"under-key": {
"type": "keybinding",
"description": "Activate window under",
"default": "<Alt><Super>KP_Insert",
"tooltip": "Switch to the next window in the z-order that is overlapped by the current window. If the key combo is pressed again within 3 sec, the focus will change to the next window beneath the window that originally had the focus during the fist key combo press.",
"value": "<Alt><Super>KP_Insert"
},
"back-key": {
"type": "keybinding",
"description": "Undo the focus change",
"default": "",
"value": ""
},
"settings-header": {
"type": "header",
"description": "Other settings"
},
"next-focus": {
"type": "combobox",
"default": 2,
"options": {
"Closest to the current window": 0,
"Highest in the z-order": 1,
"Closest with a visible corner": 2
},
"description": "Activate the window that is...",
"tooltip": "When using the Left, Right, Above or Below hotkeys, activate the window that is either:\n- Closest to the current window: this might activate a window that is currently completely obscured by other windows.\n- Highest in the z-order: most recently focused; this might skip over visible windows that are closer to the current window.\n- Closest window with a visible corner: a compromise that is designed to be more like what most people would generally expect (I hope).",
"value": 2
},
"overlap-allowance": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 50,
"units": "pixels",
"step": 1,
"description": "Corner overlap allowance / minimum visibility",
"tooltip": "Sets how many pixels a corner can be obscured by other windows and still be considered a candidate window. Also sets the minimum amount of window visibility in order to qualify as a candidate window",
"dependency": "next-focus=2",
"value": 0
},
"boost-restriction": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 85,
"units": "priority",
"step": 1,
"description": "Increase the priority of direction alignment",
"tooltip": "Increasing this setting gives more priority to windows that occupy the same area as the current window in the desired direction, and less priority to widows that are at an offset but closer. Max 85%",
"dependency": "next-focus=2",
"value": 0
},
"include-minimized": {
"type": "switch",
"default": false,
"description": "Allow switching to minimized windows",
"dependency": "next-focus<1",
"value": false
},
"include-other-monitors": {
"type": "switch",
"default": false,
"description": "Allow switching to windows on other monitors",
"value": false
},
"__md5__": "2ce618f6a7268eae98b8e99dd8877463"
}