gnome-shell/data
Florian Müllner b92ddc0d39 extensionPrefs: Move desktop file and icons from top-level data
Another small step towards making the extensions app code
self-contained ...

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1081
2020-03-19 14:27:35 +00:00
..
dbus-interfaces shellDBus: Add new OpenExtensionPrefs method 2020-03-06 19:03:02 +00:00
osk-layouts osk-layouts: Fix French layout 2019-03-04 20:55:15 +00:00
theme appDisplay: Add back background color for folder icons 2020-03-08 00:42:40 +00:00
00_org.gnome.shell.gschema.override Replace custom override schema with per-desktop override 2018-07-31 18:36:26 +00:00
50-gnome-shell-system.xml
emoji.json keyboard: Add Emoji keyboard 2019-02-05 16:25:57 +01:00
gnome-shell-dbus-interfaces.gresource.xml dateMenu: Stop accessing app settings directly 2019-08-08 17:41:46 +02:00
gnome-shell-disable-extensions.service data: Enable clean session shutdown after gnome-shell failure 2019-11-25 21:49:49 +00:00
gnome-shell-osk-layouts.gresource.xml osk-layouts: Fix French layout 2019-03-04 20:55:15 +00:00
gnome-shell-overrides-migration.desktop.in tools: fix XDG desktop syntax in gnome-shell-overrides-migration 2018-08-03 00:49:49 +02:00
gnome-shell-overrides.convert
gnome-shell-theme.gresource.xml data: Add OSK assets as symbolic icons 2020-02-20 11:34:07 +00:00
gnome-shell-wayland.service.in data: Lower TimeoutStartSec in systemd units 2019-09-12 08:16:10 +00:00
gnome-shell-wayland.target data: Update systemd units 2019-08-05 21:38:51 +00:00
gnome-shell-x11.service.in data: Lower TimeoutStartSec in systemd units 2019-09-12 08:16:10 +00:00
gnome-shell-x11.target data: Update systemd units 2019-08-05 21:38:51 +00:00
gnome-shell.portal
meson.build extensionPrefs: Move desktop file and icons from top-level data 2020-03-19 14:27:35 +00:00
org.gnome.Shell.desktop.in.in data: Drop old bugzilla references in .desktop files 2020-01-07 12:41:57 +01:00
org.gnome.shell.gschema.xml.in Update default favorite apps list 2020-01-07 15:03:50 +00:00
org.gnome.Shell.PortalHelper.desktop.in.in
org.gnome.Shell.PortalHelper.service.in
perf-background.xml.in
README.osk-layouts data: Add README and supporting script to update keyboard layouts from CLDR 2018-02-05 17:46:57 +01:00
update-osk-layouts.sh data: Don't drop emoji layout on update 2019-03-04 20:55:15 +00:00

Gnome-shell OSK layouts are extracted from CLDR layout definitions:
https://www.unicode.org/cldr/charts/latest/keyboards/layouts/index.html

Updating these involves several steps:

1) Downloading and unzipping the tarball found at:
   http://www.unicode.org/Public/cldr/latest/keyboards.zip

   This file contains XML files describing the keyboard layouts.

2) Cloning the cldr2json script at:
   git://repo.or.cz/cldr2json.git

   It will be used to convert the XML files into JSON that can be
   directly consumed by gnome-shell.

3) Running the script to produce the files:
   ./cldr2json <input-directory> <output-directory>

   We shall usually use the "android" folder, since that's most
   complete, and similar to our UI and target sizes. And the target
   directory must be data/osk-layouts in this repository.

4) Modify gnome-shell-osk-layouts.gresource.xml to include the files

5) Do git add on the updated/new files, and git commit.


Or alternatively:

1) Run update-osk-layouts.sh

2) Do git add and git commit