Files
fancywin/fancywin.example.yaml
2026-08-20 09:06:37 +01:00

62 lines
1.6 KiB
YAML

# FancyWin configuration. Percentages are relative to each monitor's usable
# work area, so the Windows taskbar is automatically excluded.
version: 1
gap: 8
shift_drag: true
active_layout: focus
overlay:
enabled: true
color: "#00AEEF"
opacity: 90
border_width: 10
layouts:
# The wildcard is used for any monitor without a more specific entry.
- name: focus
monitor: "*"
zones:
- name: left
x: 0
y: 0
width: 25
height: 100
- name: middle
x: 25
y: 0
width: 50
height: 100
- name: right
x: 75
y: 0
width: 25
height: 100
# Other layouts remain available by name. Change active_layout above to
# switch layouts; a running FancyWin instance reloads the change.
- name: equal-thirds
monitor: "*"
zones:
- { name: left, x: 0, y: 0, width: 33.333, height: 100 }
- { name: middle, x: 33.333, y: 0, width: 33.334, height: 100 }
- { name: right, x: 66.667, y: 0, width: 33.333, height: 100 }
# Optional per-display override. Get the name from Windows Display Settings
# or the startup diagnostics, then uncomment and edit this block.
# - name: focus
# monitor: '\\.\DISPLAY2'
# zones:
# - { name: main, x: 0, y: 0, width: 70, height: 100 }
# - { name: side, x: 70, y: 0, width: 30, height: 100 }
excluded_apps:
- mstsc.exe
- games
hotkeys:
- { keys: "win+alt+left", action: previous_zone }
- { keys: "win+alt+right", action: next_zone }
- { keys: "win+alt+1", action: zone_1 }
- { keys: "win+alt+2", action: zone_2 }
- { keys: "win+alt+3", action: zone_3 }