-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccessibility.example.toml
More file actions
754 lines (672 loc) · 25 KB
/
accessibility.example.toml
File metadata and controls
754 lines (672 loc) · 25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
# =============================================================================
# FloatWM Accessibility Configuration
# =============================================================================
#
# This configuration is optimized for users with accessibility needs.
# It includes larger text, high contrast settings, keyboard-friendly navigation,
# and adjustments for users with motor or visual impairments.
#
# USE CASE: Perfect for users who need accessibility features including:
# - Visual impairments (low vision, color blindness)
# - Motor impairments (limited mobility, repetitive strain injury)
# - Cognitive considerations (ADHD, autism spectrum)
# - General accessibility preferences
#
# ACCESSIBILITY FEATURES:
# - Larger window sizes for better visibility
# - High contrast color schemes (where applicable)
# - Keyboard-focused navigation (minimal mouse dependence)
# - Slower, smoother animations (reduced motion sensitivity)
# - Larger hit targets for easier interaction
# - Sticky keys and modifier key options
# - Audio feedback for actions (if supported)
#
# TO USE: Copy this file to ~/.config/floatwm/floatwm.toml
# cp docs/examples/accessibility.example.toml ~/.config/floatwm/floatwm.toml
#
# =============================================================================
# -----------------------------------------------------------------------------
# Focus Behavior
# -----------------------------------------------------------------------------
#
# RECOMMENDATION FOR ACCESSIBILITY: "click" is often most predictable and
# controllable for users with motor impairments or cognitive considerations.
#
# OPTIONS:
# - "click": Most predictable, requires deliberate action
# - "followmouse": May be too automatic for some users
# - "sloppy": Balance between automatic and control
#
focus_behavior = "click"
# -----------------------------------------------------------------------------
# Accessibility Settings
# -----------------------------------------------------------------------------
#
# Core accessibility settings that affect FloatWM's behavior.
#
[accessibility]
# Enable accessibility features
# When true: Enables all accessibility enhancements
# DEFAULT: true (this is an accessibility config after all)
enabled = true
# Reduced motion mode
# When true: Minimizes animations, transitions, and spatial movement
# RECOMMENDED: true for users with motion sensitivity or vestibular disorders
# BENEFITS: Reduces dizziness, nausea, and distraction
reduced_motion = true
# High contrast mode
# When true: Uses high contrast colors for window borders, decorations
# RECOMMENDED: true for users with low vision or color blindness
# NOTE: FloatWM's theming system must support this
high_contrast = true
# Large text mode
# When true: Increases font sizes in window decorations, tooltips
# RECOMMENDED: true for users with low vision
# NOTE: FloatWM's UI system must support this
large_text = true
# Screen reader support
# When true: Emits events/signals compatible with screen readers (AT-SPI)
# RECOMMENDED: true for users who use screen readers
# NOTE: Requires AT-SPI support to be implemented
screen_reader_support = true
# Audio feedback
# When true: Plays sounds for actions (window focus, close, etc.)
# RECOMMENDED: true for users with visual impairments
# NOTE: Requires sound system integration
audio_feedback = true
# Audio feedback volume (0.0 - 1.0)
# DEFAULT: 0.5
# Adjust based on your hearing preferences
audio_volume = 0.5
# Sticky keys
# When true: Modifier keys (Shift, Ctrl, Alt, Super) remain active until
# another key is pressed, eliminating need to hold multiple keys
# RECOMMENDED: true for users with motor impairments or limited hand mobility
# BENEFITS: Can press keys sequentially instead of simultaneously
sticky_keys = true
# Slow keys
# When true: Keys must be held for a minimum duration before being accepted
# RECOMMENDED: true for users with hand tremors or uncontrolled movements
# NOTE: Requires system-level slow keys support
slow_keys = false
# Bounce keys
# When true: Ignores rapid repeated key presses
# RECOMMENDED: true for users with motor control issues
# NOTE: Requires system-level bounce keys support
bounce_keys = false
# -----------------------------------------------------------------------------
# Visual Accessibility Settings
# -----------------------------------------------------------------------------
#
# Settings specifically for users with visual impairments.
#
[visual_accessibility]
# Window border width (pixels)
# THICKER borders are easier to see
# DEFAULT: 4 (standard), 8-12 (accessibility)
# RECOMMENDED: 8-10 for low vision
border_width = 10
# Window border color (high contrast)
# FORMAT: Hex color code or color name
# RECOMMENDED: Bright colors that contrast with desktop background
border_color = "#FFFFFF" # White for high contrast
# Focused window border color
# Should be distinctly different from unfocused windows
border_focused_color = "#00FF00" # Bright green for high visibility
# Window title bar height (pixels)
# TALLER title bars are easier to click and see
# DEFAULT: 24 (standard), 32-40 (accessibility)
# RECOMMENDED: 36 for better visibility
titlebar_height = 36
# Title bar font size (points)
# DEFAULT: 10-12 (standard), 14-18 (accessibility)
# RECOMMENDED: 16 for readability
titlebar_font_size = 16
# Window shadow/outline intensity
# Helps distinguish overlapping windows
# VALID RANGE: 0.0 - 1.0
# DEFAULT: 0.3 (subtle), 0.6-0.8 (accessibility)
# RECOMMENDED: 0.7 for clear window separation
shadow_intensity = 0.7
# Minimum window size (width, height)
# Prevents windows from becoming too small to interact with
# DEFAULT: [200, 150] (standard), [300, 200] (accessibility)
# RECOMMENDED: [350, 250] for usability
min_window_size = [350, 250]
# Cursor size (pixels)
# Larger cursor is easier to see and track
# DEFAULT: 24 (standard), 32-48 (accessibility)
# RECOMMENDED: 40 for visibility
# NOTE: Requires system cursor settings
cursor_size = 40
# -----------------------------------------------------------------------------
# Motor Accessibility Settings
# -----------------------------------------------------------------------------
#
# Settings for users with motor impairments or limited mobility.
#
[motor_accessibility]
# Keyboard navigation mode
# When true: All window management accessible via keyboard
# RECOMMENDED: true for users who can't use mouse
keyboard_navigation = true
# Movement step size (pixels)
# LARGER steps mean fewer keypresses to move windows
# DEFAULT: 50 (standard), 100-150 (accessibility)
# RECOMMENDED: 120 for fewer keypresses
movement_step_size = 120
# Movement delay (milliseconds)
# Delay between auto-repeated movement commands
# LOWER values allow faster continuous movement
# DEFAULT: 100 (standard), 50-80 (accessibility)
# RECOMMENDED: 60 for responsive movement
movement_delay = 60
# Click assist
# When true: Automatically focuses windows on hover for easier clicking
# RECOMMENDED: true for users with difficulty aiming mouse
# NOTE: Works best with focus_behavior = "sloppy"
click_assist = false
# Dwell click (automatic click after holding still)
# When true: Automatically clicks after cursor dwells in one place
# RECOMMENDED: true for users who can't click physically
# NOTE: Requires dwell time configuration
dwell_click = false
# Dwell time (milliseconds)
# How long cursor must dwell before triggering click
# DEFAULT: 500-1000ms
# RECOMMENDED: 750ms (balance of speed and accuracy)
dwell_time = 750
# -----------------------------------------------------------------------------
# Cognitive Accessibility Settings
# -----------------------------------------------------------------------------
#
# Settings for users with cognitive considerations (ADHD, autism, etc.).
#
[cognitive_accessibility]
# Simplified mode
# When true: Reduces visual clutter, minimizes distractions
# RECOMMENDED: true for users easily distracted by visual elements
simplified_mode = true
# Focus mode
# When true: Dim or hide non-focused windows
# RECOMMENDED: true for users who need help focusing
# BENEFITS: Reduces visual distraction from background windows
focus_mode = false
# Notification minimization
# When true: Reduces frequency and prominence of notifications
# RECOMMENDED: true for users sensitive to interruptions
minimize_notifications = true
# Predictive window placement
# When true: Places windows in predictable positions
# RECOMMENDED: true for users who prefer consistency
# BENEFITS: Reduces cognitive load of finding windows
predictive_placement = true
# Workspace persistence
# When true: Remembers window positions across workspace switches
# RECOMMENDED: true for users who need spatial consistency
workspace_persistence = true
# -----------------------------------------------------------------------------
# Spatial Settings - Accessibility Optimized
# -----------------------------------------------------------------------------
#
# Accessibility-optimized spatial settings for users with XReal glasses.
# Emphasizes comfort and reduces motion sensitivity.
#
[spatial_settings]
# Enable spatial window movement
# DEFAULT: false
# RECOMMENDATION: Enable cautiously, with reduced_motion = true
# WARNING: Spatial movement may cause dizziness in some users
enabled = false
# Accessibility-optimized sensitivity
# MUCH LOWER than default to minimize motion
# VALID RANGE: 0.0 - 10.0
# ACCESSIBILITY RECOMMENDED: 0.2 - 0.4 (very subtle, if enabled at all)
sensitivity = 0.3
# Maximum movement range
# SMALLER range to minimize visual disruption
# VALID RANGE: 1 - 2000 pixels
# ACCESSIBILITY RECOMMENDED: 50 - 100 (minimal movement)
max_range = 75
# Smoothing factor - maximum smoothness
# VERY HIGH smoothing for gentle, non-jarring movement
# VALID RANGE: 0.0 - 1.0
# ACCESSIBILITY RECOMMENDED: 0.8 - 0.95 (very smooth)
smoothing = 0.9
# Calibration profile for accessibility
# OPTIONS: "default", "gentle", "accessibility"
# RECOMMENDATION: "gentle" for minimal motion
calibration_profile = "gentle"
# Motion comfort level
# OPTIONS: "low", "medium", "high"
# RECOMMENDATION: "low" for users with motion sensitivity
motion_comfort = "low"
# -----------------------------------------------------------------------------
# Keybindings - Accessibility Optimized
# -----------------------------------------------------------------------------
#
# Accessibility-focused keybindings with emphasis on:
# - Easy-to-reach keys (reduced hand stretching)
# - Minimal modifier combinations (easier for limited mobility)
# - Multiple binding options (alternatives for different abilities)
# - Sticky keys friendly (can press sequentially)
#
[keybindings]
# -------------------------------------------------------------------------
# Essential Keybindings - Multiple Options
# -------------------------------------------------------------------------
#
# Provide multiple ways to trigger essential actions for flexibility.
#
# Spawn terminal - multiple easy options
# Options: Single-modifier or easy-to-reach combinations
spawn_terminal = [
"Super+Return", # Standard (sticky keys friendly)
"Control+Alt+t", # Alternative (common terminal shortcut)
"Super+Shift+t" # Alternative (easy to remember)
]
# Close window - multiple easy options
close_window = [
"Super+Shift+q", # Standard (sticky keys friendly)
"Super+F4", # Alternative (common Windows shortcut)
"Alt+F4" # Alternative (traditional X11 shortcut)
]
# -------------------------------------------------------------------------
# Window Movement - Accessibility Optimized
# -------------------------------------------------------------------------
#
# Use arrow keys instead of hjkl for more intuitive navigation.
# Also provide both one-modifier and two-modifier options.
#
# Movement with arrow keys (most intuitive)
move_left = ["Super+Shift+Left"]
move_right = ["Super+Shift+Right"]
move_up = ["Super+Shift+Up"]
move_down = ["Super+Shift+Down"]
# Alternative: Single modifier for easier pressing (if supported)
# move_left = ["Alt+Left"]
# move_right = ["Alt+Right"]
# move_up = ["Alt+Up"]
# move_down = ["Alt+Down"]
# Alternative: Function keys (easy to reach, large targets)
# move_left = ["Super+F1"]
# move_right = ["Super+F2"]
# move_up = ["Super+F3"]
# move_down = ["Super+F4"]
# -------------------------------------------------------------------------
# Window Focus - Keyboard Navigation
# -------------------------------------------------------------------------
#
# For users who can't use mouse, provide comprehensive keyboard navigation.
#
# Focus next window (cycle)
focus_next = ["Super+Tab", "Alt+Tab"]
# Focus previous window (cycle)
focus_prev = ["Super+Shift+Tab", "Alt+Shift+Tab"]
# Focus next window in direction
focus_north = ["Super+Up"]
focus_south = ["Super+Down"]
focus_east = ["Super+Right"]
focus_west = ["Super+Left"]
# -------------------------------------------------------------------------
# Workspace Switching - Simplified
# -------------------------------------------------------------------------
#
# Use simplified workspace switching with clear, easy-to-remember keys.
#
# Use only first 5 workspaces to reduce cognitive load
workspace_1 = ["Super+1"]
workspace_2 = ["Super+2"]
workspace_3 = ["Super+3"]
workspace_4 = ["Super+4"]
workspace_5 = ["Super+5"]
# Skip workspace 6-10 for simplicity (can uncomment if needed)
# workspace_6 = ["Super+6"]
# workspace_7 = ["Super+7"]
# workspace_8 = ["Super+8"]
# workspace_9 = ["Super+9"]
# workspace_10 = ["Super+0"]
# Workspace navigation - simplified
workspace_next = ["Super+Right"] # Move to next workspace
workspace_prev = ["Super+Left"] # Move to previous workspace
# -------------------------------------------------------------------------
# Scratchpad - Easy Access
# -------------------------------------------------------------------------
# Fewer scratchpad slots for simplicity
scratchpad_0 = ["Super+grave"] # Primary
scratchpad_1 = ["Super+F1"] # Secondary
# -------------------------------------------------------------------------
# Special Accessibility Keybindings
# -------------------------------------------------------------------------
# Toggle accessibility features
# toggle_accessibility = ["Super+Shift+a"]
# Toggle reduced motion
# toggle_reduced_motion = ["Super+Shift+r"]
# Toggle high contrast
# toggle_high_contrast = ["Super+Shift+h"]
# Toggle audio feedback
# toggle_audio_feedback = ["Super+Shift+s"]
# Toggle focus mode
# toggle_focus_mode = ["Super+Shift+f"]
# -------------------------------------------------------------------------
# Spatial Mode Toggle
# -------------------------------------------------------------------------
toggle_spatial = ["Super+s"]
# -----------------------------------------------------------------------------
# Window Rules - Accessibility Optimized
# -----------------------------------------------------------------------------
#
# Accessibility-focused window rules with larger sizes and predictable
# placement for easier interaction.
#
# [[window_rules]]
# Terminal - large size for visibility
# class = "Termite"
# size = [1000, 800] # Larger than default
# float = true
# position = [50, 50] # Predictable position
# [[window_rules]]
# Browser - large size, predictable placement
# class = "Firefox"
# size = [1600, 900] # Large for readability
# float = true
# position = [0, 0] # Always top-left
# [[window_rules]]
# Email client - large text, easy to read
# class = "Thunderbird"
# size = [1400, 900]
# float = true
# position = [50, 50]
# [[window_rules]]
# Communication apps - large for readability
# class = "Slack"
# size = [1200, 800]
# float = true
# [[window_rules]]
# class = "discord"
# size = [1200, 800]
# float = true
# [[window_rules]]
# File manager - large icons, easier to click
# class = "Thunar"
# size = [1200, 800]
# float = true
# [[window_rules]]
# System settings - large for accessibility
# class = "gnome-control-center"
# size = [1000, 700]
# float = true
# sticky = true # Keep accessible
# -----------------------------------------------------------------------------
# Scratchpad Configuration - Accessibility
# -----------------------------------------------------------------------------
#
# Accessibility-focused scratchpad with larger windows.
#
[scratchpad]
slot_count = 5 # Fewer slots for simplicity
default_width = 1100 # Larger windows
default_height = 800
center_on_show = true
remember_position = true
# -----------------------------------------------------------------------------
# Accessibility Application Launching
# -----------------------------------------------------------------------------
#
# Quick launch commands for accessibility tools and frequently-used apps.
#
# [[spawn_commands]]
# Screen magnifier
# name = "magnifier"
# command = "magnifier"
# terminal = false
# keybindings = ["Super+Shift+m"]
# [[spawn_commands]]
# Screen reader
# name = "screen-reader"
# command = "orca"
# terminal = false
# keybindings = ["Super+Shift+r"]
# [[spawn_commands]]
# On-screen keyboard
# name = "onboard"
# command = "onboard"
# terminal = false
# keybindings = ["Super+Shift+k"]
# [[spawn_commands]]
# Accessibility settings
# name = "a11y-settings"
# command = "gnome-control-center a11y"
# terminal = false
# keybindings = ["Super+Shift+a"]
# [[spawn_commands]]
# Text-to-speech
# name = "espeak"
# command = "espeak"
# terminal = true
# keybindings = ["Super+Shift+s"]
# =============================================================================
# ACCESSIBILITY WORKFLOW EXAMPLES
# =============================================================================
#
# MOTOR IMPAIRMENT WORKFLOW:
# - Use sticky keys: press modifiers sequentially, not simultaneously
# - Use arrow keys for movement (more intuitive than hjkl)
# - Enable click assist if mouse use is difficult
# - Use dwell click if physical clicking is not possible
# - Larger movement steps reduce number of keypresses needed
#
# VISUAL IMPAIRMENT WORKFLOW:
# - Enable high contrast mode
# - Enable large text mode
# - Enable screen reader support
# - Use audio feedback for action confirmation
# - Larger window sizes improve visibility
# - Thicker window borders improve visibility
#
# COGNITIVE CONSIDERATIONS WORKFLOW:
# - Enable simplified mode (reduce visual clutter)
# - Use fewer workspaces (5 instead of 10)
# - Enable predictive window placement
# - Enable workspace persistence
# - Minimize notifications
# - Consistent keybindings reduce cognitive load
#
# MOTION SENSITIVITY WORKFLOW:
# - Enable reduced motion mode
# - Disable spatial mode or use minimal settings
# - Use maximum smoothing for spatial movement
# - Avoid rapid window movements
# - Use slower, more deliberate transitions
#
# =============================================================================
# ACCESSIBILITY CUSTOMIZATION GUIDE
# =============================================================================
#
# 1. IDENTIFY YOUR NEEDS:
# - Visual, motor, cognitive, or combination?
# - Which features help most?
# - What are your primary challenges?
#
# 2. ADJUST VISUAL SETTINGS:
# - Increase border_width to 8-12
# - Increase titlebar_font_size to 14-18
# - Enable high_contrast
# - Increase min_window_size for usability
#
# 3. CUSTOMIZE KEYBINDINGS:
# - Use keys you can comfortably press
# - Add multiple binding options
# - Enable sticky_keys for sequential pressing
# - Use arrow keys instead of hjkl
#
# 4. OPTIMIZE MOVEMENT:
# - Increase movement_step_size to 100-150
# - Reduce number of workspaces if overwhelming
# - Use predictable window placement
# - Enable workspace_persistence
#
# 5. TEST AND REFINE:
# - Use configuration for a few days
# - Note what's difficult or uncomfortable
# - Adjust settings gradually
# - Don't change too much at once
#
# =============================================================================
# SYSTEM-LEVEL ACCESSIBILITY SETTINGS
# =============================================================================
#
# FloatWM works best when combined with system accessibility features:
#
# LINUX (GNOME):
# Settings → Universal Access
# - Enable sticky keys
# - Enable slow keys
# - Enable bounce keys
# - Enable screen reader (Orca)
# - Enable screen magnifier
#
# LINUX (KDE):
# System Settings → Accessibility
# - Activate sticky keys
# - Activate bounce keys
# - Enable screen reader
#
# ORCA SCREEN READER:
# sudo apt install orca # Debian/Ubuntu
# orca --setup # Initial configuration
# orca --replace # Start Orca
#
# ESPEAK (TEXT-TO-SPEECH):
# sudo apt install espeak # Debian/Ubuntu
# espeak "Hello world" # Test speech
#
# ON-SCREEN KEYBOARD:
# sudo apt install onboard # Debian/Ubuntu
# onboard # Launch on-screen keyboard
#
# =============================================================================
# ACCESSIBILITY RESOURCES
# =============================================================================
#
# LINUX ACCESSIBILITY:
# - https://www.linuxfoundation.org/collaborate/workgroups/accessibility/
# - GNOME Accessibility: https://wiki.gnome.org/Accessibility
# - KDE Accessibility: https://accessibility.kde.org/
#
# ASSISTIVE TECHNOLOGY:
# - Orca Screen Reader: https://wiki.gnome.org/Projects/Orca
# - Espeak: http://espeak.sourceforge.net/
# - Festival Speech Synthesis: http://www.cstr.ed.ac.uk/projects/festival/
#
# KEYBOARD ACCESSIBILITY:
# - Sticky Keys: System setting to press modifiers sequentially
# - Slow Keys: Adjust key sensitivity
# - Bounce Keys: Ignore rapid repeated keypresses
#
# =============================================================================
# TROUBLESHOOTING ACCESSIBILITY ISSUES
# =============================================================================
#
# 1. KEYS NOT RESPONDING:
# - Check if sticky keys is enabled in system settings
# - Verify keybinding format is correct
# - Try alternative keybindings
# - Check if another application is grabbing keys
#
# 2. VISUAL DIFFICULTY:
# - Increase border_width and titlebar_font_size
# - Enable high_contrast mode
# - Adjust window sizes to be larger
# - Enable audio_feedback for action confirmation
#
# 3. MOTION SICKNESS/DIZZINESS:
# - Enable reduced_motion mode
# - Disable spatial mode: spatial_settings.enabled = false
# - Increase smoothing to 0.8-0.9
# - Minimize window movements
#
# 4. DIFFICULTY PRESSING MULTIPLE KEYS:
# - Enable sticky_keys in FloatWM and system settings
# - Use single-modifier keybindings
# - Use function keys (larger targets)
# - Consider on-screen keyboard
#
# 5. AUDIO FEEDBACK NOT WORKING:
# - Check system audio is working
# - Verify audio_feedback = true
# - Adjust audio_volume
# - Check system sound theme
#
# =============================================================================
# COMMANDS FOR ACCESSIBILITY
# =============================================================================
#
# Toggle accessibility features:
# floatwmctl toggle-accessibility
#
# Toggle reduced motion:
# floatwmctl toggle-reduced-motion
#
# Toggle audio feedback:
# floatwmctl toggle-audio
#
# Increase border width:
# floatwmctl set-border-width 12
#
# Increase title bar size:
# floatwmctl set-titlebar-height 40
#
# Test audio feedback:
# floatwmctl test-audio
#
# Get accessibility status:
# floatwmctl a11y-status
#
# =============================================================================
# NEXT STEPS
# =============================================================================
#
# 1. CUSTOMIZE FOR YOUR NEEDS:
# - Identify which accessibility features help you most
# - Adjust settings to match your preferences
# - Test with your actual workflow
#
# 2. ENABLE SYSTEM ACCESSIBILITY:
# - Configure system-level accessibility settings
# - Install assistive technologies (Orca, espeak, etc.)
# - Test system and FloatWM integration
#
# 3. CREATE YOUR PERFECT SETUP:
# - Fine-tune visual settings (sizes, colors, fonts)
# - Customize keybindings for your comfort
# - Add window rules for your applications
#
# 4. PROVIDE FEEDBACK:
# - Share your experience with FloatWM developers
# - Suggest improvements for accessibility
# - Help make FloatWM more accessible for everyone
#
# For more information, see:
# - docs/examples/basic-setup.example.toml - Basic configuration
# - USER_GUIDE.md - Complete user manual
# - docs/config_parser.md - Detailed configuration reference
# - Your Linux distribution's accessibility documentation
#
# =============================================================================
# ACCESSIBILITY STATEMENT
# =============================================================================
#
# FloatWM is committed to being accessible to all users, regardless of
# their abilities. This configuration is a starting point, and we welcome
# feedback and suggestions for improvement.
#
# If you encounter accessibility barriers or have suggestions for improving
# FloatWM's accessibility, please:
# - File an issue on GitHub: https://github.com/floatwm/floatwm/issues
# - Tag with "accessibility" label
# - Describe your use case and suggested improvements
#
# Together we can make FloatWM accessible to everyone.
#
# =============================================================================