gnome-shell/data
Florian Müllner 1dda339395 animation: Use appropriate spinner asset in light variant
Ideally we would replace the sliced-image based animation with a
themed `process-working-symbolic` icon and rotate it, so the spinner
simply picks up the current foreground color.

Unfortunately the `repeat-count` property does not work for rotations,
so to fix the broken spinner in the light variant
in the meantime, include assets for both variants and swap them
out at runtime.

Not everything in the light variant is actually light (overview,
OSDs, ...), so use a simple heuristic on the text color to decide
which asset to use.

Close https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6783

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3080>
2023-12-27 10:10:35 +00:00
..
cldr2json data: Update cldr2json script to new format 2022-08-10 17:11:26 +00:00
dbus-interfaces screenshot: Add and implement new D-Bus method 2023-12-21 17:59:17 +00:00
icons popupMenu: Use less ambiguous symbols for radio options 2023-12-02 10:11:10 +00:00
osk-layouts osk-layouts: Replace "SS" extra key with "ẞ" 2023-01-25 14:11:35 +00:00
theme animation: Use appropriate spinner asset in light variant 2023-12-27 10:10:35 +00:00
00_org.gnome.shell.gschema.override
50-gnome-shell-launchers.xml windowManager: Add shortcuts to open new window of nth pinned app 2023-12-24 10:56:09 +00:00
50-gnome-shell-screenshots.xml screenshot-ui: Add a key to open the screencast UI 2022-02-12 12:13:22 +00:00
50-gnome-shell-system.xml windowManager: Add shortcut for toggling quick settings 2023-06-21 18:11:05 +00:00
emoji.json
gnome-shell-dbus-interfaces.gresource.xml status/backlight: Add new quick toggle 2023-07-30 11:12:50 +00:00
gnome-shell-icons.gresource.xml popupMenu: Use less ambiguous symbols for radio options 2023-12-02 10:11:10 +00:00
gnome-shell-osk-layouts.gresource.xml keyboard: Add Hangul OSK keymap 2022-08-10 17:11:26 +00:00
gnome-shell-theme.gresource.xml animation: Use appropriate spinner asset in light variant 2023-12-27 10:10:35 +00:00
gnome-shell.portal portal: Own org.gnome.Shell.Portal for the access portal 2021-06-05 21:29:52 -03:00
meson.build tools: Drop gnome-shell-overrides-migration.sh 2023-01-23 16:38:36 +00:00
org.gnome.Shell-disable-extensions.service
org.gnome.Shell-symbolic.Source.svg popupMenu: Use less ambiguous symbols for radio options 2023-12-02 10:11:10 +00:00
org.gnome.Shell.desktop.in.in
org.gnome.Shell.Extensions.desktop.in.in
org.gnome.shell.gschema.xml.in windowManager: Add shortcuts to open new window of nth pinned app 2023-12-24 10:56:09 +00:00
org.gnome.Shell.PortalHelper.desktop.in.in
org.gnome.Shell.PortalHelper.service.in
org.gnome.Shell.target
org.gnome.Shell@wayland.service.in build: Specify systemd version requirement 2023-06-30 20:13:48 +00:00
org.gnome.Shell@x11.service.in build: Specify systemd version requirement 2023-06-30 20:13:48 +00:00
perf-background.xml.in
README.osk-layouts data: Document JSON file format in OSK layouts README file 2022-08-10 17:11:26 +00:00
update-osk-layouts.sh

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

To add new layouts from CLDR:

1) Run update-osk-layouts.sh

2) Modify JSON files to add extra keys, tweak appearance...

2) Do git add and git commit

JSON file format
================

Each JSON file describes a keymap for a certain language and layout,
it has the following structure:

- Root (Object)

  Root object of a layout, has the following properties:

  - levels (Array of Level): Levels in the keymap
  - locale (String): Locale name for this keymap
  - name (String): Human readable name for this keymap

- Level (Object)

  A level defines the keys available on a keyboard level,
  these are the key panels visible at a time. E.g. to type
  uppercase levels or symbols.

  Levels have the following properties:

  - level (String): Name of the level, common names are
    "", "shift", "opt" and "opt+shift".
  - mode (String): Mode for this level, common modes are
    "default", "latched" and "locked".
  - rows (Array of Row): Array of rows of keys.

- Row (Array)

  A row is an Array of Key.

- Key (Object)

  A keyboard key. Keys have the following properties:

  - iconName (String): Icon name to show on the key.
    Keys with an icon name do not have a label.
  - label (String): Label to show on the key.
  - strings (Array of String): Strings to commit. If
    label property does not exist, the first element
    will be also the label. Extra elements are shown
    in the extra keys popover.
  - keyval (String): Hexadecimal keyval to emit as
    emulated key presses. Committed strings are
    preferred.
  - width (Double): Relative width of the key in the
    row. 1 is for a square key. Multiples of 0.5 are
    accepted.
  - level (Integer): Level that the key switches to.
    See the levelSwitch action.
  - action (string): Action performed by the key,
    accepted actions are:

    - hide: Hides the OSK
    - languageMenu: Pops up the language selection
      menu
    - emoji: Switches to the emoji selection panel
    - modifier: Handles the keyval as a modifier
      key. This handles e.g. Ctrl+A as a sequence
      of Ctrl press, A press, A release, Ctrl
      release.
    - delete: Deletes text backwards
    - levelSwitch: Switches OSK to a different level