From 1b13df336461644ba16e9efa182b1d4358a5deb1 Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Sun, 5 Dec 2021 17:47:37 +0000 Subject: [PATCH] docs: Move env vars section to debugging --- README.md | 10 ---------- doc/hacking.md | 9 +++++++++ 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4d2b8d33..fa1f2db8 100644 --- a/README.md +++ b/README.md @@ -71,16 +71,6 @@ To make the keyboard show you can use either an application that does so automat busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true ``` -Environment Variables ---------------------- - -Besides the environment variables supported by GTK and [GLib](https://docs.gtk.org/glib/running.html) applications -squeekboard honors the `SQUEEKBOARD_DEBUG` environment variable which can -contain a comma separated list of: - -- `force-show` : Show squeekboard on startup independent of any gsettings or compositor requests -- `gtk-inspector`: Spawn [gtk-inspector](https://wiki.gnome.org/Projects/GTK/Inspector) - ### What the compositor has to support A compatible compositor has to support the protocols: diff --git a/doc/hacking.md b/doc/hacking.md index d490ebb3..4ce40ff5 100644 --- a/doc/hacking.md +++ b/doc/hacking.md @@ -90,6 +90,15 @@ Layouts can be selected using the GNOME Settings application. $ gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'us'), ('xkb', 'de')]" ``` +### Environment Variables + +Besides the environment variables supported by GTK and [GLib](https://docs.gtk.org/glib/running.html) applications +squeekboard honors the `SQUEEKBOARD_DEBUG` environment variable which can +contain a comma separated list of: + +- `force-show` : Show squeekboard on startup independent of any gsettings or compositor requests +- `gtk-inspector`: Spawn [gtk-inspector](https://wiki.gnome.org/Projects/GTK/Inspector) + Coding ------