72 lines
1.7 KiB
Diff
72 lines
1.7 KiB
Diff
From fc6291c1e987ba3d5cfc58adbf47cc7243709422 Mon Sep 17 00:00:00 2001
|
|
From: Olivier Fourdan <ofourdan@redhat.com>
|
|
Date: Tue, 9 Sep 2025 16:04:36 +0200
|
|
Subject: [PATCH 2/3] doc: Document accessibility settings
|
|
|
|
Document the settings keys controlled by the accessibility panel.
|
|
|
|
Part-of: <https://gitlab.gnome.org/GNOME/gnome-kiosk/-/merge_requests/89>
|
|
(cherry picked from commit 550d961b3f9a12dd1fbad7799784dcaed455ccd8)
|
|
---
|
|
CONFIG.md | 44 ++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 44 insertions(+)
|
|
|
|
diff --git a/CONFIG.md b/CONFIG.md
|
|
index f6e6f1f..e27f1cf 100644
|
|
--- a/CONFIG.md
|
|
+++ b/CONFIG.md
|
|
@@ -9,6 +9,50 @@ which apply to mutter will also apply to GNOME Kiosk.
|
|
gsettings set org.gnome.desktop.interface enable-animations false
|
|
```
|
|
|
|
+# Accessibility settings
|
|
+
|
|
+## Enabling High Contrast
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.a11y.interface high-contrast true
|
|
+gsettings set org.gnome.desktop.a11y.interface show-status-shapes true
|
|
+```
|
|
+
|
|
+## Large text
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.interface text-scaling-factor 1.25
|
|
+```
|
|
+
|
|
+## Visual alerts
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.wm.preferences visual-bell true
|
|
+```
|
|
+
|
|
+## Sticky Keys
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.a11y.keyboard stickykeys-enable true
|
|
+```
|
|
+
|
|
+## Slow Keys
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.a11y.keyboard slowkeys-enable true
|
|
+```
|
|
+
|
|
+## Bounce Keys
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.a11y.keyboard bouncekeys-enable true
|
|
+```
|
|
+
|
|
+## Mouse keys
|
|
+
|
|
+```sh
|
|
+gsettings set org.gnome.desktop.a11y.keyboard mousekeys-enable true
|
|
+```
|
|
# Configuration file
|
|
|
|
GNOME Kiosk takes a configuration file to specify the windows configuration at start-up.
|
|
--
|
|
2.53.0
|
|
|