Compare commits
	
		
			7 Commits
		
	
	
		
			pureos/1.1
			...
			add-more-p
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 2c355ec966 | |||
| a19bbdc870 | |||
| 8e0b4f05f8 | |||
| 1010b916ef | |||
| c475ed6619 | |||
| 687b260e29 | |||
| ecc46733da | 
							
								
								
									
										135
									
								
								.gitlab-ci.yml
									
									
									
									
									
								
							
							
						
						
									
										135
									
								
								.gitlab-ci.yml
									
									
									
									
									
								
							@ -1,4 +1,4 @@
 | 
				
			|||||||
image: debian:bullseye
 | 
					image: debian:buster
 | 
				
			||||||
 | 
					
 | 
				
			||||||
stages:
 | 
					stages:
 | 
				
			||||||
  - build
 | 
					  - build
 | 
				
			||||||
@ -10,143 +10,22 @@ stages:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
before_script:
 | 
					before_script:
 | 
				
			||||||
  - apt-get -y update
 | 
					  - apt-get -y update
 | 
				
			||||||
  - apt-get -y install wget ca-certificates gnupg
 | 
					  - apt-get -y build-dep .
 | 
				
			||||||
  - echo "deb [trusted=yes] http://ci.puri.sm/ bullseyeci main" > /etc/apt/sources.list.d/ci.list
 | 
					 | 
				
			||||||
  - wget -O- https://ci.puri.sm/ci-repo.key | apt-key add -
 | 
					 | 
				
			||||||
  - apt-get -y update
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
build_docs:
 | 
					 | 
				
			||||||
  <<: *tags
 | 
					 | 
				
			||||||
  stage: build
 | 
					 | 
				
			||||||
  artifacts:
 | 
					 | 
				
			||||||
    paths:
 | 
					 | 
				
			||||||
      - _build
 | 
					 | 
				
			||||||
  script:
 | 
					 | 
				
			||||||
      - apt-get -y install python3-pip python3-sphinx
 | 
					 | 
				
			||||||
      - pip3 install recommonmark
 | 
					 | 
				
			||||||
      - ./doc/build.sh _build
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
build_meson:
 | 
					build_meson:
 | 
				
			||||||
  tags:
 | 
					  <<: *tags
 | 
				
			||||||
    - librem5
 | 
					 | 
				
			||||||
  stage: build
 | 
					  stage: build
 | 
				
			||||||
  artifacts:
 | 
					  artifacts:
 | 
				
			||||||
    paths:
 | 
					    paths:
 | 
				
			||||||
      - _build
 | 
					      - _build
 | 
				
			||||||
    expire_in: 3h
 | 
					 | 
				
			||||||
  script:
 | 
					  script:
 | 
				
			||||||
    - apt-get -y build-dep .
 | 
					    - meson . _build/ -Ddepdatadir=/usr/share
 | 
				
			||||||
    - meson . _build/ -Ddepdatadir=/usr/share --werror
 | 
					 | 
				
			||||||
    - ninja -C _build install
 | 
					    - ninja -C _build install
 | 
				
			||||||
 | 
					
 | 
				
			||||||
build_deb:
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
        - librem5
 | 
					 | 
				
			||||||
    stage: build
 | 
					 | 
				
			||||||
    artifacts:
 | 
					 | 
				
			||||||
      paths:
 | 
					 | 
				
			||||||
        - "*.deb"
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - rm -f ../*.deb
 | 
					 | 
				
			||||||
        - apt-get -y build-dep .
 | 
					 | 
				
			||||||
        - apt-get -y install devscripts
 | 
					 | 
				
			||||||
        - debuild -i -us -uc -b
 | 
					 | 
				
			||||||
        - cp ../*.deb .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
build_deb:amber:
 | 
					 | 
				
			||||||
    image: pureos/amber
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
        - librem5
 | 
					 | 
				
			||||||
    stage: build
 | 
					 | 
				
			||||||
    artifacts:
 | 
					 | 
				
			||||||
      paths:
 | 
					 | 
				
			||||||
        - "*.deb"
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
 | 
					 | 
				
			||||||
        - apt-get -y update
 | 
					 | 
				
			||||||
        - rm -f ../*.deb
 | 
					 | 
				
			||||||
        - apt-get -y build-dep .
 | 
					 | 
				
			||||||
        - apt-get -y install devscripts
 | 
					 | 
				
			||||||
        - debuild -i -us -uc -b
 | 
					 | 
				
			||||||
        - cp ../*.deb .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
build_deb:buster:
 | 
					 | 
				
			||||||
    image: "debian:buster"
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
        - librem5
 | 
					 | 
				
			||||||
    stage: build
 | 
					 | 
				
			||||||
    artifacts:
 | 
					 | 
				
			||||||
      paths:
 | 
					 | 
				
			||||||
        - "*.deb"
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
 | 
					 | 
				
			||||||
        - apt-get -y update
 | 
					 | 
				
			||||||
        - rm -f ../*.deb
 | 
					 | 
				
			||||||
        - apt-get -y build-dep .
 | 
					 | 
				
			||||||
        - apt-get -y install devscripts
 | 
					 | 
				
			||||||
        - debuild -i -us -uc -b
 | 
					 | 
				
			||||||
        - cp ../*.deb .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
build_deb:arm64:
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
        - librem5:arm64
 | 
					 | 
				
			||||||
    stage: build
 | 
					 | 
				
			||||||
    artifacts:
 | 
					 | 
				
			||||||
      paths:
 | 
					 | 
				
			||||||
        - "*.deb"
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - rm -f ../*.deb
 | 
					 | 
				
			||||||
        - apt-get -y build-dep .
 | 
					 | 
				
			||||||
        - apt-get -y install devscripts
 | 
					 | 
				
			||||||
        - debuild -i -us -uc -b
 | 
					 | 
				
			||||||
        - cp ../*.deb .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
build_deb:arm64_buster:
 | 
					 | 
				
			||||||
    image: "debian:buster"
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
        - librem5:arm64
 | 
					 | 
				
			||||||
    stage: build
 | 
					 | 
				
			||||||
    artifacts:
 | 
					 | 
				
			||||||
      paths:
 | 
					 | 
				
			||||||
        - "*.deb"
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list
 | 
					 | 
				
			||||||
        - apt-get -y update
 | 
					 | 
				
			||||||
        - rm -f ../*.deb
 | 
					 | 
				
			||||||
        - apt-get -y build-dep .
 | 
					 | 
				
			||||||
        - apt-get -y install devscripts
 | 
					 | 
				
			||||||
        - debuild -i -us -uc -b
 | 
					 | 
				
			||||||
        - cp ../*.deb .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
test_lintian:
 | 
					 | 
				
			||||||
    <<: *tags
 | 
					 | 
				
			||||||
    stage: test
 | 
					 | 
				
			||||||
    dependencies:
 | 
					 | 
				
			||||||
        - build_deb
 | 
					 | 
				
			||||||
    script:
 | 
					 | 
				
			||||||
        - apt-get -y install lintian
 | 
					 | 
				
			||||||
        - lintian *.deb
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
test:
 | 
					test:
 | 
				
			||||||
  tags:
 | 
					 | 
				
			||||||
    - librem5
 | 
					 | 
				
			||||||
  stage: test
 | 
					 | 
				
			||||||
  needs:
 | 
					 | 
				
			||||||
    - build_meson
 | 
					 | 
				
			||||||
  script:
 | 
					 | 
				
			||||||
    - apt-get -y build-dep .
 | 
					 | 
				
			||||||
    - apt-get -y install clang-tidy
 | 
					 | 
				
			||||||
    - ninja -C _build test
 | 
					 | 
				
			||||||
    - cd _build
 | 
					 | 
				
			||||||
    - clang-tidy --checks=-clang-diagnostic-missing-braces,readability-braces-around-statements, --warnings-as-errors=readability-braces-around-statements -extra-arg=-Wno-unknown-warning-option ../src/*.c ../eek/*.c ../eekboard/*.c
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
check_release:
 | 
					 | 
				
			||||||
  <<: *tags
 | 
					  <<: *tags
 | 
				
			||||||
  stage: test
 | 
					  stage: test
 | 
				
			||||||
  only:
 | 
					  dependencies:
 | 
				
			||||||
    refs:
 | 
					    - build_meson
 | 
				
			||||||
      - master
 | 
					 | 
				
			||||||
  script:
 | 
					  script:
 | 
				
			||||||
    - apt-get -y install git python3
 | 
					    - ninja -C _build test
 | 
				
			||||||
    - (head -n 1 ./debian/changelog && git tag) | ./debian/check_release.py
 | 
					 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										37
									
								
								AUTHORS
									
									
									
									
									
								
							
							
						
						
									
										37
									
								
								AUTHORS
									
									
									
									
									
								
							@ -1,5 +1,36 @@
 | 
				
			|||||||
squeekboard is written by Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> on behlf of Purism, SPC.
 | 
					eekboard is written by Daiki Ueno <ueno@unixuser.org>.  The following
 | 
				
			||||||
eekboard was written by Daiki Ueno <ueno@unixuser.org>
 | 
					files contain code derived from other free software packages:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
For more details, see the debian/copyright file.
 | 
					eek/eek-keyboard-drawing.h
 | 
				
			||||||
 | 
					eek/eek-keyboard-drawing.c
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  These files contain code derived from the libgnomekbd library.
 | 
				
			||||||
 | 
					  Copyright (C) 2006 Sergey V. Udaltsov <svu@gnome.org>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					eek/eek-theme.h
 | 
				
			||||||
 | 
					eek/eek-theme.c
 | 
				
			||||||
 | 
					eek/eek-theme-context.h
 | 
				
			||||||
 | 
					eek/eek-theme-context.c
 | 
				
			||||||
 | 
					eek/eek-theme-node.h
 | 
				
			||||||
 | 
					eek/eek-theme-node.c
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  These files contain code derived from gnome-shell.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Copyright 2008-2010 Red Hat, Inc.
 | 
				
			||||||
 | 
					  Copyright 2009 Steve Frécinaux
 | 
				
			||||||
 | 
					  Copyright 2009, 2010 Florian Müllner
 | 
				
			||||||
 | 
					  Copyright 2010 Adel Gadllah
 | 
				
			||||||
 | 
					  Copyright 2010 Giovanni Campagna
 | 
				
			||||||
 | 
					  Copyright 2003-2004 Dodji Seketeli
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					data/icons/8x8/Makefile.am
 | 
				
			||||||
 | 
					data/icons/16x16/Makefile.am
 | 
				
			||||||
 | 
					data/icons/22x22/Makefile.am
 | 
				
			||||||
 | 
					data/icons/24x24/Makefile.am
 | 
				
			||||||
 | 
					data/icons/32x32/Makefile.am
 | 
				
			||||||
 | 
					data/icons/48x48/Makefile.am
 | 
				
			||||||
 | 
					data/icons/scalable/Makefile.am
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  These files contain code derived from im-chooser.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Copyright (C) 2006-2008 Red Hat, Inc. All rights reserved.
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										22
									
								
								Cargo.deps
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								Cargo.deps
									
									
									
									
									
								
							@ -1,22 +0,0 @@
 | 
				
			|||||||
# Dependencies which change based on build flags
 | 
					 | 
				
			||||||
bitflags = "1.2.*"
 | 
					 | 
				
			||||||
clap = { version = "2.33.*", default-features = false }
 | 
					 | 
				
			||||||
regex = { version = "1.3.*", default-features = false, features = ["std", "unicode-case"] }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.cairo-rs]
 | 
					 | 
				
			||||||
version = "0.7.*"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gdk]
 | 
					 | 
				
			||||||
version = "0.11.*"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gio]
 | 
					 | 
				
			||||||
version = "0.7.*"
 | 
					 | 
				
			||||||
features = ["v2_44"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.glib]
 | 
					 | 
				
			||||||
version = "0.8.*"
 | 
					 | 
				
			||||||
features = ["v2_44"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gtk]
 | 
					 | 
				
			||||||
version = "0.7.*"
 | 
					 | 
				
			||||||
features = ["v3_22"]
 | 
					 | 
				
			||||||
@ -1,22 +0,0 @@
 | 
				
			|||||||
# Dependencies which change based on build flags
 | 
					 | 
				
			||||||
bitflags = "1.0.*"
 | 
					 | 
				
			||||||
clap = { version = "2.32.*", default-features = false }
 | 
					 | 
				
			||||||
regex = { version = "1.1.*", default-features = false, features = ['use_std'] }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.cairo-rs]
 | 
					 | 
				
			||||||
version = "0.5.*"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gdk]
 | 
					 | 
				
			||||||
version = "0.9.*"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gio]
 | 
					 | 
				
			||||||
version = "0.5.*"
 | 
					 | 
				
			||||||
features = ["v2_44"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.glib]
 | 
					 | 
				
			||||||
version = "0.6.*"
 | 
					 | 
				
			||||||
features = ["v2_44"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gtk]
 | 
					 | 
				
			||||||
version = "0.5.*"
 | 
					 | 
				
			||||||
features = ["v3_22"]
 | 
					 | 
				
			||||||
							
								
								
									
										484
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										484
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -1,484 +0,0 @@
 | 
				
			|||||||
# This file is automatically @generated by Cargo.
 | 
					 | 
				
			||||||
# It is not intended for manual editing.
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "atk"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "86b7499272acf036bb5820c6e346bbfb5acc5dceb104bc2c4fd7e6e33dfcde6a"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "atk-sys",
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "atk-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "e552c1776737a4c80110d06b36d099f47c727335f9aaa5d942a72b6863a8ec6f"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "bitflags"
 | 
					 | 
				
			||||||
version = "1.2.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "cairo-rs"
 | 
					 | 
				
			||||||
version = "0.7.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "e05db47de3b0f09a222fa4bba2eab957d920d4243962a86b2d77ab401e4a359c"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "cairo-sys-rs"
 | 
					 | 
				
			||||||
version = "0.9.2"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "ff65ba02cac715be836f63429ab00a767d48336efc5497c5637afb53b4f14d63"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "cc"
 | 
					 | 
				
			||||||
version = "1.0.67"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "clap"
 | 
					 | 
				
			||||||
version = "2.33.3"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "textwrap",
 | 
					 | 
				
			||||||
 "unicode-width",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "dtoa"
 | 
					 | 
				
			||||||
version = "0.4.8"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "fragile"
 | 
					 | 
				
			||||||
version = "0.3.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "05f8140122fa0d5dcb9fc8627cfce2b37cc1500f752636d46ea28bc26785c2f9"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gdk"
 | 
					 | 
				
			||||||
version = "0.11.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "6243e995f41f3a61a31847e54cc719edce93dd9140c89dca3b9919be1cfe22d5"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "cairo-rs",
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "gdk-pixbuf",
 | 
					 | 
				
			||||||
 "gdk-sys",
 | 
					 | 
				
			||||||
 "gio",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pango",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gdk-pixbuf"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "9726408ee1bbada83094326a99b9c68fea275f9dbb515de242a69e72051f4fcc"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "gdk-pixbuf-sys",
 | 
					 | 
				
			||||||
 "gio",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gdk-pixbuf-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "d8991b060a9e9161bafd09bf4a202e6fd404f5b4dd1a08d53a1e84256fb34ab0"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gdk-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "6adf679e91d1bff0c06860287f80403e7db54c2d2424dce0a470023b56c88fbb"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "gdk-pixbuf-sys",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pango-sys",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gio"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "6261b5d34c30c2d59f879e643704cf54cb44731f3a2038000b68790c03e360e3"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "fragile",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "lazy_static",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gio-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "4fad225242b9eae7ec8a063bb86974aca56885014672375e5775dc0ea3533911"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "glib"
 | 
					 | 
				
			||||||
version = "0.8.2"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "be27232841baa43e0fd5ae003f7941925735b2f733a336dc75f07b9eff415e7b"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "lazy_static",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "glib-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "95856f3802f446c05feffa5e24859fe6a183a7cb849c8449afc35c86b1e316e2"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gobject-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "31d1a804f62034eccf370006ccaef3708a71c31d561fee88564abe71177553d9"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gtk"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "709f1074259d4685b96133f92b75c7f35b504715b0fcdc96ec95de2607296a60"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "atk",
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "cairo-rs",
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "cc",
 | 
					 | 
				
			||||||
 "gdk",
 | 
					 | 
				
			||||||
 "gdk-pixbuf",
 | 
					 | 
				
			||||||
 "gdk-pixbuf-sys",
 | 
					 | 
				
			||||||
 "gdk-sys",
 | 
					 | 
				
			||||||
 "gio",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "gtk-sys",
 | 
					 | 
				
			||||||
 "lazy_static",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pango",
 | 
					 | 
				
			||||||
 "pango-sys",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "gtk-sys"
 | 
					 | 
				
			||||||
version = "0.9.2"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "53def660c7b48b00b510c81ef2d2fbd3c570f1527081d8d7947f471513e1a4c1"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "atk-sys",
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "gdk-pixbuf-sys",
 | 
					 | 
				
			||||||
 "gdk-sys",
 | 
					 | 
				
			||||||
 "gio-sys",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pango-sys",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "lazy_static"
 | 
					 | 
				
			||||||
version = "1.4.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "libc"
 | 
					 | 
				
			||||||
version = "0.2.94"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "linked-hash-map"
 | 
					 | 
				
			||||||
version = "0.5.4"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "maplit"
 | 
					 | 
				
			||||||
version = "1.0.2"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "memmap"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "winapi",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "pango"
 | 
					 | 
				
			||||||
version = "0.7.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "393fa071b144f8ffb83ede273758983cf414ca3c0b1d2a5a9ce325b3ba3dd786"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "lazy_static",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pango-sys",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "pango-sys"
 | 
					 | 
				
			||||||
version = "0.9.1"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "86b93d84907b3cf0819bff8f13598ba72843bee579d5ebc2502e4b0367b4be7d"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gobject-sys",
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "pkg-config",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "pkg-config"
 | 
					 | 
				
			||||||
version = "0.3.19"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "proc-macro2"
 | 
					 | 
				
			||||||
version = "1.0.26"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "unicode-xid",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "quote"
 | 
					 | 
				
			||||||
version = "1.0.9"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "proc-macro2",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "regex"
 | 
					 | 
				
			||||||
version = "1.3.9"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "regex-syntax",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "regex-syntax"
 | 
					 | 
				
			||||||
version = "0.6.25"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "rs"
 | 
					 | 
				
			||||||
version = "0.1.0"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "bitflags",
 | 
					 | 
				
			||||||
 "cairo-rs",
 | 
					 | 
				
			||||||
 "cairo-sys-rs",
 | 
					 | 
				
			||||||
 "clap",
 | 
					 | 
				
			||||||
 "gdk",
 | 
					 | 
				
			||||||
 "gio",
 | 
					 | 
				
			||||||
 "glib",
 | 
					 | 
				
			||||||
 "glib-sys",
 | 
					 | 
				
			||||||
 "gtk",
 | 
					 | 
				
			||||||
 "gtk-sys",
 | 
					 | 
				
			||||||
 "maplit",
 | 
					 | 
				
			||||||
 "regex",
 | 
					 | 
				
			||||||
 "serde",
 | 
					 | 
				
			||||||
 "serde_yaml",
 | 
					 | 
				
			||||||
 "xkbcommon",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "serde"
 | 
					 | 
				
			||||||
version = "1.0.126"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "serde_derive",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "serde_derive"
 | 
					 | 
				
			||||||
version = "1.0.126"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "proc-macro2",
 | 
					 | 
				
			||||||
 "quote",
 | 
					 | 
				
			||||||
 "syn",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "serde_yaml"
 | 
					 | 
				
			||||||
version = "0.8.17"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "dtoa",
 | 
					 | 
				
			||||||
 "linked-hash-map",
 | 
					 | 
				
			||||||
 "serde",
 | 
					 | 
				
			||||||
 "yaml-rust",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "syn"
 | 
					 | 
				
			||||||
version = "1.0.72"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "proc-macro2",
 | 
					 | 
				
			||||||
 "quote",
 | 
					 | 
				
			||||||
 "unicode-xid",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "textwrap"
 | 
					 | 
				
			||||||
version = "0.11.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "unicode-width",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "unicode-width"
 | 
					 | 
				
			||||||
version = "0.1.8"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "unicode-xid"
 | 
					 | 
				
			||||||
version = "0.2.2"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "winapi"
 | 
					 | 
				
			||||||
version = "0.3.9"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "winapi-i686-pc-windows-gnu",
 | 
					 | 
				
			||||||
 "winapi-x86_64-pc-windows-gnu",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "winapi-i686-pc-windows-gnu"
 | 
					 | 
				
			||||||
version = "0.4.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "winapi-x86_64-pc-windows-gnu"
 | 
					 | 
				
			||||||
version = "0.4.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "xkbcommon"
 | 
					 | 
				
			||||||
version = "0.4.0"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "fda0ea5f7ddabd51deeeda7799bee06274112f577da7dd3d954b8eda731b2fce"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "libc",
 | 
					 | 
				
			||||||
 "memmap",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[package]]
 | 
					 | 
				
			||||||
name = "yaml-rust"
 | 
					 | 
				
			||||||
version = "0.4.5"
 | 
					 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					 | 
				
			||||||
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
 | 
					 | 
				
			||||||
dependencies = [
 | 
					 | 
				
			||||||
 "linked-hash-map",
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
@ -1,41 +0,0 @@
 | 
				
			|||||||
[package]
 | 
					 | 
				
			||||||
name = "rs"
 | 
					 | 
				
			||||||
version = "0.1.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[lib]
 | 
					 | 
				
			||||||
name = "rs"
 | 
					 | 
				
			||||||
path = "@path@/src/lib.rs"
 | 
					 | 
				
			||||||
crate-type = ["staticlib", "rlib"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Cargo can't do autodiscovery if Cargo.toml is not in the root.
 | 
					 | 
				
			||||||
[[bin]]
 | 
					 | 
				
			||||||
name = "test_layout"
 | 
					 | 
				
			||||||
path = "@path@/src/bin/test_layout.rs"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[[example]]
 | 
					 | 
				
			||||||
name = "test_layout"
 | 
					 | 
				
			||||||
path = "@path@/examples/test_layout.rs"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[features]
 | 
					 | 
				
			||||||
gio_v0_5 = []
 | 
					 | 
				
			||||||
gtk_v0_5 = []
 | 
					 | 
				
			||||||
rustc_less_1_36 = []
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Dependencies which don't change based on build flags
 | 
					 | 
				
			||||||
[dependencies.cairo-sys-rs]
 | 
					 | 
				
			||||||
version = ""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.glib-sys]
 | 
					 | 
				
			||||||
version = ""
 | 
					 | 
				
			||||||
features = ["v2_44"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies.gtk-sys]
 | 
					 | 
				
			||||||
version = ""
 | 
					 | 
				
			||||||
features = ["v3_22"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[dependencies]
 | 
					 | 
				
			||||||
maplit = "1.0.*"
 | 
					 | 
				
			||||||
serde = { version = "1.0.*", features = ["derive"] }
 | 
					 | 
				
			||||||
serde_yaml = "0.8.*"
 | 
					 | 
				
			||||||
xkbcommon = { version = "0.4.*", features = ["wayland"] }
 | 
					 | 
				
			||||||
# Here is inserted the Cargo.deps file
 | 
					 | 
				
			||||||
							
								
								
									
										50
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										50
									
								
								README.md
									
									
									
									
									
								
							@ -3,18 +3,14 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
*Squeekboard* is a virtual keyboard supporting Wayland, built primarily for the *Librem 5* phone.
 | 
					*Squeekboard* is a virtual keyboard supporting Wayland, built primarily for the *Librem 5* phone.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
It squeaks because some Rust got inside.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Features
 | 
					Features
 | 
				
			||||||
--------
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Present
 | 
					### Present
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- GTK3
 | 
					- GTK3
 | 
				
			||||||
- Custom yaml-defined keyboards
 | 
					- Custom xml-defined keyboards
 | 
				
			||||||
- DBus interface to show and hide
 | 
					- DBus interface to show and hide
 | 
				
			||||||
- Use Wayland input method protocol to show and hide
 | 
					 | 
				
			||||||
- Use Wayland virtual keyboard protocol
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Temporarily dropped
 | 
					### Temporarily dropped
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -22,6 +18,8 @@ Features
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
### TODO
 | 
					### TODO
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Use Wayland virtual keyboard protocol
 | 
				
			||||||
 | 
					- Use Wayland text input protocol
 | 
				
			||||||
- Use Wayland input method protocol
 | 
					- Use Wayland input method protocol
 | 
				
			||||||
- Pick up DBus interface files from /usr/share
 | 
					- Pick up DBus interface files from /usr/share
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -30,43 +28,41 @@ Building
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
### Dependencies
 | 
					### Dependencies
 | 
				
			||||||
 | 
					
 | 
				
			||||||
See `.gitlab-ci.yml` or run `apt-get build-dep .`
 | 
					See `.gitlab-ci.yml`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Build from git repo
 | 
					### Build from git repo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```bash
 | 
					```
 | 
				
			||||||
$ git clone https://source.puri.sm/Librem5/squeekboard.git
 | 
					$ git clone https://source.puri.sm/Librem5/squeekboard.git
 | 
				
			||||||
$ cd squeekboard
 | 
					$ cd squeekboard
 | 
				
			||||||
$ mkdir _build
 | 
					$ mkdir ../build
 | 
				
			||||||
$ meson _build/
 | 
					$ meson ../build/
 | 
				
			||||||
$ cd _build
 | 
					$ cd ../build
 | 
				
			||||||
$ ninja
 | 
					$ ninja install
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
To run tests use `ninja test`. To install squeekboard run `ninja install`.
 | 
					For development, alter the `meson` call:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					$ meson ../build/ --prefix=../install
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					and don't skip `ninja install` before running. The last step is necessary in order to find the keyboard definition files.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Running
 | 
					Running
 | 
				
			||||||
-------
 | 
					-------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```bash
 | 
					```
 | 
				
			||||||
$ phoc # if no compatible Wayland compositor is running yet
 | 
					$ rootston
 | 
				
			||||||
$ cd ../build/
 | 
					$ cd ../build/
 | 
				
			||||||
$ src/squeekboard
 | 
					$ src/squeekboard
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Squeekboard honors the gnome "screen-keyboard-enabled" setting. Either enable this through gnome-settings under accessibility or run:
 | 
					### Testing
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```bash
 | 
					 | 
				
			||||||
$ gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled true
 | 
					 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					$ busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
 | 
				
			||||||
To make the keyboard show you can use either an application that does so automatically, like a text editor or `python3 ./tests/entry.py`, or you can manually trigger it with:
 | 
					$ busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b false
 | 
				
			||||||
 | 
					$ gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'us'), ('xkb', 'ua')]"
 | 
				
			||||||
```bash
 | 
					$ gsettings set org.gnome.desktop.input-sources current 1
 | 
				
			||||||
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
 | 
					 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					 | 
				
			||||||
Developing
 | 
					 | 
				
			||||||
----------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
See [`doc/hacking.md`](doc/hacking.md) for this copy, or the [official documentation](https://developer.puri.sm/projects/squeekboard/) for the current release.
 | 
					 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										1
									
								
								bindings/vala/Eek-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								bindings/vala/Eek-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					Eek cheader_filename="eek/eek.h"
 | 
				
			||||||
							
								
								
									
										1
									
								
								bindings/vala/EekGtk-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								bindings/vala/EekGtk-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					EekGtk cheader_filename="eek/eek-gtk.h"
 | 
				
			||||||
							
								
								
									
										1
									
								
								bindings/vala/EekXkl-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								bindings/vala/EekXkl-0.90.metadata
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					EekXkl cheader_filename="eek/eek-xkl.h"
 | 
				
			||||||
							
								
								
									
										1
									
								
								bindings/vala/eek-0.90.deps
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								bindings/vala/eek-0.90.deps
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					gio-2.0
 | 
				
			||||||
							
								
								
									
										1
									
								
								bindings/vala/eek-gtk-0.90.deps
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								bindings/vala/eek-gtk-0.90.deps
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					eek-0.90
 | 
				
			||||||
							
								
								
									
										2
									
								
								bindings/vala/eek-xkl-0.90.deps
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								bindings/vala/eek-xkl-0.90.deps
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					eek-0.90
 | 
				
			||||||
 | 
					x11
 | 
				
			||||||
							
								
								
									
										22
									
								
								cargo.sh
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								cargo.sh
									
									
									
									
									
								
							@ -1,22 +0,0 @@
 | 
				
			|||||||
#!/bin/sh
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# This script manages Cargo operations
 | 
					 | 
				
			||||||
# while keeping the artifact directory within the build tree
 | 
					 | 
				
			||||||
# instead of the source tree
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
set -e
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SCRIPT_PATH="$(realpath "$0")"
 | 
					 | 
				
			||||||
SOURCE_DIR="$(dirname "$SCRIPT_PATH")"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CARGO_TARGET_DIR="$(pwd)"
 | 
					 | 
				
			||||||
export CARGO_TARGET_DIR
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
cd "$SOURCE_DIR"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# the 'run" command takes arguments at the end,
 | 
					 | 
				
			||||||
# so --manifest-path must not be last
 | 
					 | 
				
			||||||
CMD="$1"
 | 
					 | 
				
			||||||
shift
 | 
					 | 
				
			||||||
cargo "$CMD" --manifest-path "$CARGO_TARGET_DIR"/Cargo.toml "$@"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,49 +0,0 @@
 | 
				
			|||||||
#!/usr/bin/env python3
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
"""This script manages Cargo builds
 | 
					 | 
				
			||||||
while keeping the artifact directory within the build tree
 | 
					 | 
				
			||||||
instead of the source tree.
 | 
					 | 
				
			||||||
"""
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
from pathlib import Path
 | 
					 | 
				
			||||||
import shlex
 | 
					 | 
				
			||||||
import subprocess
 | 
					 | 
				
			||||||
import sys
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
source_dir = Path(__file__).absolute().parent
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
args = sys.argv[1:]
 | 
					 | 
				
			||||||
binary_dir = "debug"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if '--release' in args:
 | 
					 | 
				
			||||||
    binary_dir = "release"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# The file produced by Cargo will have a special name
 | 
					 | 
				
			||||||
try:
 | 
					 | 
				
			||||||
    i = args.index('--rename')
 | 
					 | 
				
			||||||
except ValueError:
 | 
					 | 
				
			||||||
    filename = None
 | 
					 | 
				
			||||||
else:
 | 
					 | 
				
			||||||
    args.pop(i)
 | 
					 | 
				
			||||||
    filename = args.pop(i)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# The target destination of the produced file is a positional argument
 | 
					 | 
				
			||||||
out_path = [arg for arg in args if not arg.startswith('--')]
 | 
					 | 
				
			||||||
if out_path:
 | 
					 | 
				
			||||||
    out_path = out_path[0]
 | 
					 | 
				
			||||||
    i = args.index(out_path)
 | 
					 | 
				
			||||||
    args.pop(i)    
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
subprocess.run(['sh', "{}/cargo.sh".format(source_dir.as_posix()), 'build']
 | 
					 | 
				
			||||||
    + args,
 | 
					 | 
				
			||||||
    check=True)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if out_path:
 | 
					 | 
				
			||||||
    out_path = Path(out_path).absolute()
 | 
					 | 
				
			||||||
    out_basename = out_path.name
 | 
					 | 
				
			||||||
    filename = filename or out_basename
 | 
					 | 
				
			||||||
    subprocess.run(['cp', '-a',
 | 
					 | 
				
			||||||
        './{}/{}'.format(binary_dir, filename),
 | 
					 | 
				
			||||||
        out_path],
 | 
					 | 
				
			||||||
        check=True)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
							
								
								
									
										6
									
								
								data/eekboard-autostart.desktop.in
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								data/eekboard-autostart.desktop.in
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,6 @@
 | 
				
			|||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Name=Eekboard
 | 
				
			||||||
 | 
					Exec=eekboard -f
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
 | 
					#AutostartCondition=GSettings org.gnome.desktop.a11y.applications screen-keyboard-enabled
 | 
				
			||||||
 | 
					X-GNOME-AutoRestart=true
 | 
				
			||||||
							
								
								
									
										3
									
								
								data/eekboard-server.service.in
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								data/eekboard-server.service.in
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					[D-BUS Service]
 | 
				
			||||||
 | 
					Name=org.fedorahosted.Eekboard
 | 
				
			||||||
 | 
					Exec=@bindir@/eekboard-server
 | 
				
			||||||
							
								
								
									
										9
									
								
								data/eekboard.desktop.in
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								data/eekboard.desktop.in
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Name=Eekboard
 | 
				
			||||||
 | 
					GenericName=Eekboard Virtual Keyboard
 | 
				
			||||||
 | 
					Comment=Virtual Keyboard
 | 
				
			||||||
 | 
					Exec=eekboard
 | 
				
			||||||
 | 
					Icon=eekboard
 | 
				
			||||||
 | 
					Terminal=false
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
 | 
					Categories=GTK;Utility;
 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default:   { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline:   { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide:      { width: 59,    height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 140,   height: 52 }
 | 
					 | 
				
			||||||
    special:   { width: 44,    height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n .   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default:   { width: 54,  height: 42 }
 | 
					 | 
				
			||||||
    altline:   { width: 81,  height: 42 }
 | 
					 | 
				
			||||||
    wide:      { width: 100, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 205, height: 42 }
 | 
					 | 
				
			||||||
    special:   { width: 54,  height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n .   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32.72, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 47, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 49.09, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 185, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "я в е р т ъ у и о п ю"
 | 
					 | 
				
			||||||
        - "а с д ф г х й к л ш щ"
 | 
					 | 
				
			||||||
        - "Shift_L з ь ц ж б н м ч BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space   .    Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Я В Е Р Т Ъ У И О П Ю"
 | 
					 | 
				
			||||||
        - "А С Д Ф Г Х Й К Л Ш Щ"
 | 
					 | 
				
			||||||
        - "Shift_L З Ь Ц Ж Б Н М Ч BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space   ,    Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ç"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space     , Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ç"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space     period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "à À á Á ã Ã â Â é É"
 | 
					 | 
				
			||||||
        - "show_symbols   ê Ê í Í ó Ó ô Ô"
 | 
					 | 
				
			||||||
        - "show_letters        õ Õ ú Ú ü Ü period BackSpace"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "@ # $ % - + ÷ × = ≠"
 | 
					 | 
				
			||||||
        - "( ) § & < > / * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols     º \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "1ã"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "1ã"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,106 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 106, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L    z x c v b n m    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L    Z X C V B N M    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_upper_accents    space    ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols    , \" ' colon ; ! ?    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols    \\ / < > = [ ]    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "ä ě é ř ť ý ů í ó ö"
 | 
					 | 
				
			||||||
        - "á š ď ë ŕ ú ü ô ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    ž ß č ç ñ ň ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Ä Ě É Ř Ť Ý Ů Í Ó Ö"
 | 
					 | 
				
			||||||
        - "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    Ž ẞ Č Ç Ñ Ň Ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_upper_accents    space    , . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    accents_Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "á"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "Á"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,106 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 162, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L    z x c v b n m    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L    Z X C V B N M    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_upper_accents    space    ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols    , \" ' colon ; ! ?    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols    \\ / < > = [ ]    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "ä ě é ř ť ý ů í ó ö"
 | 
					 | 
				
			||||||
        - "á š ď ë ŕ ú ü ô ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    ž ß č ç ñ ň ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Ä Ě É Ř Ť Ý Ů Í Ó Ö"
 | 
					 | 
				
			||||||
        - "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    Ž ẞ Č Ç Ñ Ň Ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_upper_accents    space    , . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    accents_Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "á"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "Á"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,106 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 106, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t z u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L    y x c v b n m    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Z U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L    Y X C V B N M    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_upper_accents    space    ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols    , \" ' colon ; ! ?    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols    \\ / < > = [ ]    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "ä ě é ř ť ž ů í ó ö"
 | 
					 | 
				
			||||||
        - "á š ď ë ŕ ú ü ô ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    ý ß č ç ñ ň ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Ä Ě É Ř Ť Ž Ů Í Ó Ö"
 | 
					 | 
				
			||||||
        - "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    Ý ẞ Č Ç Ñ Ň Ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_upper_accents    space    , . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    accents_Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "á"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "Á"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,106 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 162, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t z u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L    y x c v b n m    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Z U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L    Y X C V B N M    BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences show_upper_accents    space    ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols    , \" ' colon ; ! ?    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols    \\ / < > = [ ]    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "ä ě é ř ť ž ů í ó ö"
 | 
					 | 
				
			||||||
        - "á š ď ë ŕ ú ü ô ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    ý ß č ç ñ ň ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_accents    space    , . Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Ä Ě É Ř Ť Ž Ů Í Ó Ö"
 | 
					 | 
				
			||||||
        - "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
 | 
					 | 
				
			||||||
        - "accents_Shift_L    Ý ẞ Č Ç Ñ Ň Ĺ    BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences show_upper_accents    space    , . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    accents_Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "á"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: "Á"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,82 +0,0 @@
 | 
				
			|||||||
# Maintained by: Mark Müller <markmueller86@gmail.com>
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t z u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   y x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Z U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Y X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   ; \" ' : = < >  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` ´ | · √ µ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / § π τ [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "ä è é ö ü Ä È É Ö Ü"
 | 
					 | 
				
			||||||
        - "à â ê î ô À Â È Î Ô"
 | 
					 | 
				
			||||||
        - "show_numbers  « » ç Ç æ œ ß  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        „ “ Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "äÄ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        label: " "
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
@ -1,81 +0,0 @@
 | 
				
			|||||||
# Maintained by: Mark Müller <markmueller86@gmail.com>
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 48, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 108, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 216, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 48, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t z u i o p ü"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ö ä"
 | 
					 | 
				
			||||||
        - "Shift_L   y x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Z U I O P Ü"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ö Ä"
 | 
					 | 
				
			||||||
        - "Shift_L   Y X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # % & - _ + ( ) ß"
 | 
					 | 
				
			||||||
        - "show_symbols   ; \" ' : = < >  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        , . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` ´  · © ® ÷ × ¶"
 | 
					 | 
				
			||||||
        - "€ £ $ ¥ ^ ° * { } |"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / § π τ [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        , . Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "ä è é ö ü Ä È É Ö Ü"
 | 
					 | 
				
			||||||
        - "à â ê î ô À Â È Î Ô"
 | 
					 | 
				
			||||||
        - "show_numbers  « » ç Ç æ œ ß  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        „ “ Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "äÄ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
@ -1,98 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    outline7: { width: 88.97561, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 150.5853, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p å"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ø æ"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P Å"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ø Æ"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' : ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
					 | 
				
			||||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: altline
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    U00B7:
 | 
					 | 
				
			||||||
        text: "·"
 | 
					 | 
				
			||||||
    squareroot:
 | 
					 | 
				
			||||||
        text: "√"
 | 
					 | 
				
			||||||
    Greek_pi:
 | 
					 | 
				
			||||||
        text: "π"
 | 
					 | 
				
			||||||
    division:
 | 
					 | 
				
			||||||
        text: "÷"
 | 
					 | 
				
			||||||
    multiply:
 | 
					 | 
				
			||||||
        text: "×"
 | 
					 | 
				
			||||||
    paragraph:
 | 
					 | 
				
			||||||
        text: "¶"
 | 
					 | 
				
			||||||
    Greek_tau:
 | 
					 | 
				
			||||||
        text: "τ"
 | 
					 | 
				
			||||||
    copyright:
 | 
					 | 
				
			||||||
        text: "©"
 | 
					 | 
				
			||||||
    U00AE:
 | 
					 | 
				
			||||||
        text: "®"
 | 
					 | 
				
			||||||
    U00A3:
 | 
					 | 
				
			||||||
        text: "£"
 | 
					 | 
				
			||||||
    EuroSign:
 | 
					 | 
				
			||||||
        text: "€"
 | 
					 | 
				
			||||||
    U00A5:
 | 
					 | 
				
			||||||
        text: "¥"
 | 
					 | 
				
			||||||
    asciicircum:
 | 
					 | 
				
			||||||
        text: "^"
 | 
					 | 
				
			||||||
    degree:
 | 
					 | 
				
			||||||
        text: "°"
 | 
					 | 
				
			||||||
@ -1,80 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 52, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 40, height: 52 }
 | 
					 | 
				
			||||||
    narrow: { width: 22, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "😀 😁 😅 😂 😊 😇 🙃"
 | 
					 | 
				
			||||||
        - "😍 😘 😋 😜 😎 🥳 😔"
 | 
					 | 
				
			||||||
        - "😢 😭 😡 😱 🤔 😬 🙄"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
    two:
 | 
					 | 
				
			||||||
        - "🤩 🤨 🤓 😴 🤢 🤮 😈"
 | 
					 | 
				
			||||||
        - "💩 🙌 👏 👍 👎 👌 👋"
 | 
					 | 
				
			||||||
        - "💪 🖕 🙏 💋 🤦♀️ 🤷♀️ 💃"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
    three:
 | 
					 | 
				
			||||||
        - "🐶 🐱 🐯 🙈 🐴 🦄 🌳"
 | 
					 | 
				
			||||||
        - "🍀 🌹 💫 ⭐️ ✨ 💥 🔥"
 | 
					 | 
				
			||||||
        - "🌈 ☀️ 🌤 🌧 ⛄️ ☂️ 🌊"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
    four:
 | 
					 | 
				
			||||||
        - "🍎 🍓 🍑 🍍 🍆 🥑 🥦"
 | 
					 | 
				
			||||||
        - "🍕 🎂 🍫 🍿 🍻 🍾 🍽"
 | 
					 | 
				
			||||||
        - "⚽️ 🏀 🏓 🏆 🎹 🎸 🎯"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
    five:
 | 
					 | 
				
			||||||
        - "🚗 🚌 🚲 🚄 🚂 ✈️ 🛰"
 | 
					 | 
				
			||||||
        - "🚀 🛸 🚁 🚦 🏝 🏔 ⛺️"
 | 
					 | 
				
			||||||
        - "🏠 🏢 🏥 🏛 🛤 🌅 🎇"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
    six:
 | 
					 | 
				
			||||||
        - "⌚️ 📱 💻 🖥 🖨 🕹 ✉️"
 | 
					 | 
				
			||||||
        - "📞 ☎️ ⏰ ⏳ 📈 📉 📌"
 | 
					 | 
				
			||||||
        - "🎁 ❤️ 💕 💯 ✅ ❎ 📢"
 | 
					 | 
				
			||||||
        - "preferences blank 1 2 3 4 5 6 blank BackSpace"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    1:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "1"
 | 
					 | 
				
			||||||
    2:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "two"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "2"
 | 
					 | 
				
			||||||
    3:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "three"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "3"
 | 
					 | 
				
			||||||
    4:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "four"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "4"
 | 
					 | 
				
			||||||
    5:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "five"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "5"
 | 
					 | 
				
			||||||
    6:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "six"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "6"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        keysym: BackSpace
 | 
					 | 
				
			||||||
    blank:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
        text: ""
 | 
					 | 
				
			||||||
@ -1,81 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ! ? Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' : ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        . Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "ĉ ĝ ĥ ĵ ŝ ŭ ?"
 | 
					 | 
				
			||||||
        - "Ĉ Ĝ Ĥ Ĵ Ŝ Ŭ !"
 | 
					 | 
				
			||||||
        - "show_numbers ' - 🐊 💚 🌐 . BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        „ “ Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ŭŜ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        label: " "
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
@ -1,87 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ç"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ç"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ¿ period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! = BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
					 | 
				
			||||||
        - "à è ì ò ù À È Ì Ò Ù"
 | 
					 | 
				
			||||||
        - "show_numbers ü ç ï Ü Ç Ï ¡  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        « » Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "àÀ"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,87 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ñ"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ñ"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ¿ period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! = BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? period Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
					 | 
				
			||||||
        - "à è ì ò ù À È Ì Ò Ù"
 | 
					 | 
				
			||||||
        - "show_numbers ü ç ï Ü Ç Ï ¡  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        « » Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "áÁ"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,171 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    outline7: { width: 88.97561, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 150.5853, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p å"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ö ä"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P Å"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ö Ä"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
					 | 
				
			||||||
        - "show_symbols   comma quotedbl quoteright colon semicolon exclam question  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
					 | 
				
			||||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
					 | 
				
			||||||
        - "show_numbers   backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: altline
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    aring:
 | 
					 | 
				
			||||||
        text: "å"
 | 
					 | 
				
			||||||
    Aring:
 | 
					 | 
				
			||||||
        text: "Å"
 | 
					 | 
				
			||||||
    ouml:
 | 
					 | 
				
			||||||
        text: "ö"
 | 
					 | 
				
			||||||
    Ouml:
 | 
					 | 
				
			||||||
        text: "Ö"
 | 
					 | 
				
			||||||
    auml:
 | 
					 | 
				
			||||||
        text: "ä"
 | 
					 | 
				
			||||||
    Auml:
 | 
					 | 
				
			||||||
        text: "Ä"
 | 
					 | 
				
			||||||
    asterisk:
 | 
					 | 
				
			||||||
        text: "*"
 | 
					 | 
				
			||||||
    asciitilde:
 | 
					 | 
				
			||||||
        text: "~"
 | 
					 | 
				
			||||||
    quoteleft:
 | 
					 | 
				
			||||||
        text: "`"
 | 
					 | 
				
			||||||
    bar:
 | 
					 | 
				
			||||||
        text: "|"
 | 
					 | 
				
			||||||
    U00B7:
 | 
					 | 
				
			||||||
        text: "·"
 | 
					 | 
				
			||||||
    squareroot:
 | 
					 | 
				
			||||||
        text: "√"
 | 
					 | 
				
			||||||
    Greek_pi:
 | 
					 | 
				
			||||||
        text: "π"
 | 
					 | 
				
			||||||
    division:
 | 
					 | 
				
			||||||
        text: "÷"
 | 
					 | 
				
			||||||
    multiply:
 | 
					 | 
				
			||||||
        text: "×"
 | 
					 | 
				
			||||||
    paragraph:
 | 
					 | 
				
			||||||
        text: "¶"
 | 
					 | 
				
			||||||
    Greek_tau:
 | 
					 | 
				
			||||||
        text: "τ"
 | 
					 | 
				
			||||||
    copyright:
 | 
					 | 
				
			||||||
        text: "©"
 | 
					 | 
				
			||||||
    numbersign:
 | 
					 | 
				
			||||||
        text: "#"
 | 
					 | 
				
			||||||
    U00AE:
 | 
					 | 
				
			||||||
        text: "®"
 | 
					 | 
				
			||||||
    at:
 | 
					 | 
				
			||||||
        text: "@"
 | 
					 | 
				
			||||||
    dollar:
 | 
					 | 
				
			||||||
        text: "$"
 | 
					 | 
				
			||||||
    U00A3:
 | 
					 | 
				
			||||||
        text: "£"
 | 
					 | 
				
			||||||
    percent:
 | 
					 | 
				
			||||||
        text: "%"
 | 
					 | 
				
			||||||
    EuroSign:
 | 
					 | 
				
			||||||
        text: "€"
 | 
					 | 
				
			||||||
    ampersand:
 | 
					 | 
				
			||||||
        text: "&"
 | 
					 | 
				
			||||||
    U00A5:
 | 
					 | 
				
			||||||
        text: "¥"
 | 
					 | 
				
			||||||
    minus:
 | 
					 | 
				
			||||||
        text: "-"
 | 
					 | 
				
			||||||
    asciicircum:
 | 
					 | 
				
			||||||
        text: "^"
 | 
					 | 
				
			||||||
    underscore:
 | 
					 | 
				
			||||||
        text: "_"
 | 
					 | 
				
			||||||
    degree:
 | 
					 | 
				
			||||||
        text: "°"
 | 
					 | 
				
			||||||
    plus:
 | 
					 | 
				
			||||||
        text: "+"
 | 
					 | 
				
			||||||
    equal:
 | 
					 | 
				
			||||||
        text: "="
 | 
					 | 
				
			||||||
    parenleft:
 | 
					 | 
				
			||||||
        text: "("
 | 
					 | 
				
			||||||
    parenright:
 | 
					 | 
				
			||||||
        text: ")"
 | 
					 | 
				
			||||||
    braceleft:
 | 
					 | 
				
			||||||
        text: "{"
 | 
					 | 
				
			||||||
    braceright:
 | 
					 | 
				
			||||||
        text: "}"
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
    backslash:
 | 
					 | 
				
			||||||
        text: "\\"
 | 
					 | 
				
			||||||
    slash:
 | 
					 | 
				
			||||||
        text: "/"
 | 
					 | 
				
			||||||
    quotedbl:
 | 
					 | 
				
			||||||
        text: "\""
 | 
					 | 
				
			||||||
    quoteright:
 | 
					 | 
				
			||||||
        text: "'"
 | 
					 | 
				
			||||||
    less:
 | 
					 | 
				
			||||||
        text: "<"
 | 
					 | 
				
			||||||
    greater:
 | 
					 | 
				
			||||||
        text: ">"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    semicolon:
 | 
					 | 
				
			||||||
        text: ";"
 | 
					 | 
				
			||||||
    exclam:
 | 
					 | 
				
			||||||
        text: "!"
 | 
					 | 
				
			||||||
    question:
 | 
					 | 
				
			||||||
        text: "?"
 | 
					 | 
				
			||||||
    bracketleft:
 | 
					 | 
				
			||||||
        text: "["
 | 
					 | 
				
			||||||
    bracketright:
 | 
					 | 
				
			||||||
        text: "]"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default:   { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline:   { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide:      { width: 59,    height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 140,   height: 52 }
 | 
					 | 
				
			||||||
    special:   { width: 44,    height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n .   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default:   { width: 54,  height: 42 }
 | 
					 | 
				
			||||||
    altline:   { width: 81,  height: 42 }
 | 
					 | 
				
			||||||
    wide:      { width: 100, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 205, height: 42 }
 | 
					 | 
				
			||||||
    special:   { width: 54,  height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n .   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
							
								
								
									
										120
									
								
								data/keyboards/geometry/compact.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								data/keyboards/geometry/compact.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,120 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="10" y="10" width="410.0000" height="229"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD10" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC10" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="LFSH" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key keycode="0" name="ABC123" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="I149" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="SPCE" oref="spaceline" />
 | 
				
			||||||
 | 
					      <key name="AB08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="outline7" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
							
								
								
									
										98
									
								
								data/keyboards/geometry/digits.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										98
									
								
								data/keyboards/geometry/digits.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,98 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline4" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline4" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline4" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline4" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="altline" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
							
								
								
									
										122
									
								
								data/keyboards/geometry/extended.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										122
									
								
								data/keyboards/geometry/extended.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,122 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD10" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD11" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC10" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC11" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="LFSH" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key keycode="0" name="ABC123" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="I149" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="SPCE" oref="spaceline" />
 | 
				
			||||||
 | 
					      <key name="AB08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="outline7" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="32" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="32" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="52"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
							
								
								
									
										105
									
								
								data/keyboards/geometry/number-keypad.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										105
									
								
								data/keyboards/geometry/number-keypad.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,105 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="SPCE" oref="spaceline" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="outline7" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
							
								
								
									
										105
									
								
								data/keyboards/geometry/phone-keypad.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										105
									
								
								data/keyboards/geometry/phone-keypad.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,105 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB05" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="SPCE" oref="spaceline" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="outline7" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="120.5853" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
							
								
								
									
										126
									
								
								data/keyboards/geometry/url.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										126
									
								
								data/keyboards/geometry/url.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,126 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<geometry version="0.90">
 | 
				
			||||||
 | 
					  <bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AD01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AD10" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AE01" oref="outline6" />
 | 
				
			||||||
 | 
					      <key name="AE02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AE03" oref="outline6" />
 | 
				
			||||||
 | 
					      <key name="AE04" oref="outline6" />
 | 
				
			||||||
 | 
					      <key name="AE05" oref="outline6" />
 | 
				
			||||||
 | 
					      <key name="AE06" oref="outline6" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="AC01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC09" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AC10" oref="outline2" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key name="LFSH" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="AB01" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB02" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB03" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB04" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB05" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB06" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="AB07" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="BKSP" oref="altline" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <section angle="0">
 | 
				
			||||||
 | 
					    <row orientation="1">
 | 
				
			||||||
 | 
					      <key keycode="0" name="ABC123" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="I149" oref="altline" />
 | 
				
			||||||
 | 
					      <key name="SPCE" oref="spaceline" />
 | 
				
			||||||
 | 
					      <key name="AB08" oref="outline2" />
 | 
				
			||||||
 | 
					      <key name="RTRN" oref="outline7" />
 | 
				
			||||||
 | 
					    </row>
 | 
				
			||||||
 | 
					  </section>
 | 
				
			||||||
 | 
					  <outline id="outline2" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="altline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="48.39024" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline4" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline5" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="59.31707" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline6" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="68.68292" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline7" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline8" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="88.97561" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline9" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="109.2682" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline10" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="37.46341" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="outline13" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="79.60975" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					  <outline id="spaceline" corner-radius="1.000000">
 | 
				
			||||||
 | 
					    <point x="0.000000" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="0.000000"/>
 | 
				
			||||||
 | 
					    <point x="150.5853" y="52.44877"/>
 | 
				
			||||||
 | 
					    <point x="0.000000" y="52.44877"/>
 | 
				
			||||||
 | 
					  </outline>
 | 
				
			||||||
 | 
					</geometry>
 | 
				
			||||||
@ -1,191 +0,0 @@
 | 
				
			|||||||
# Greek layout created by Antonis Tsolomitis
 | 
					 | 
				
			||||||
# University of the Aegean, Department of Mathematics, atsol@aegean.gr
 | 
					 | 
				
			||||||
# Sep 2019
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    outline7: { width: 88.97561, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 150.5853, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "; ς ε ρ τ υ θ ι ο π !"
 | 
					 | 
				
			||||||
        - "α σ δ φ γ η ξ κ λ show_accented"
 | 
					 | 
				
			||||||
        - "Shift_L ζ χ ψ ω β ν μ , BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences space period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - ": EuroSign Ε Ρ Τ Υ Θ Ι Ο Π"
 | 
					 | 
				
			||||||
        - "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
 | 
					 | 
				
			||||||
        - "Shift_L Ζ Χ Ψ Ω Β Ν Μ · BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences space « » Return"
 | 
					 | 
				
			||||||
    accented:
 | 
					 | 
				
			||||||
        - "ά έ ή ί ό ύ ώ ϊ ϋ ΐ"
 | 
					 | 
				
			||||||
        - "ΰ Ά Έ Ή Ί Ό Ύ Ώ Ϊ show_base"
 | 
					 | 
				
			||||||
        - "Ϋ Ϗ ϐ ϑ ϕ ϖ ϗ – — BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences space quoteleft quoteright Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
					 | 
				
			||||||
        - "show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences space period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
					 | 
				
			||||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
					 | 
				
			||||||
        - "show_numbers backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences space period Return"
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ΑΒΓ"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accented:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accented"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "άΐ"
 | 
					 | 
				
			||||||
    show_base:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "αι"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    aring:
 | 
					 | 
				
			||||||
        text: "å"
 | 
					 | 
				
			||||||
    Aring:
 | 
					 | 
				
			||||||
        text: "Å"
 | 
					 | 
				
			||||||
    oslash:
 | 
					 | 
				
			||||||
        text: "ø"
 | 
					 | 
				
			||||||
    Oslash:
 | 
					 | 
				
			||||||
        text: "Ø"
 | 
					 | 
				
			||||||
    ae:
 | 
					 | 
				
			||||||
        text: "æ"
 | 
					 | 
				
			||||||
    AE:
 | 
					 | 
				
			||||||
        text: "Æ"
 | 
					 | 
				
			||||||
    asterisk:
 | 
					 | 
				
			||||||
        text: "*"
 | 
					 | 
				
			||||||
    asciitilde:
 | 
					 | 
				
			||||||
        text: "~"
 | 
					 | 
				
			||||||
    quoteleft:
 | 
					 | 
				
			||||||
        text: "`"
 | 
					 | 
				
			||||||
    bar:
 | 
					 | 
				
			||||||
        text: "|"
 | 
					 | 
				
			||||||
    U00B7:
 | 
					 | 
				
			||||||
        text: "·"
 | 
					 | 
				
			||||||
    squareroot:
 | 
					 | 
				
			||||||
        text: "√"
 | 
					 | 
				
			||||||
    Greek_pi:
 | 
					 | 
				
			||||||
        text: "π"
 | 
					 | 
				
			||||||
    division:
 | 
					 | 
				
			||||||
        text: "÷"
 | 
					 | 
				
			||||||
    multiply:
 | 
					 | 
				
			||||||
        text: "×"
 | 
					 | 
				
			||||||
    paragraph:
 | 
					 | 
				
			||||||
        text: "¶"
 | 
					 | 
				
			||||||
    Greek_tau:
 | 
					 | 
				
			||||||
        text: "τ"
 | 
					 | 
				
			||||||
    copyright:
 | 
					 | 
				
			||||||
        text: "©"
 | 
					 | 
				
			||||||
    numbersign:
 | 
					 | 
				
			||||||
        text: "#"
 | 
					 | 
				
			||||||
    U00AE:
 | 
					 | 
				
			||||||
        text: "®"
 | 
					 | 
				
			||||||
    at:
 | 
					 | 
				
			||||||
        text: "@"
 | 
					 | 
				
			||||||
    dollar:
 | 
					 | 
				
			||||||
        text: "$"
 | 
					 | 
				
			||||||
    U00A3:
 | 
					 | 
				
			||||||
        text: "£"
 | 
					 | 
				
			||||||
    percent:
 | 
					 | 
				
			||||||
        text: "%"
 | 
					 | 
				
			||||||
    EuroSign:
 | 
					 | 
				
			||||||
        text: "€"
 | 
					 | 
				
			||||||
    ampersand:
 | 
					 | 
				
			||||||
        text: "&"
 | 
					 | 
				
			||||||
    U00A5:
 | 
					 | 
				
			||||||
        text: "¥"
 | 
					 | 
				
			||||||
    minus:
 | 
					 | 
				
			||||||
        text: "-"
 | 
					 | 
				
			||||||
    asciicircum:
 | 
					 | 
				
			||||||
        text: "^"
 | 
					 | 
				
			||||||
    underscore:
 | 
					 | 
				
			||||||
        text: "_"
 | 
					 | 
				
			||||||
    degree:
 | 
					 | 
				
			||||||
        text: "°"
 | 
					 | 
				
			||||||
    plus:
 | 
					 | 
				
			||||||
        text: "+"
 | 
					 | 
				
			||||||
    equal:
 | 
					 | 
				
			||||||
        text: "="
 | 
					 | 
				
			||||||
    parenleft:
 | 
					 | 
				
			||||||
        text: "("
 | 
					 | 
				
			||||||
    parenright:
 | 
					 | 
				
			||||||
        text: ")"
 | 
					 | 
				
			||||||
    braceleft:
 | 
					 | 
				
			||||||
        text: "{"
 | 
					 | 
				
			||||||
    braceright:
 | 
					 | 
				
			||||||
        text: "}"
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
    backslash:
 | 
					 | 
				
			||||||
        text: "\\"
 | 
					 | 
				
			||||||
    slash:
 | 
					 | 
				
			||||||
        text: "/"
 | 
					 | 
				
			||||||
    quotedbl:
 | 
					 | 
				
			||||||
        text: "\""
 | 
					 | 
				
			||||||
    quoteright:
 | 
					 | 
				
			||||||
        text: "'"
 | 
					 | 
				
			||||||
    less:
 | 
					 | 
				
			||||||
        text: "<"
 | 
					 | 
				
			||||||
    greater:
 | 
					 | 
				
			||||||
        text: ">"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    semicolon:
 | 
					 | 
				
			||||||
        text: ";"
 | 
					 | 
				
			||||||
    exclam:
 | 
					 | 
				
			||||||
        text: "!"
 | 
					 | 
				
			||||||
    question:
 | 
					 | 
				
			||||||
        text: "?"
 | 
					 | 
				
			||||||
    bracketleft:
 | 
					 | 
				
			||||||
        text: "["
 | 
					 | 
				
			||||||
    bracketright:
 | 
					 | 
				
			||||||
        text: "]"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,71 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 40, height: 60 }
 | 
					 | 
				
			||||||
    altline: { width: 56, height: 60 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 60 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 60 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 60 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "' - ק  ר א ט ו ן ם פ"
 | 
					 | 
				
			||||||
        - "ש ד ג כ ע י ח ל ך ף"
 | 
					 | 
				
			||||||
        - "ז ס ב ה נ מ צ ת ץ  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers comma preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # ₪ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € $ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
        
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "ض ص ق ف غ ع ه خ ح ج"
 | 
					 | 
				
			||||||
        - "ش س ی ب ل ا ت ن م ک"
 | 
					 | 
				
			||||||
        - "Shift_L   ظ ط ز ر ذ د و  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "پ { } [ ] ّ   َ   ِ  ُ چ"
 | 
					 | 
				
			||||||
        - "ؤ ئ ي إ أ آ ة » « گ"
 | 
					 | 
				
			||||||
        - "Shift_L  ك ٓ ژ ء > < ؟  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
 | 
					 | 
				
			||||||
        - "@ # ﷼ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ؛ ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 108, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 216, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "ض ص ق ف غ ع ه خ ح ج"
 | 
					 | 
				
			||||||
        - "ش س ی ب ل ا ت ن م ک"
 | 
					 | 
				
			||||||
        - "Shift_L   ظ ط ز ر ذ د و  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "پ { } [ ] ّ   َ   ِ  ُ چ"
 | 
					 | 
				
			||||||
        - "ؤ ئ ي إ أ آ ة » « گ"
 | 
					 | 
				
			||||||
        - "Shift_L  ك ٓ ژ ء > < ؟  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰"
 | 
					 | 
				
			||||||
        - "@ # ﷼ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ؛ ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
# Friulian layout created by Fabio Tomat
 | 
					 | 
				
			||||||
# 14 october 2020
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        “ ” Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' : ; ! =  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? . Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "â ê î ô û Â Ê Î Ô Û"
 | 
					 | 
				
			||||||
        - "à è ì ò ù À È Ì Ò Ù"
 | 
					 | 
				
			||||||
        - "show_numbers   ç Ç ᶜ ᵐ ⁿ ᵉ ᵗ  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ᶠ . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "àê"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        label: " "
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,87 +0,0 @@
 | 
				
			|||||||
# Italian layout created by Antonio Pandolfo
 | 
					 | 
				
			||||||
# 03 october 2019
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 99.67, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        , . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers show_eschars preferences         space        ? . Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' : ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        ? . Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "á é í ó ú Á É Í Ó Ú"
 | 
					 | 
				
			||||||
        - "à è ì ò « » ù ! { }"
 | 
					 | 
				
			||||||
        - "show_numbers   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters show_eschars preferences         space        « » Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "default"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "eschars"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "àè"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        label: " "
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,525 +0,0 @@
 | 
				
			|||||||
# Maintained by: Mark Müller <markmueller86@gmail.com>
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    default-wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base: # hiragana
 | 
					 | 
				
			||||||
        - "preferences _a ka sa BackSpace"
 | 
					 | 
				
			||||||
        - "Left ta na ha Right"
 | 
					 | 
				
			||||||
        - "カタカナ ma ya ra space"
 | 
					 | 
				
			||||||
        - "switch2roman symbols wa punct Return"
 | 
					 | 
				
			||||||
    _a:
 | 
					 | 
				
			||||||
        - "preferences dummykey _a dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "あ い う え お"
 | 
					 | 
				
			||||||
        - "ぁ ぃ ぅ ぇ ぉ" # 2 code points each
 | 
					 | 
				
			||||||
        - "dummykey dummykey ゔ dummykey dummykey"
 | 
					 | 
				
			||||||
    ka:
 | 
					 | 
				
			||||||
        - "preferences dummykey ka dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "か き く け こ"
 | 
					 | 
				
			||||||
        - "が ぎ ぐ げ ご"
 | 
					 | 
				
			||||||
        - "ゕ dummykey dummykey ゖ dummykey"
 | 
					 | 
				
			||||||
    sa:
 | 
					 | 
				
			||||||
        - "preferences dummykey sa dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "さ し す せ そ"
 | 
					 | 
				
			||||||
        - "ざ じ ず ぜ ぞ"
 | 
					 | 
				
			||||||
    ta:
 | 
					 | 
				
			||||||
        - "preferences dummykey ta dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "た ち つ て と"
 | 
					 | 
				
			||||||
        - "だ ぢ づ で ど"
 | 
					 | 
				
			||||||
        - "dummykey dummykey っ dummykey dummykey"
 | 
					 | 
				
			||||||
    na:
 | 
					 | 
				
			||||||
        - "preferences dummykey na dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "な に ぬ ね の"
 | 
					 | 
				
			||||||
    ha:
 | 
					 | 
				
			||||||
        - "preferences dummykey ha dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "は ひ ふ へ ほ"
 | 
					 | 
				
			||||||
        - "ば び ぶ べ ぼ"
 | 
					 | 
				
			||||||
        - "ぱ ぴ ぷ ぺ ぽ"
 | 
					 | 
				
			||||||
    ma:
 | 
					 | 
				
			||||||
        - "preferences dummykey ma dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "ま み む め も"
 | 
					 | 
				
			||||||
    ya:
 | 
					 | 
				
			||||||
        - "preferences dummykey ya dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "や dummykey ゆ dummykey よ"
 | 
					 | 
				
			||||||
        - "ゃ dummykey ゅ dummykey ょ"
 | 
					 | 
				
			||||||
    ra:
 | 
					 | 
				
			||||||
        - "preferences dummykey ra dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "ら り る れ ろ"
 | 
					 | 
				
			||||||
    wa:
 | 
					 | 
				
			||||||
        - "preferences dummykey wa dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "わ ゐ dummykey ゑ を"
 | 
					 | 
				
			||||||
        - "ゎ dummykey ん dummykey dummykey"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "preferences dummykey symbols dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "「 」 ( ) §"
 | 
					 | 
				
			||||||
        - "【 】 < > ="
 | 
					 | 
				
			||||||
        - "+ * & % $ "
 | 
					 | 
				
			||||||
    punct:
 | 
					 | 
				
			||||||
        - "preferences dummykey punct dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "。 、 ? ! ー"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        - ": ; ・ 〜 …"
 | 
					 | 
				
			||||||
        - "♪ ” ’ ゙ ゚"
 | 
					 | 
				
			||||||
        
 | 
					 | 
				
			||||||
#a 	あア 	かカ 	さサ 	たタ 	なナ 	はハ 	まマ 	やヤ 	らラ 	わワ
 | 
					 | 
				
			||||||
#i 	いイ 	きキ 	しシ 	ちチ 	にニ 	ひヒ 	みミ 	※      りリ 	ゐヰ
 | 
					 | 
				
			||||||
#u 	うウ 	くク 	すス 	つツ 	ぬヌ 	ふフ 	むム 	ゆユ 	るル 	※
 | 
					 | 
				
			||||||
#e 	えエ 	けケ 	せセ 	てテ 	ねネ 	へヘ 	めメ 	※      れレ 	ゑヱ
 | 
					 | 
				
			||||||
#o 	おオ 	こコ 	そソ 	とト 	のノ 	ほホ 	もモ 	よヨ 	ろロ 	をヲ
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#      g       z       d       b       p      n
 | 
					 | 
				
			||||||
#a 	が ガ 	ざ ザ 	だ ダ 	ば バ 	ぱ パ   ん ン
 | 
					 | 
				
			||||||
#i 	ぎ ギ 	じ ジ 	ぢ ヂ 	び ビ 	ぴ ピ 
 | 
					 | 
				
			||||||
#u 	ぐ グ 	ず ズ 	づ ヅ 	ぶ ブ 	ぷ プ 
 | 
					 | 
				
			||||||
#e 	げ ゲ 	ぜ ゼ 	で デ 	べ ベ 	ぺ ペ 
 | 
					 | 
				
			||||||
#o 	ご ゴ 	ぞ ゾ 	ど ド 	ぼ ボ 	ぽ ポ 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    カタカナ: # katakana
 | 
					 | 
				
			||||||
        - "preferences _A KA SA BackSpace"
 | 
					 | 
				
			||||||
        - "Left TA NA HA Right"
 | 
					 | 
				
			||||||
        - "ひらがな MA YA RA space"
 | 
					 | 
				
			||||||
        - "switch2roman SYMBOLS WA PUNCT Return"
 | 
					 | 
				
			||||||
    _A:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY _A DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ア イ ウ エ オ"
 | 
					 | 
				
			||||||
        - "ァ ィ ゥ ェ ォ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ヴ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    KA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY KA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "カ キ ク ケ コ"
 | 
					 | 
				
			||||||
        - "ガ ギ グ ゲ ゴ"
 | 
					 | 
				
			||||||
        - "ヵ DUMMYKEY ㇰ ヶ DUMMYKEY"
 | 
					 | 
				
			||||||
    SA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY SA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "サ シ ス セ ソ"
 | 
					 | 
				
			||||||
        - "ザ ジ ズ ゼ ゾ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY ㇱ ㇲ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    TA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY TA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "タ チ ツ テ ト"
 | 
					 | 
				
			||||||
        - "ダ ヂ ヅ デ ド"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ッ DUMMYKEY ㇳ"
 | 
					 | 
				
			||||||
    NA: 
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY NA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ナ ニ ヌ ネ ノ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ㇴ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    HA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY HA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ハ ヒ フ ヘ ホ"
 | 
					 | 
				
			||||||
        - "バ ビ ブ ベ ボ"
 | 
					 | 
				
			||||||
        - "パ ピ プ ペ ポ"
 | 
					 | 
				
			||||||
    MA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY MA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "マ ミ ム メ モ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ㇺ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    YA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY YA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ヤ DUMMYKEY ユ DUMMYKEY ヨ"
 | 
					 | 
				
			||||||
        - "ャ DUMMYKEY ュ DUMMYKEY ョ"
 | 
					 | 
				
			||||||
    RA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY RA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ラ リ ル レ ロ"
 | 
					 | 
				
			||||||
        - "ㇻ ㇼ ㇽ ㇾ ㇿ"
 | 
					 | 
				
			||||||
    WA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY WA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ワ ヰ DUMMYKEY ヱ ヲ"
 | 
					 | 
				
			||||||
        - "ヮ ヸ ン ヹ ヺ"
 | 
					 | 
				
			||||||
    # numbers view
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "preferences 1 2 3 BackSpace"
 | 
					 | 
				
			||||||
        - "Left 4 5 6 Right"
 | 
					 | 
				
			||||||
        - "roman 7 8 9 space"
 | 
					 | 
				
			||||||
        - "switch2kana * 0 # Return"
 | 
					 | 
				
			||||||
    # Roman alphabet view
 | 
					 | 
				
			||||||
    roman:
 | 
					 | 
				
			||||||
        - "preferences RSYM1 ABC DEF BackSpace"
 | 
					 | 
				
			||||||
        - "Left GHI JKL MNO Right"
 | 
					 | 
				
			||||||
        - "ひらがな PQRS TUV WXYZ space"
 | 
					 | 
				
			||||||
        - "switch2num RSYM2 RSYM3 RSYM4 Return"
 | 
					 | 
				
			||||||
    RSYM1:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM1 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "@ # $ § :"
 | 
					 | 
				
			||||||
        - "| € ¥ £ 1"
 | 
					 | 
				
			||||||
    ABC:
 | 
					 | 
				
			||||||
        - "preferences dummykey ABC dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "A B C Ä ç"
 | 
					 | 
				
			||||||
        - "a b c ä 2"
 | 
					 | 
				
			||||||
    DEF:
 | 
					 | 
				
			||||||
        - "preferences dummykey DEF dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "D E F dummykey"
 | 
					 | 
				
			||||||
        - "d e f 3"
 | 
					 | 
				
			||||||
    GHI:
 | 
					 | 
				
			||||||
        - "preferences dummykey GHI dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "G H I dummykey"
 | 
					 | 
				
			||||||
        - "g h i 4"
 | 
					 | 
				
			||||||
    JKL:
 | 
					 | 
				
			||||||
        - "preferences dummykey JKL dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "J K L dummykey"
 | 
					 | 
				
			||||||
        - "j k l 5"
 | 
					 | 
				
			||||||
    MNO:
 | 
					 | 
				
			||||||
        - "preferences dummykey MNO dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "M N O Ö dummykey"
 | 
					 | 
				
			||||||
        - "m n o ö 6"
 | 
					 | 
				
			||||||
    PQRS:
 | 
					 | 
				
			||||||
        - "preferences dummykey PQRS dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "P Q R S ß"
 | 
					 | 
				
			||||||
        - "p q r s 7"
 | 
					 | 
				
			||||||
    TUV:
 | 
					 | 
				
			||||||
        - "preferences dummykey TUV dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "T U V Ü dummykey"
 | 
					 | 
				
			||||||
        - "t u v ü 8"
 | 
					 | 
				
			||||||
    WXYZ:
 | 
					 | 
				
			||||||
        - "preferences dummykey WXYZ dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "W X Y Z dummykey"
 | 
					 | 
				
			||||||
        - "w x y z 9"
 | 
					 | 
				
			||||||
    RSYM2:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM2 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "( ) ' \" ~"
 | 
					 | 
				
			||||||
        - "[ ] { } _"
 | 
					 | 
				
			||||||
    RSYM3:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM3 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "+ - * / ="
 | 
					 | 
				
			||||||
        - "< > ^ ° 0"
 | 
					 | 
				
			||||||
    RSYM4:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM4 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - ", . ? ! ;"
 | 
					 | 
				
			||||||
        - "\\ ´ ` · ¶" 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    # following 4 buttons use the corresponding xkb name as keysym
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    # special button "preferences" is handled in the code
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    # space button using text tag for ideographic space
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "default-wide"
 | 
					 | 
				
			||||||
        label: "␣"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    # switch to number view
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    # switch to latin characters
 | 
					 | 
				
			||||||
    roman:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "roman"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ᴀʙᴄ"
 | 
					 | 
				
			||||||
    # toggle button with 3 different states
 | 
					 | 
				
			||||||
    switch2roman: # switch from kana to latin characters view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "roman"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "あᴀ₁"
 | 
					 | 
				
			||||||
    switch2num: # switch from latin characters to numbers view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ぁA₁"
 | 
					 | 
				
			||||||
    switch2kana: # switch from numbers to hiragana view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ぁᴀ1"
 | 
					 | 
				
			||||||
    # Buttons for katakana and symbols
 | 
					 | 
				
			||||||
    ひらがな:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "あさ"
 | 
					 | 
				
			||||||
    _a:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "_a"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "あ"
 | 
					 | 
				
			||||||
    ka:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ka"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "か"
 | 
					 | 
				
			||||||
    sa:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "sa"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "さ"
 | 
					 | 
				
			||||||
    ta:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ta"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "た"
 | 
					 | 
				
			||||||
    na:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "na"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "な"
 | 
					 | 
				
			||||||
    ha:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ha"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "は"
 | 
					 | 
				
			||||||
    ma:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ma"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ま"
 | 
					 | 
				
			||||||
    ya:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ya"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "や"
 | 
					 | 
				
			||||||
    ra:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ra"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ら"
 | 
					 | 
				
			||||||
    wa:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "wa"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "わ"
 | 
					 | 
				
			||||||
    dummykey:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ""
 | 
					 | 
				
			||||||
    # buttons available on different views like symbols and punct should go
 | 
					 | 
				
			||||||
    # back to their corresponding view
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "symbols"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    punct:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "punct"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "。"
 | 
					 | 
				
			||||||
    # Buttons for katakana and symbols
 | 
					 | 
				
			||||||
    カタカナ:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "アサ"
 | 
					 | 
				
			||||||
    _A:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "_A"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ア"
 | 
					 | 
				
			||||||
    KA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "KA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "カ"
 | 
					 | 
				
			||||||
    SA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "SA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "サ"
 | 
					 | 
				
			||||||
    TA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "TA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "タ"
 | 
					 | 
				
			||||||
    NA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "NA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ナ"
 | 
					 | 
				
			||||||
    HA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "HA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ハ"
 | 
					 | 
				
			||||||
    MA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "MA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "マ"
 | 
					 | 
				
			||||||
    YA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "YA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ヤ"
 | 
					 | 
				
			||||||
    RA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ラ"
 | 
					 | 
				
			||||||
    WA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "WA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ワ"
 | 
					 | 
				
			||||||
    DUMMYKEY:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ""
 | 
					 | 
				
			||||||
    SYMBOLS:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "symbols"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    PUNCT:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "punct"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "。"
 | 
					 | 
				
			||||||
    # Buttons for Latin characters
 | 
					 | 
				
			||||||
    RSYM1:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM1"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "@#"
 | 
					 | 
				
			||||||
    ABC:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ABC"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴀʙᴄ"
 | 
					 | 
				
			||||||
    DEF:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "DEF"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴅᴇꜰ"
 | 
					 | 
				
			||||||
    GHI:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "GHI"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ɢʜɪ"
 | 
					 | 
				
			||||||
    JKL:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "JKL"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴊᴋʟ"
 | 
					 | 
				
			||||||
    MNO:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "MNO"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴍɴᴏ"
 | 
					 | 
				
			||||||
    PQRS:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "PQRS"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴘǫʀs"
 | 
					 | 
				
			||||||
    TUV:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "TUV"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴛᴜᴠ"
 | 
					 | 
				
			||||||
    WXYZ:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "WXYZ"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴡxʏᴢ"
 | 
					 | 
				
			||||||
    RSYM2:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM2"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    RSYM3:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM3"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "+-"
 | 
					 | 
				
			||||||
    RSYM4:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM4"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ",.?"
 | 
					 | 
				
			||||||
@ -1,525 +0,0 @@
 | 
				
			|||||||
# Maintained by: Mark Müller <markmueller86@gmail.com>
 | 
					 | 
				
			||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 62, height: 42 }
 | 
					 | 
				
			||||||
    default-wide: { width: 62, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 62, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 62, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base: # hiragana
 | 
					 | 
				
			||||||
        - "preferences _a ka sa BackSpace"
 | 
					 | 
				
			||||||
        - "Left ta na ha Right"
 | 
					 | 
				
			||||||
        - "カタカナ ma ya ra space"
 | 
					 | 
				
			||||||
        - "switch2roman symbols wa punct Return"
 | 
					 | 
				
			||||||
    _a:
 | 
					 | 
				
			||||||
        - "preferences dummykey _a dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "あ い う え お"
 | 
					 | 
				
			||||||
        - "ぁ ぃ ぅ ぇ ぉ" # 2 code points each
 | 
					 | 
				
			||||||
        - "dummykey dummykey ゔ dummykey dummykey"
 | 
					 | 
				
			||||||
    ka:
 | 
					 | 
				
			||||||
        - "preferences dummykey ka dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "か き く け こ"
 | 
					 | 
				
			||||||
        - "が ぎ ぐ げ ご"
 | 
					 | 
				
			||||||
        - "ゕ dummykey dummykey ゖ dummykey"
 | 
					 | 
				
			||||||
    sa:
 | 
					 | 
				
			||||||
        - "preferences dummykey sa dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "さ し す せ そ"
 | 
					 | 
				
			||||||
        - "ざ じ ず ぜ ぞ"
 | 
					 | 
				
			||||||
    ta:
 | 
					 | 
				
			||||||
        - "preferences dummykey ta dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "た ち つ て と"
 | 
					 | 
				
			||||||
        - "だ ぢ づ で ど"
 | 
					 | 
				
			||||||
        - "dummykey dummykey っ dummykey dummykey"
 | 
					 | 
				
			||||||
    na:
 | 
					 | 
				
			||||||
        - "preferences dummykey na dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "な に ぬ ね の"
 | 
					 | 
				
			||||||
    ha:
 | 
					 | 
				
			||||||
        - "preferences dummykey ha dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "は ひ ふ へ ほ"
 | 
					 | 
				
			||||||
        - "ば び ぶ べ ぼ"
 | 
					 | 
				
			||||||
        - "ぱ ぴ ぷ ぺ ぽ"
 | 
					 | 
				
			||||||
    ma:
 | 
					 | 
				
			||||||
        - "preferences dummykey ma dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "ま み む め も"
 | 
					 | 
				
			||||||
    ya:
 | 
					 | 
				
			||||||
        - "preferences dummykey ya dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "や dummykey ゆ dummykey よ"
 | 
					 | 
				
			||||||
        - "ゃ dummykey ゅ dummykey ょ"
 | 
					 | 
				
			||||||
    ra:
 | 
					 | 
				
			||||||
        - "preferences dummykey ra dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "ら り る れ ろ"
 | 
					 | 
				
			||||||
    wa:
 | 
					 | 
				
			||||||
        - "preferences dummykey wa dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "わ ゐ dummykey ゑ を"
 | 
					 | 
				
			||||||
        - "ゎ dummykey ん dummykey dummykey"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "preferences dummykey symbols dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "「 」 ( ) §"
 | 
					 | 
				
			||||||
        - "【 】 < > ="
 | 
					 | 
				
			||||||
        - "+ * & % $ "
 | 
					 | 
				
			||||||
    punct:
 | 
					 | 
				
			||||||
        - "preferences dummykey punct dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "。 、 ? ! ー"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        - ": ; ・ 〜 …"
 | 
					 | 
				
			||||||
        - "♪ ” ’ ゙ ゚"
 | 
					 | 
				
			||||||
        
 | 
					 | 
				
			||||||
#a 	あア 	かカ 	さサ 	たタ 	なナ 	はハ 	まマ 	やヤ 	らラ 	わワ
 | 
					 | 
				
			||||||
#i 	いイ 	きキ 	しシ 	ちチ 	にニ 	ひヒ 	みミ 	※      りリ 	ゐヰ
 | 
					 | 
				
			||||||
#u 	うウ 	くク 	すス 	つツ 	ぬヌ 	ふフ 	むム 	ゆユ 	るル 	※
 | 
					 | 
				
			||||||
#e 	えエ 	けケ 	せセ 	てテ 	ねネ 	へヘ 	めメ 	※      れレ 	ゑヱ
 | 
					 | 
				
			||||||
#o 	おオ 	こコ 	そソ 	とト 	のノ 	ほホ 	もモ 	よヨ 	ろロ 	をヲ
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#      g       z       d       b       p      n
 | 
					 | 
				
			||||||
#a 	が ガ 	ざ ザ 	だ ダ 	ば バ 	ぱ パ   ん ン
 | 
					 | 
				
			||||||
#i 	ぎ ギ 	じ ジ 	ぢ ヂ 	び ビ 	ぴ ピ 
 | 
					 | 
				
			||||||
#u 	ぐ グ 	ず ズ 	づ ヅ 	ぶ ブ 	ぷ プ 
 | 
					 | 
				
			||||||
#e 	げ ゲ 	ぜ ゼ 	で デ 	べ ベ 	ぺ ペ 
 | 
					 | 
				
			||||||
#o 	ご ゴ 	ぞ ゾ 	ど ド 	ぼ ボ 	ぽ ポ 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    カタカナ: # katakana
 | 
					 | 
				
			||||||
        - "preferences _A KA SA BackSpace"
 | 
					 | 
				
			||||||
        - "Left TA NA HA Right"
 | 
					 | 
				
			||||||
        - "ひらがな MA YA RA space"
 | 
					 | 
				
			||||||
        - "switch2roman SYMBOLS WA PUNCT Return"
 | 
					 | 
				
			||||||
    _A:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY _A DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ア イ ウ エ オ"
 | 
					 | 
				
			||||||
        - "ァ ィ ゥ ェ ォ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ヴ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    KA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY KA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "カ キ ク ケ コ"
 | 
					 | 
				
			||||||
        - "ガ ギ グ ゲ ゴ"
 | 
					 | 
				
			||||||
        - "ヵ DUMMYKEY ㇰ ヶ DUMMYKEY"
 | 
					 | 
				
			||||||
    SA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY SA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "サ シ ス セ ソ"
 | 
					 | 
				
			||||||
        - "ザ ジ ズ ゼ ゾ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY ㇱ ㇲ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    TA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY TA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "タ チ ツ テ ト"
 | 
					 | 
				
			||||||
        - "ダ ヂ ヅ デ ド"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ッ DUMMYKEY ㇳ"
 | 
					 | 
				
			||||||
    NA: 
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY NA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ナ ニ ヌ ネ ノ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ㇴ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    HA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY HA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ハ ヒ フ ヘ ホ"
 | 
					 | 
				
			||||||
        - "バ ビ ブ ベ ボ"
 | 
					 | 
				
			||||||
        - "パ ピ プ ペ ポ"
 | 
					 | 
				
			||||||
    MA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY MA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "マ ミ ム メ モ"
 | 
					 | 
				
			||||||
        - "DUMMYKEY DUMMYKEY ㇺ DUMMYKEY DUMMYKEY"
 | 
					 | 
				
			||||||
    YA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY YA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ヤ DUMMYKEY ユ DUMMYKEY ヨ"
 | 
					 | 
				
			||||||
        - "ャ DUMMYKEY ュ DUMMYKEY ョ"
 | 
					 | 
				
			||||||
    RA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY RA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ラ リ ル レ ロ"
 | 
					 | 
				
			||||||
        - "ㇻ ㇼ ㇽ ㇾ ㇿ"
 | 
					 | 
				
			||||||
    WA:
 | 
					 | 
				
			||||||
        - "preferences DUMMYKEY WA DUMMYKEY BackSpace"
 | 
					 | 
				
			||||||
        - "ワ ヰ DUMMYKEY ヱ ヲ"
 | 
					 | 
				
			||||||
        - "ヮ ヸ ン ヹ ヺ"
 | 
					 | 
				
			||||||
    # numbers view
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "preferences 1 2 3 BackSpace"
 | 
					 | 
				
			||||||
        - "Left 4 5 6 Right"
 | 
					 | 
				
			||||||
        - "roman 7 8 9 space"
 | 
					 | 
				
			||||||
        - "switch2kana * 0 # Return"
 | 
					 | 
				
			||||||
    # Roman alphabet view
 | 
					 | 
				
			||||||
    roman:
 | 
					 | 
				
			||||||
        - "preferences RSYM1 ABC DEF BackSpace"
 | 
					 | 
				
			||||||
        - "Left GHI JKL MNO Right"
 | 
					 | 
				
			||||||
        - "ひらがな PQRS TUV WXYZ space"
 | 
					 | 
				
			||||||
        - "switch2num RSYM2 RSYM3 RSYM4 Return"
 | 
					 | 
				
			||||||
    RSYM1:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM1 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "@ # $ § :"
 | 
					 | 
				
			||||||
        - "| € ¥ £ 1"
 | 
					 | 
				
			||||||
    ABC:
 | 
					 | 
				
			||||||
        - "preferences dummykey ABC dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "A B C Ä ç"
 | 
					 | 
				
			||||||
        - "a b c ä 2"
 | 
					 | 
				
			||||||
    DEF:
 | 
					 | 
				
			||||||
        - "preferences dummykey DEF dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "D E F dummykey"
 | 
					 | 
				
			||||||
        - "d e f 3"
 | 
					 | 
				
			||||||
    GHI:
 | 
					 | 
				
			||||||
        - "preferences dummykey GHI dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "G H I dummykey"
 | 
					 | 
				
			||||||
        - "g h i 4"
 | 
					 | 
				
			||||||
    JKL:
 | 
					 | 
				
			||||||
        - "preferences dummykey JKL dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "J K L dummykey"
 | 
					 | 
				
			||||||
        - "j k l 5"
 | 
					 | 
				
			||||||
    MNO:
 | 
					 | 
				
			||||||
        - "preferences dummykey MNO dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "M N O Ö dummykey"
 | 
					 | 
				
			||||||
        - "m n o ö 6"
 | 
					 | 
				
			||||||
    PQRS:
 | 
					 | 
				
			||||||
        - "preferences dummykey PQRS dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "P Q R S ß"
 | 
					 | 
				
			||||||
        - "p q r s 7"
 | 
					 | 
				
			||||||
    TUV:
 | 
					 | 
				
			||||||
        - "preferences dummykey TUV dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "T U V Ü dummykey"
 | 
					 | 
				
			||||||
        - "t u v ü 8"
 | 
					 | 
				
			||||||
    WXYZ:
 | 
					 | 
				
			||||||
        - "preferences dummykey WXYZ dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "W X Y Z dummykey"
 | 
					 | 
				
			||||||
        - "w x y z 9"
 | 
					 | 
				
			||||||
    RSYM2:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM2 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "( ) ' \" ~"
 | 
					 | 
				
			||||||
        - "[ ] { } _"
 | 
					 | 
				
			||||||
    RSYM3:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM3 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - "+ - * / ="
 | 
					 | 
				
			||||||
        - "< > ^ ° 0"
 | 
					 | 
				
			||||||
    RSYM4:
 | 
					 | 
				
			||||||
        - "preferences dummykey RSYM4 dummykey BackSpace"
 | 
					 | 
				
			||||||
        - ", . ? ! ;"
 | 
					 | 
				
			||||||
        - "\\ ´ ` · ¶" 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    # following 4 buttons use the corresponding xkb name as keysym
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    # special button "preferences" is handled in the code
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    # space button using text tag for ideographic space
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "default-wide"
 | 
					 | 
				
			||||||
        label: "␣"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    # switch to number view
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    # switch to latin characters
 | 
					 | 
				
			||||||
    roman:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "roman"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ᴀʙᴄ"
 | 
					 | 
				
			||||||
    # toggle button with 3 different states
 | 
					 | 
				
			||||||
    switch2roman: # switch from kana to latin characters view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "roman"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "あᴀ₁"
 | 
					 | 
				
			||||||
    switch2num: # switch from latin characters to numbers view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ぁA₁"
 | 
					 | 
				
			||||||
    switch2kana: # switch from numbers to hiragana view
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ぁᴀ1"
 | 
					 | 
				
			||||||
    # Buttons for katakana and symbols
 | 
					 | 
				
			||||||
    ひらがな:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "あさ"
 | 
					 | 
				
			||||||
    _a:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "_a"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "あ"
 | 
					 | 
				
			||||||
    ka:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ka"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "か"
 | 
					 | 
				
			||||||
    sa:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "sa"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "さ"
 | 
					 | 
				
			||||||
    ta:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ta"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "た"
 | 
					 | 
				
			||||||
    na:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "na"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "な"
 | 
					 | 
				
			||||||
    ha:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ha"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "は"
 | 
					 | 
				
			||||||
    ma:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ma"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ま"
 | 
					 | 
				
			||||||
    ya:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ya"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "や"
 | 
					 | 
				
			||||||
    ra:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ra"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ら"
 | 
					 | 
				
			||||||
    wa:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "wa"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "わ"
 | 
					 | 
				
			||||||
    dummykey:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ""
 | 
					 | 
				
			||||||
    # buttons available on different views like symbols and punct should go
 | 
					 | 
				
			||||||
    # back to their corresponding view
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "symbols"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    punct:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "punct"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "。"
 | 
					 | 
				
			||||||
    # Buttons for katakana and symbols
 | 
					 | 
				
			||||||
    カタカナ:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "アサ"
 | 
					 | 
				
			||||||
    _A:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "_A"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ア"
 | 
					 | 
				
			||||||
    KA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "KA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "カ"
 | 
					 | 
				
			||||||
    SA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "SA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "サ"
 | 
					 | 
				
			||||||
    TA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "TA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "タ"
 | 
					 | 
				
			||||||
    NA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "NA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ナ"
 | 
					 | 
				
			||||||
    HA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "HA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ハ"
 | 
					 | 
				
			||||||
    MA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "MA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "マ"
 | 
					 | 
				
			||||||
    YA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "YA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ヤ"
 | 
					 | 
				
			||||||
    RA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ラ"
 | 
					 | 
				
			||||||
    WA:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "WA"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ワ"
 | 
					 | 
				
			||||||
    DUMMYKEY:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ""
 | 
					 | 
				
			||||||
    SYMBOLS:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "symbols"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    PUNCT:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "punct"
 | 
					 | 
				
			||||||
                unlock_view: "カタカナ"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "。"
 | 
					 | 
				
			||||||
    # Buttons for Latin characters
 | 
					 | 
				
			||||||
    RSYM1:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM1"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "@#"
 | 
					 | 
				
			||||||
    ABC:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "ABC"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴀʙᴄ"
 | 
					 | 
				
			||||||
    DEF:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "DEF"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴅᴇꜰ"
 | 
					 | 
				
			||||||
    GHI:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "GHI"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ɢʜɪ"
 | 
					 | 
				
			||||||
    JKL:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "JKL"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴊᴋʟ"
 | 
					 | 
				
			||||||
    MNO:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "MNO"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴍɴᴏ"
 | 
					 | 
				
			||||||
    PQRS:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "PQRS"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴘǫʀs"
 | 
					 | 
				
			||||||
    TUV:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "TUV"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴛᴜᴠ"
 | 
					 | 
				
			||||||
    WXYZ:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "WXYZ"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ᴡxʏᴢ"
 | 
					 | 
				
			||||||
    RSYM2:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM2"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "()"
 | 
					 | 
				
			||||||
    RSYM3:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM3"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "+-"
 | 
					 | 
				
			||||||
    RSYM4:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "RSYM4"
 | 
					 | 
				
			||||||
                unlock_view: "roman"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ",.?"
 | 
					 | 
				
			||||||
							
								
								
									
										106
									
								
								data/keyboards/keyboards.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										106
									
								
								data/keyboards/keyboards.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,106 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<keyboards version="0.90">
 | 
				
			||||||
 | 
					  <keyboard id="ar" name="ar"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ar"
 | 
				
			||||||
 | 
						    longname="Arabic" language="ar"/>
 | 
				
			||||||
 | 
					  <keyboard id="be" name="be"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="be"
 | 
				
			||||||
 | 
						    longname="Belarusian" language="be"/>
 | 
				
			||||||
 | 
					  <keyboard id="fa" name="fa"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="fa"
 | 
				
			||||||
 | 
						    longname="Farsi (ISIRI 2901-1994)" language="fa"/>
 | 
				
			||||||
 | 
					  <keyboard id="he" name="he"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="he"
 | 
				
			||||||
 | 
						    longname="Hebrew" language="he"/>
 | 
				
			||||||
 | 
					  <keyboard id="ja" name="ja"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ja-kana"
 | 
				
			||||||
 | 
						    longname="Japanese (Kana)" language="ja"/>
 | 
				
			||||||
 | 
					  <keyboard id="kk" name="kk"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="kk"
 | 
				
			||||||
 | 
						    longname="Kazakh" language="kk"/>
 | 
				
			||||||
 | 
					  <keyboard id="ks" name="ks"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ks"
 | 
				
			||||||
 | 
						    longname="Kashmiri" language="ks"/>
 | 
				
			||||||
 | 
					  <keyboard id="my" name="my"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="my"
 | 
				
			||||||
 | 
						    longname="Myanmar" language="my"/>
 | 
				
			||||||
 | 
					  <keyboard id="nb" name="nb"
 | 
				
			||||||
 | 
						    geometry="extended" symbols="nb"
 | 
				
			||||||
 | 
						    longname="Norwegian" language="nb"/>
 | 
				
			||||||
 | 
					  <keyboard id="ru" name="ru"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="us"
 | 
				
			||||||
 | 
						    longname="Russian" language="ru"/>
 | 
				
			||||||
 | 
					  <keyboard id="th" name="th"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="th"
 | 
				
			||||||
 | 
						    longname="Thai" language="th"/>
 | 
				
			||||||
 | 
					  <keyboard id="ua" name="ua"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ua"
 | 
				
			||||||
 | 
						    longname="Ukrainian" language="ua"/>
 | 
				
			||||||
 | 
					  <keyboard id="ug" name="ug"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ug"
 | 
				
			||||||
 | 
						    longname="Uyghur" language="ug"/>
 | 
				
			||||||
 | 
					  <keyboard id="us" name="us"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="us"
 | 
				
			||||||
 | 
						    longname="US" language="en"/>
 | 
				
			||||||
 | 
					  <keyboard id="zh-bopomofo" name="zh-bopomofo"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="zh-bopomofo"
 | 
				
			||||||
 | 
						    longname="Chinese (Bopomofo)" language="zh"/>
 | 
				
			||||||
 | 
					  <!-- Indic Inscript keyboards converted from m17n-lib -->
 | 
				
			||||||
 | 
					  <keyboard id="as-inscript" name="as-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="as-inscript"
 | 
				
			||||||
 | 
						    longname="Assamese (Inscript)" language="as"/>
 | 
				
			||||||
 | 
					  <keyboard id="bn-inscript" name="bn-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="bn-inscript"
 | 
				
			||||||
 | 
						    longname="Bengali (Inscript)" language="bn"/>
 | 
				
			||||||
 | 
					  <keyboard id="gu-inscript" name="gu-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="gu-inscript"
 | 
				
			||||||
 | 
						    longname="Gujarati (Inscript)" language="gu"/>
 | 
				
			||||||
 | 
					  <keyboard id="hi-inscript" name="hi-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="hi-inscript"
 | 
				
			||||||
 | 
						    longname="Hindi (Inscript)" language="hi"/>
 | 
				
			||||||
 | 
					  <keyboard id="kn-inscript" name="kn-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="kn-inscript"
 | 
				
			||||||
 | 
						    longname="Kannada (Inscript)" language="kn"/>
 | 
				
			||||||
 | 
					  <keyboard id="ks-inscript" name="ks-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ks-inscript"
 | 
				
			||||||
 | 
						    longname="Kashmiri Devanagari (Inscript)" language="ks"/>
 | 
				
			||||||
 | 
					  <keyboard id="mai-inscript" name="mai-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="mai-inscript"
 | 
				
			||||||
 | 
						    longname="Maithili (Inscript)" language="mai"/>
 | 
				
			||||||
 | 
					  <keyboard id="ml-inscript" name="ml-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ml-inscript"
 | 
				
			||||||
 | 
						    longname="Malayalam (Inscript)" language="ml-inscript"/>
 | 
				
			||||||
 | 
					  <keyboard id="mr-inscript" name="mr-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="mr-inscript"
 | 
				
			||||||
 | 
						    longname="Marathi (Inscript)" language="mr"/>
 | 
				
			||||||
 | 
					  <keyboard id="or-inscript" name="or-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="or-inscript"
 | 
				
			||||||
 | 
						    longname="Oriya (Inscript)" language="or"/>
 | 
				
			||||||
 | 
					  <keyboard id="pa-inscript" name="pa-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="pa-inscript"
 | 
				
			||||||
 | 
						    longname="Punjabi (Inscript)" language="pa"/>
 | 
				
			||||||
 | 
					  <keyboard id="sd-inscript" name="sd-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="sd-inscript"
 | 
				
			||||||
 | 
						    longname="Sindhi (Inscript)" language="sd"/>
 | 
				
			||||||
 | 
					  <keyboard id="ta-inscript" name="ta-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="ta-inscript"
 | 
				
			||||||
 | 
						    longname="Tamil (Inscript)" language="ta"/>
 | 
				
			||||||
 | 
					  <keyboard id="te-inscript" name="te-inscript"
 | 
				
			||||||
 | 
						    geometry="compact" symbols="te-inscript"
 | 
				
			||||||
 | 
						    longname="Telugu (Inscript)" language="te"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Common keyboards -->
 | 
				
			||||||
 | 
					  <keyboard id="digits" name="digits"
 | 
				
			||||||
 | 
						    geometry="digits" symbols="special/digits"
 | 
				
			||||||
 | 
						    longname="Digits" language="all"/>
 | 
				
			||||||
 | 
					  <keyboard id="number" name="number"
 | 
				
			||||||
 | 
						    geometry="number-keypad" symbols="special/number"
 | 
				
			||||||
 | 
						    longname="Numeric keypad" language="all"/>
 | 
				
			||||||
 | 
					  <keyboard id="phone" name="phone"
 | 
				
			||||||
 | 
						    geometry="phone-keypad" symbols="special/phone"
 | 
				
			||||||
 | 
						    longname="Phone keypad" language="all"/>
 | 
				
			||||||
 | 
					  <keyboard id="url" name="url"
 | 
				
			||||||
 | 
						    geometry="url" symbols="special/url"
 | 
				
			||||||
 | 
						    longname="Uniform Resource Locator" language="all"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</keyboards>
 | 
				
			||||||
@ -1,104 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 64, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p å"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ø æ"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P Å"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ø Æ"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' : ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
					 | 
				
			||||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: altline
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    U00B7:
 | 
					 | 
				
			||||||
        text: "·"
 | 
					 | 
				
			||||||
    squareroot:
 | 
					 | 
				
			||||||
        text: "√"
 | 
					 | 
				
			||||||
    Greek_pi:
 | 
					 | 
				
			||||||
        text: "π"
 | 
					 | 
				
			||||||
    division:
 | 
					 | 
				
			||||||
        text: "÷"
 | 
					 | 
				
			||||||
    multiply:
 | 
					 | 
				
			||||||
        text: "×"
 | 
					 | 
				
			||||||
    paragraph:
 | 
					 | 
				
			||||||
        text: "¶"
 | 
					 | 
				
			||||||
    Greek_tau:
 | 
					 | 
				
			||||||
        text: "τ"
 | 
					 | 
				
			||||||
    copyright:
 | 
					 | 
				
			||||||
        text: "©"
 | 
					 | 
				
			||||||
    U00AE:
 | 
					 | 
				
			||||||
        text: "®"
 | 
					 | 
				
			||||||
    U00A3:
 | 
					 | 
				
			||||||
        text: "£"
 | 
					 | 
				
			||||||
    EuroSign:
 | 
					 | 
				
			||||||
        text: "€"
 | 
					 | 
				
			||||||
    U00A5:
 | 
					 | 
				
			||||||
        text: "¥"
 | 
					 | 
				
			||||||
    asciicircum:
 | 
					 | 
				
			||||||
        text: "^"
 | 
					 | 
				
			||||||
    degree:
 | 
					 | 
				
			||||||
        text: "°"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,39 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 37.46341, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    outline7: { width: 88.97561, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 120.5853, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "1 2 3 parenleft parenright"
 | 
					 | 
				
			||||||
        - "4 5 6 numbersign asterisk"
 | 
					 | 
				
			||||||
        - "7 8 9 plus minus"
 | 
					 | 
				
			||||||
        - "BackSpace 0 space Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: outline7
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    asterisk:
 | 
					 | 
				
			||||||
        text: "*"
 | 
					 | 
				
			||||||
    numbersign:
 | 
					 | 
				
			||||||
        text: "#"
 | 
					 | 
				
			||||||
    minus:
 | 
					 | 
				
			||||||
        text: "-"
 | 
					 | 
				
			||||||
    plus:
 | 
					 | 
				
			||||||
        text: "+"
 | 
					 | 
				
			||||||
    parenleft:
 | 
					 | 
				
			||||||
        text: "("
 | 
					 | 
				
			||||||
    parenright:
 | 
					 | 
				
			||||||
        text: ")"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@ -1,114 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 59, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 140, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_accents Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_upper_accents Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "q w ę r t y u i ó p"
 | 
					 | 
				
			||||||
        - "ą ś d f g h j k ł"
 | 
					 | 
				
			||||||
        - "accents_show_upper   ż ź ć v b ń m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_accents Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Q W Ę R T Y U I Ó P"
 | 
					 | 
				
			||||||
        - "Ą Ś D F G H J K Ł"
 | 
					 | 
				
			||||||
        - "accents_show_upper   Ż Ź Ć V B Ń M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_upper_accents Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    accents_show_upper:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "accents"
 | 
					 | 
				
			||||||
                looks_locked_from:
 | 
					 | 
				
			||||||
                    - "upper"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        keysym: "BackSpace"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ąę"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "upper"
 | 
					 | 
				
			||||||
                looks_locked_from:
 | 
					 | 
				
			||||||
                    - "accents"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ĄĘ"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,102 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 100, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 206, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_accents Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_upper_accents Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    accents:
 | 
					 | 
				
			||||||
        - "q w ę r t y u i ó p"
 | 
					 | 
				
			||||||
        - "ą ś d f g h j k ł"
 | 
					 | 
				
			||||||
        - "Shift_L   ż ź ć v b ń m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_accents Return"
 | 
					 | 
				
			||||||
    upper_accents:
 | 
					 | 
				
			||||||
        - "Q W Ę R T Y U I Ó P"
 | 
					 | 
				
			||||||
        - "Ą Ś D F G H J K Ł"
 | 
					 | 
				
			||||||
        - "Shift_L   Ż Ź Ć V B Ń M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_upper_accents Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        keysym: "BackSpace"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "accents"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ąę"
 | 
					 | 
				
			||||||
    show_upper_accents:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper_accents"
 | 
					 | 
				
			||||||
                unlock_view: "upper"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "ĄĘ"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,94 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 57, height: 52 }
 | 
					 | 
				
			||||||
    narrow: { width: 26, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 107, height: 52 }
 | 
					 | 
				
			||||||
    fill: { width: 159, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 42, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "й ц у к е н г ш щ з х"
 | 
					 | 
				
			||||||
        - "ф ы в а п р о л д ж э"
 | 
					 | 
				
			||||||
        - "Shift_L  я ч с м и т ь б ю  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences    ё  space  ъ  period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Й Ц У К Е Н Г Ш Щ З Х"
 | 
					 | 
				
			||||||
        - "Ф Ы В А П Р О Л Д Ж Э"
 | 
					 | 
				
			||||||
        - "Shift_L   Я Ч С М И Т Ь Б Ю  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences    Ё  space  Ъ  comma Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space_fill   period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space_fill   period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "АБВ"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    space_fill:
 | 
					 | 
				
			||||||
        outline: "fill"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    ё:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    Ё:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    ъ:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    Ъ:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
@ -1,164 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 48.39024, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 64,  height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p å"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l ö ä"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P Å"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L Ö Ä"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        .    Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "at numbersign dollar percent ampersand minus underscore plus parenleft parenright"
 | 
					 | 
				
			||||||
        - "show_symbols   comma quotedbl quoteright colon semicolon exclam question  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph"
 | 
					 | 
				
			||||||
        - "copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   backslash slash less greater equal bracketleft bracketright  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        .    Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: altline
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: altline
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: spaceline
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    asterisk:
 | 
					 | 
				
			||||||
        text: "*"
 | 
					 | 
				
			||||||
    asciitilde:
 | 
					 | 
				
			||||||
        text: "~"
 | 
					 | 
				
			||||||
    quoteleft:
 | 
					 | 
				
			||||||
        text: "`"
 | 
					 | 
				
			||||||
    bar:
 | 
					 | 
				
			||||||
        text: "|"
 | 
					 | 
				
			||||||
    U00B7:
 | 
					 | 
				
			||||||
        text: "·"
 | 
					 | 
				
			||||||
    squareroot:
 | 
					 | 
				
			||||||
        text: "√"
 | 
					 | 
				
			||||||
    Greek_pi:
 | 
					 | 
				
			||||||
        text: "π"
 | 
					 | 
				
			||||||
    division:
 | 
					 | 
				
			||||||
        text: "÷"
 | 
					 | 
				
			||||||
    multiply:
 | 
					 | 
				
			||||||
        text: "×"
 | 
					 | 
				
			||||||
    paragraph:
 | 
					 | 
				
			||||||
        text: "¶"
 | 
					 | 
				
			||||||
    Greek_tau:
 | 
					 | 
				
			||||||
        text: "τ"
 | 
					 | 
				
			||||||
    copyright:
 | 
					 | 
				
			||||||
        text: "©"
 | 
					 | 
				
			||||||
    numbersign:
 | 
					 | 
				
			||||||
        text: "#"
 | 
					 | 
				
			||||||
    U00AE:
 | 
					 | 
				
			||||||
        text: "®"
 | 
					 | 
				
			||||||
    at:
 | 
					 | 
				
			||||||
        text: "@"
 | 
					 | 
				
			||||||
    dollar:
 | 
					 | 
				
			||||||
        text: "$"
 | 
					 | 
				
			||||||
    U00A3:
 | 
					 | 
				
			||||||
        text: "£"
 | 
					 | 
				
			||||||
    percent:
 | 
					 | 
				
			||||||
        text: "%"
 | 
					 | 
				
			||||||
    EuroSign:
 | 
					 | 
				
			||||||
        text: "€"
 | 
					 | 
				
			||||||
    ampersand:
 | 
					 | 
				
			||||||
        text: "&"
 | 
					 | 
				
			||||||
    U00A5:
 | 
					 | 
				
			||||||
        text: "¥"
 | 
					 | 
				
			||||||
    minus:
 | 
					 | 
				
			||||||
        text: "-"
 | 
					 | 
				
			||||||
    asciicircum:
 | 
					 | 
				
			||||||
        text: "^"
 | 
					 | 
				
			||||||
    underscore:
 | 
					 | 
				
			||||||
        text: "_"
 | 
					 | 
				
			||||||
    degree:
 | 
					 | 
				
			||||||
        text: "°"
 | 
					 | 
				
			||||||
    plus:
 | 
					 | 
				
			||||||
        text: "+"
 | 
					 | 
				
			||||||
    equal:
 | 
					 | 
				
			||||||
        text: "="
 | 
					 | 
				
			||||||
    parenleft:
 | 
					 | 
				
			||||||
        text: "("
 | 
					 | 
				
			||||||
    parenright:
 | 
					 | 
				
			||||||
        text: ")"
 | 
					 | 
				
			||||||
    braceleft:
 | 
					 | 
				
			||||||
        text: "{"
 | 
					 | 
				
			||||||
    braceright:
 | 
					 | 
				
			||||||
        text: "}"
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
    backslash:
 | 
					 | 
				
			||||||
        text: "\\"
 | 
					 | 
				
			||||||
    slash:
 | 
					 | 
				
			||||||
        text: "/"
 | 
					 | 
				
			||||||
    quotedbl:
 | 
					 | 
				
			||||||
        text: "\""
 | 
					 | 
				
			||||||
    quoteright:
 | 
					 | 
				
			||||||
        text: "'"
 | 
					 | 
				
			||||||
    less:
 | 
					 | 
				
			||||||
        text: "<"
 | 
					 | 
				
			||||||
    greater:
 | 
					 | 
				
			||||||
        text: ">"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    semicolon:
 | 
					 | 
				
			||||||
        text: ";"
 | 
					 | 
				
			||||||
    exclam:
 | 
					 | 
				
			||||||
        text: "!"
 | 
					 | 
				
			||||||
    question:
 | 
					 | 
				
			||||||
        text: "?"
 | 
					 | 
				
			||||||
    bracketleft:
 | 
					 | 
				
			||||||
        text: "["
 | 
					 | 
				
			||||||
    bracketright:
 | 
					 | 
				
			||||||
        text: "]"
 | 
					 | 
				
			||||||
							
								
								
									
										181
									
								
								data/keyboards/symbols/ar.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								data/keyboards/symbols/ar.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,181 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ّ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">١</text>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">٢</text>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">٣</text>
 | 
				
			||||||
 | 
					    <keysym keyval="35">numbersign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">٤</text>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">٥</text>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">٦</text>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">٧</text>
 | 
				
			||||||
 | 
					    <keysym keyval="38">ampersand</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">٨</text>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">٩</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">٠</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ض</text>
 | 
				
			||||||
 | 
					    <text category="letter">َ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ص</text>
 | 
				
			||||||
 | 
					    <text category="letter">ً</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ث</text>
 | 
				
			||||||
 | 
					    <text category="letter">ُ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ق</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٌ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ف</text>
 | 
				
			||||||
 | 
					    <text category="letter">لإ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">غ</text>
 | 
				
			||||||
 | 
					    <text category="letter">إ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ع</text>
 | 
				
			||||||
 | 
					    <text category="letter">`</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ه</text>
 | 
				
			||||||
 | 
					    <text category="letter">÷</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">خ</text>
 | 
				
			||||||
 | 
					    <text category="letter">×</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ح</text>
 | 
				
			||||||
 | 
					    <text category="letter">؛</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ج</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">د</text>
 | 
				
			||||||
 | 
					    <text category="letter"><</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ش</text>
 | 
				
			||||||
 | 
					    <text category="letter">ِ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">س</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">ي</text>
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ب</text>
 | 
				
			||||||
 | 
					    <text category="letter">[</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ل</text>
 | 
				
			||||||
 | 
					    <text category="letter">لأ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ا</text>
 | 
				
			||||||
 | 
					    <text category="letter">أ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ت</text>
 | 
				
			||||||
 | 
					    <text category="letter">ـ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ن</text>
 | 
				
			||||||
 | 
					    <text category="letter">،</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">م</text>
 | 
				
			||||||
 | 
					    <text category="letter">/</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ك</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="34">quotedbl</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ئ</text>
 | 
				
			||||||
 | 
					    <text category="letter">~</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ء</text>
 | 
				
			||||||
 | 
					    <text category="letter">ْ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ؤ</text>
 | 
				
			||||||
 | 
					    <text category="letter">}</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ر</text>
 | 
				
			||||||
 | 
					    <text category="letter">{</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">لا</text>
 | 
				
			||||||
 | 
					    <text category="letter">لآ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ى</text>
 | 
				
			||||||
 | 
					    <text category="letter">آ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ة</text>
 | 
				
			||||||
 | 
					    <text category="letter">'</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">و</text>
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ز</text>
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ظ</text>
 | 
				
			||||||
 | 
					    <text category="letter">؟</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/as-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/as-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">~</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">১</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">২</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">৩</text>
 | 
				
			||||||
 | 
					    <text category="letter">্ৰ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">৪</text>
 | 
				
			||||||
 | 
					    <text category="letter">ৰ্</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">৫</text>
 | 
				
			||||||
 | 
					    <text category="letter">জ্ঞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">৬</text>
 | 
				
			||||||
 | 
					    <text category="letter">ত্ৰ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">৭</text>
 | 
				
			||||||
 | 
					    <text category="letter">ক্ষ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">৮</text>
 | 
				
			||||||
 | 
					    <text category="letter">শ্ৰ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">৯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">০</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ৃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ৌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ৈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">া</text>
 | 
				
			||||||
 | 
					    <text category="letter">আ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ী</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ূ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ব</text>
 | 
				
			||||||
 | 
					    <text category="letter">ভ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">হ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">গ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">দ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ধ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">জ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ড</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">়</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">য</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ো</text>
 | 
				
			||||||
 | 
					    <text category="letter">ও</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ে</text>
 | 
				
			||||||
 | 
					    <text category="letter">এ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">্</text>
 | 
				
			||||||
 | 
					    <text category="letter">অ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ি</text>
 | 
				
			||||||
 | 
					    <text category="letter">ই</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ু</text>
 | 
				
			||||||
 | 
					    <text category="letter">উ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">প</text>
 | 
				
			||||||
 | 
					    <text category="letter">ফ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ৰ</text>
 | 
				
			||||||
 | 
					    <text category="letter">J</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ক</text>
 | 
				
			||||||
 | 
					    <text category="letter">খ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ত</text>
 | 
				
			||||||
 | 
					    <text category="letter">থ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">চ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ছ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ঠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ৎ</text>
 | 
				
			||||||
 | 
					    <text category="letter">৺</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ং</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঁ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ম</text>
 | 
				
			||||||
 | 
					    <text category="letter">ণ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ন</text>
 | 
				
			||||||
 | 
					    <text category="letter">V</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ৱ</text>
 | 
				
			||||||
 | 
					    <text category="letter">B</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ল</text>
 | 
				
			||||||
 | 
					    <text category="letter">N</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">স</text>
 | 
				
			||||||
 | 
					    <text category="letter">শ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ষ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">য়</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/be.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/be.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Ё</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="49">1</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="50">2</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="51">3</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">№</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="52">4</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">;</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="53">5</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="54">6</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="55">7</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="56">8</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="57">9</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="48">0</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">_</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">й</text>
 | 
				
			||||||
 | 
					    <text category="letter">Й</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ц</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ц</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">у</text>
 | 
				
			||||||
 | 
					    <text category="letter">У</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">к</text>
 | 
				
			||||||
 | 
					    <text category="letter">К</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">е</text>
 | 
				
			||||||
 | 
					    <text category="letter">Е</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">н</text>
 | 
				
			||||||
 | 
					    <text category="letter">Н</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">г</text>
 | 
				
			||||||
 | 
					    <text category="letter">Г</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ш</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ш</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ў</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ў</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">з</text>
 | 
				
			||||||
 | 
					    <text category="letter">З</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">х</text>
 | 
				
			||||||
 | 
					    <text category="letter">Х</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">'</text>
 | 
				
			||||||
 | 
					    <text category="letter">'</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ф</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ф</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ы</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ы</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">в</text>
 | 
				
			||||||
 | 
					    <text category="letter">В</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">а</text>
 | 
				
			||||||
 | 
					    <text category="letter">А</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">п</text>
 | 
				
			||||||
 | 
					    <text category="letter">П</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">р</text>
 | 
				
			||||||
 | 
					    <text category="letter">Р</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">о</text>
 | 
				
			||||||
 | 
					    <text category="letter">О</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">л</text>
 | 
				
			||||||
 | 
					    <text category="letter">Л</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">д</text>
 | 
				
			||||||
 | 
					    <text category="letter">Д</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ж</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ж</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Э</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">я</text>
 | 
				
			||||||
 | 
					    <text category="letter">Я</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ч</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ч</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">с</text>
 | 
				
			||||||
 | 
					    <text category="letter">С</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">м</text>
 | 
				
			||||||
 | 
					    <text category="letter">М</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">і</text>
 | 
				
			||||||
 | 
					    <text category="letter">І</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">т</text>
 | 
				
			||||||
 | 
					    <text category="letter">Т</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ь</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ь</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">б</text>
 | 
				
			||||||
 | 
					    <text category="letter">Б</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ю</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ю</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/bn-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/bn-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">~</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">১</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">২</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">৩</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">৪</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">৫</text>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">৬</text>
 | 
				
			||||||
 | 
					    <text category="letter">^</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">৭</text>
 | 
				
			||||||
 | 
					    <text category="letter">&</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">৮</text>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">৯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">০</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ৃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ৌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ৈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">া</text>
 | 
				
			||||||
 | 
					    <text category="letter">আ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ী</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ূ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ব</text>
 | 
				
			||||||
 | 
					    <text category="letter">ভ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">হ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">গ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">দ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ধ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">জ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ড</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">়</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ো</text>
 | 
				
			||||||
 | 
					    <text category="letter">ও</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ে</text>
 | 
				
			||||||
 | 
					    <text category="letter">এ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">্</text>
 | 
				
			||||||
 | 
					    <text category="letter">অ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ি</text>
 | 
				
			||||||
 | 
					    <text category="letter">ই</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ু</text>
 | 
				
			||||||
 | 
					    <text category="letter">উ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">প</text>
 | 
				
			||||||
 | 
					    <text category="letter">ফ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">র</text>
 | 
				
			||||||
 | 
					    <text category="letter">J</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ক</text>
 | 
				
			||||||
 | 
					    <text category="letter">খ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ত</text>
 | 
				
			||||||
 | 
					    <text category="letter">থ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">চ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ছ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ঠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">z</text>
 | 
				
			||||||
 | 
					    <text category="letter">Z</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ং</text>
 | 
				
			||||||
 | 
					    <text category="letter">ঁ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ম</text>
 | 
				
			||||||
 | 
					    <text category="letter">ণ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ন</text>
 | 
				
			||||||
 | 
					    <text category="letter">V</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ব</text>
 | 
				
			||||||
 | 
					    <text category="letter">B</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ল</text>
 | 
				
			||||||
 | 
					    <text category="letter">N</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">স</text>
 | 
				
			||||||
 | 
					    <text category="letter">শ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ষ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">য়</text>
 | 
				
			||||||
 | 
					    <text category="letter">য</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/fa.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/fa.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">۱</text>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">۲</text>
 | 
				
			||||||
 | 
					    <text category="letter">٬</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">۳</text>
 | 
				
			||||||
 | 
					    <text category="letter">٫</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">۴</text>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">۵</text>
 | 
				
			||||||
 | 
					    <text category="letter">٪</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">۶</text>
 | 
				
			||||||
 | 
					    <text category="letter">×</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">۷</text>
 | 
				
			||||||
 | 
					    <text category="letter">،</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">۸</text>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">۹</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">۰</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="95">underscore</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ض</text>
 | 
				
			||||||
 | 
					    <text category="letter">ْ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ص</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٌ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ث</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ق</text>
 | 
				
			||||||
 | 
					    <text category="letter">ً</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ف</text>
 | 
				
			||||||
 | 
					    <text category="letter">ُ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">غ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ِ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ع</text>
 | 
				
			||||||
 | 
					    <text category="letter">َ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ه</text>
 | 
				
			||||||
 | 
					    <text category="letter">ّ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">خ</text>
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ح</text>
 | 
				
			||||||
 | 
					    <text category="letter">[</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ج</text>
 | 
				
			||||||
 | 
					    <text category="letter">}</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">چ</text>
 | 
				
			||||||
 | 
					    <text category="letter">{</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="92">backslash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ش</text>
 | 
				
			||||||
 | 
					    <text category="letter">ؤ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">س</text>
 | 
				
			||||||
 | 
					    <text category="letter">ئ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">ی</text>
 | 
				
			||||||
 | 
					    <text category="letter">ي</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ب</text>
 | 
				
			||||||
 | 
					    <text category="letter">إ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ل</text>
 | 
				
			||||||
 | 
					    <text category="letter">أ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ا</text>
 | 
				
			||||||
 | 
					    <text category="letter">آ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ت</text>
 | 
				
			||||||
 | 
					    <text category="letter">ة</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ن</text>
 | 
				
			||||||
 | 
					    <text category="letter">»</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">م</text>
 | 
				
			||||||
 | 
					    <text category="letter">«</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ک</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">؛</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ظ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ك</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ط</text>
 | 
				
			||||||
 | 
					    <keysym keyval="88">X</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ز</text>
 | 
				
			||||||
 | 
					    <text category="letter">ژ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ر</text>
 | 
				
			||||||
 | 
					    <keysym keyval="86">V</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ذ</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">د</text>
 | 
				
			||||||
 | 
					    <text name="N" category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">پ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ء</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">و</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <keysym keyval="46">period</keysym>
 | 
				
			||||||
 | 
					    <text category="letter"><</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <keysym keyval="47">slash</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">؟</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/gu-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/gu-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">~</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">૧</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">૨</text>
 | 
				
			||||||
 | 
					    <text category="letter">ૅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">૩</text>
 | 
				
			||||||
 | 
					    <text category="letter">ૠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">૪</text>
 | 
				
			||||||
 | 
					    <text category="letter">ૄ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">૫</text>
 | 
				
			||||||
 | 
					    <text category="letter">જ્ઞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">૬</text>
 | 
				
			||||||
 | 
					    <text category="letter">ત્ર</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">૭</text>
 | 
				
			||||||
 | 
					    <text category="letter">ક્ષ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">૮</text>
 | 
				
			||||||
 | 
					    <text category="letter">શ્ર</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">૯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">૦</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ૃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ૌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ૈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ા</text>
 | 
				
			||||||
 | 
					    <text category="letter">આ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ી</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ૂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">બ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ભ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">હ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ગ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">દ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ધ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">જ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ડ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">઼</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ૉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ો</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ે</text>
 | 
				
			||||||
 | 
					    <text category="letter">એ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">્</text>
 | 
				
			||||||
 | 
					    <text category="letter">અ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">િ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ુ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">પ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ફ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ર</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઽ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ક</text>
 | 
				
			||||||
 | 
					    <text category="letter">ખ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ત</text>
 | 
				
			||||||
 | 
					    <text category="letter">થ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ચ</text>
 | 
				
			||||||
 | 
					    <text category="letter">છ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ઠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">૱</text>
 | 
				
			||||||
 | 
					    <text category="letter">ૐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ં</text>
 | 
				
			||||||
 | 
					    <text category="letter">ઁ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">મ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ણ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ન</text>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">વ</text>
 | 
				
			||||||
 | 
					    <text category="letter">'</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">લ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ળ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">સ</text>
 | 
				
			||||||
 | 
					    <text category="letter">શ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ષ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ય</text>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/he.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/he.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="49">1</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="50">2</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="51">3</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="35">numbersign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="52">4</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="53">5</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="54">6</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="55">7</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="38">ampersand</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="56">8</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="57">9</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="48">0</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="95">underscore</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">/</text>
 | 
				
			||||||
 | 
					    <keysym keyval="81">Q</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">'</text>
 | 
				
			||||||
 | 
					    <keysym keyval="87">W</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ק</text>
 | 
				
			||||||
 | 
					    <keysym keyval="69">E</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ר</text>
 | 
				
			||||||
 | 
					    <keysym keyval="82">R</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">א</text>
 | 
				
			||||||
 | 
					    <keysym keyval="84">T</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ט</text>
 | 
				
			||||||
 | 
					    <keysym keyval="89">Y</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ו</text>
 | 
				
			||||||
 | 
					    <keysym keyval="85">U</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ן</text>
 | 
				
			||||||
 | 
					    <keysym keyval="73">I</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ם</text>
 | 
				
			||||||
 | 
					    <keysym keyval="79">O</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">פ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="80">P</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					    <text category="letter">}</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">[</text>
 | 
				
			||||||
 | 
					    <text category="letter">{</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="92">backslash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ש</text>
 | 
				
			||||||
 | 
					    <keysym keyval="65">A</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ד</text>
 | 
				
			||||||
 | 
					    <keysym keyval="83">S</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">ג</text>
 | 
				
			||||||
 | 
					    <keysym keyval="68">D</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">כ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="70">F</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ע</text>
 | 
				
			||||||
 | 
					    <keysym keyval="71">G</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">י</text>
 | 
				
			||||||
 | 
					    <keysym keyval="72">H</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ח</text>
 | 
				
			||||||
 | 
					    <keysym keyval="74">J</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ל</text>
 | 
				
			||||||
 | 
					    <keysym keyval="75">K</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ך</text>
 | 
				
			||||||
 | 
					    <keysym keyval="76">L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ף</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="34">quotedbl</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ז</text>
 | 
				
			||||||
 | 
					    <keysym keyval="90">Z</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ס</text>
 | 
				
			||||||
 | 
					    <keysym keyval="88">X</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ב</text>
 | 
				
			||||||
 | 
					    <keysym keyval="67">C</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ה</text>
 | 
				
			||||||
 | 
					    <keysym keyval="86">V</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">נ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="66">B</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">מ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="78">N</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">צ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="77">M</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">ת</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ץ</text>
 | 
				
			||||||
 | 
					    <text category="letter"><</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/hi-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/hi-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ऒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">१</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">२</text>
 | 
				
			||||||
 | 
					    <text category="letter">ॅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">३</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">४</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">५</text>
 | 
				
			||||||
 | 
					    <text category="letter">ज्ञ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">६</text>
 | 
				
			||||||
 | 
					    <text category="letter">त्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">७</text>
 | 
				
			||||||
 | 
					    <text category="letter">क्ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">८</text>
 | 
				
			||||||
 | 
					    <text category="letter">श्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">९</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">०</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ः</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ृ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ौ</text>
 | 
				
			||||||
 | 
					    <text category="letter">औ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ै</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ा</text>
 | 
				
			||||||
 | 
					    <text category="letter">आ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ी</text>
 | 
				
			||||||
 | 
					    <text category="letter">ई</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ू</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ब</text>
 | 
				
			||||||
 | 
					    <text category="letter">भ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ह</text>
 | 
				
			||||||
 | 
					    <text category="letter">ङ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ग</text>
 | 
				
			||||||
 | 
					    <text category="letter">घ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">द</text>
 | 
				
			||||||
 | 
					    <text category="letter">ध</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ज</text>
 | 
				
			||||||
 | 
					    <text category="letter">झ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ड</text>
 | 
				
			||||||
 | 
					    <text category="letter">ढ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">़</text>
 | 
				
			||||||
 | 
					    <text category="letter">ञ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ॉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ो</text>
 | 
				
			||||||
 | 
					    <text category="letter">ओ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">े</text>
 | 
				
			||||||
 | 
					    <text category="letter">ए</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">्</text>
 | 
				
			||||||
 | 
					    <text category="letter">अ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ि</text>
 | 
				
			||||||
 | 
					    <text category="letter">इ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ु</text>
 | 
				
			||||||
 | 
					    <text category="letter">उ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">प</text>
 | 
				
			||||||
 | 
					    <text category="letter">फ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">र</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">क</text>
 | 
				
			||||||
 | 
					    <text category="letter">ख</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">त</text>
 | 
				
			||||||
 | 
					    <text category="letter">थ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">च</text>
 | 
				
			||||||
 | 
					    <text category="letter">छ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ठ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ॆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ं</text>
 | 
				
			||||||
 | 
					    <text category="letter">ँ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">म</text>
 | 
				
			||||||
 | 
					    <text category="letter">ण</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">न</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऩ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">व</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ल</text>
 | 
				
			||||||
 | 
					    <text category="letter">ळ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">स</text>
 | 
				
			||||||
 | 
					    <text category="letter">श</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">य</text>
 | 
				
			||||||
 | 
					    <text category="letter">य़</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										154
									
								
								data/keyboards/symbols/ja-kana.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										154
									
								
								data/keyboards/symbols/ja-kana.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,154 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="1246">゛</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1247">゜</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="1223">ぬ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="1228">ふ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="1201">あ</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1191">ぁ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="1203">う</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1193">ぅ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="1204">え</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1194">ぇ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="1205">お</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1195">ぉ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="1236">や</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1196">ゃ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="1237">ゆ</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1197">ゅ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="1238">よ</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1198">ょ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="1244">わ</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1190">を</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="1230">ほ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="1229">へ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <keysym keyval="1216">た</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <keysym keyval="1219">て</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <keysym keyval="1202">い</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1192">ぃ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <keysym keyval="1213">す</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <keysym keyval="1206">か</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <keysym keyval="1245">ん</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <keysym keyval="1221">な</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <keysym keyval="1222">に</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <keysym keyval="1239">ら</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <keysym keyval="1214">せ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <keysym keyval="1233">む</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <keysym keyval="1243">ろ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <keysym keyval="1217">ち</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <keysym keyval="1220">と</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <keysym keyval="1212">し</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <keysym keyval="1226">は</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <keysym keyval="1207">き</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <keysym keyval="1208">く</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <keysym keyval="1231">ま</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <keysym keyval="1225">の</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <keysym keyval="1240">り</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <keysym keyval="1242">れ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="1209">け</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <keysym keyval="1218">つ</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="1199">っ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <keysym keyval="1211">さ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <keysym keyval="1215">そ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <keysym keyval="1227">ひ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <keysym keyval="1210">こ</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <keysym keyval="1232">み</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <keysym keyval="1235">も</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <keysym keyval="1224">ね</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <keysym keyval="1241">る</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <keysym keyval="1234">め</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/kk.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/kk.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">ә</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ә</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">і</text>
 | 
				
			||||||
 | 
					    <text category="letter">І</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">ӊ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ӊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">ғ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ғ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">;</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">ү</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ү</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">ұ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ұ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">қ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Қ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">ө</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ө</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">һ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Һ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">й</text>
 | 
				
			||||||
 | 
					    <text category="letter">Й</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ц</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ц</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">у</text>
 | 
				
			||||||
 | 
					    <text category="letter">У</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">к</text>
 | 
				
			||||||
 | 
					    <text category="letter">К</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">е</text>
 | 
				
			||||||
 | 
					    <text category="letter">Е</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">н</text>
 | 
				
			||||||
 | 
					    <text category="letter">Н</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">г</text>
 | 
				
			||||||
 | 
					    <text category="letter">Г</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ш</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ш</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">щ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Щ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">з</text>
 | 
				
			||||||
 | 
					    <text category="letter">З</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">х</text>
 | 
				
			||||||
 | 
					    <text category="letter">Х</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">ъ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ъ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="92">backslash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ф</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ф</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ы</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ы</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">в</text>
 | 
				
			||||||
 | 
					    <text category="letter">В</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">а</text>
 | 
				
			||||||
 | 
					    <text category="letter">А</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">п</text>
 | 
				
			||||||
 | 
					    <text category="letter">П</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">р</text>
 | 
				
			||||||
 | 
					    <text category="letter">Р</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">о</text>
 | 
				
			||||||
 | 
					    <text category="letter">О</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">л</text>
 | 
				
			||||||
 | 
					    <text category="letter">Л</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">д</text>
 | 
				
			||||||
 | 
					    <text category="letter">Д</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ж</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ж</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Э</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">я</text>
 | 
				
			||||||
 | 
					    <text category="letter">Я</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ч</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ч</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">с</text>
 | 
				
			||||||
 | 
					    <text category="letter">С</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">м</text>
 | 
				
			||||||
 | 
					    <text category="letter">М</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">и</text>
 | 
				
			||||||
 | 
					    <text category="letter">И</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">т</text>
 | 
				
			||||||
 | 
					    <text category="letter">Т</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ь</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ь</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">б</text>
 | 
				
			||||||
 | 
					    <text category="letter">Б</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ю</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ю</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">№</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/kn-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/kn-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ಒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">೧</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">೨</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">೩</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">೪</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">೫</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಜ್ಞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">೬</text>
 | 
				
			||||||
 | 
					    <text category="letter">ತ್ರ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">೭</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಕ್ಷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">೮</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಶ್ರ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">೯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">೦</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ೃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ೌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ೈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ಾ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ೀ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ೂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ಬ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಭ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ಹ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ಗ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ದ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಧ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ಜ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ಡ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ೋ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ೇ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">್</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ಿ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ು</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ಪ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಫ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ರ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ಕ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಖ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ತ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಥ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ಚ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಛ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ಠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ೆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ಂ</text>
 | 
				
			||||||
 | 
					    <text name="X" category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ಮ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಣ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ನ</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ವ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="66">B</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ಲ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಳ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ಸ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಶ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">ಾ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ಯ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ks-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ks-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ऒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">१</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">२</text>
 | 
				
			||||||
 | 
					    <text category="letter">ॅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">३</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">४</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">५</text>
 | 
				
			||||||
 | 
					    <text category="letter">ज्ञ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">६</text>
 | 
				
			||||||
 | 
					    <text category="letter">त्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">७</text>
 | 
				
			||||||
 | 
					    <text category="letter">क्ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">८</text>
 | 
				
			||||||
 | 
					    <text category="letter">श्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">९</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">०</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ः</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ृ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ौ</text>
 | 
				
			||||||
 | 
					    <text category="letter">औ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ै</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ा</text>
 | 
				
			||||||
 | 
					    <text category="letter">आ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ी</text>
 | 
				
			||||||
 | 
					    <text category="letter">ई</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ू</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ॿ</text>
 | 
				
			||||||
 | 
					    <text category="letter">भ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ह</text>
 | 
				
			||||||
 | 
					    <text category="letter">ङ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ॻ</text>
 | 
				
			||||||
 | 
					    <text category="letter">घ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">द</text>
 | 
				
			||||||
 | 
					    <text category="letter">ध</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ॼ</text>
 | 
				
			||||||
 | 
					    <text category="letter">झ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ॾ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ढ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">़</text>
 | 
				
			||||||
 | 
					    <text category="letter">ञ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ॉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ो</text>
 | 
				
			||||||
 | 
					    <text category="letter">ओ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">े</text>
 | 
				
			||||||
 | 
					    <text category="letter">ए</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">्</text>
 | 
				
			||||||
 | 
					    <text category="letter">अ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ि</text>
 | 
				
			||||||
 | 
					    <text category="letter">इ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <keysym keyval="103">g</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="71">G</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">प</text>
 | 
				
			||||||
 | 
					    <text category="letter">फ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">र</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">क</text>
 | 
				
			||||||
 | 
					    <text category="letter">ख</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">त</text>
 | 
				
			||||||
 | 
					    <text category="letter">थ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">च</text>
 | 
				
			||||||
 | 
					    <text category="letter">छ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ठ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ॆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ं</text>
 | 
				
			||||||
 | 
					    <text category="letter">ँ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">म</text>
 | 
				
			||||||
 | 
					    <text category="letter">ण</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">न</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऩ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">व</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ल</text>
 | 
				
			||||||
 | 
					    <text category="letter">ळ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">स</text>
 | 
				
			||||||
 | 
					    <text category="letter">श</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">य</text>
 | 
				
			||||||
 | 
					    <text category="letter">य़</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ks.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ks.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ً</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">۱</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">۲</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">۳</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">۴</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">۵</text>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">۶</text>
 | 
				
			||||||
 | 
					    <text category="letter">^</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">۷</text>
 | 
				
			||||||
 | 
					    <text category="letter">&</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">۸</text>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">۹</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">۰</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ّ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">=</text>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ق</text>
 | 
				
			||||||
 | 
					    <text category="letter">ﷺ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">و</text>
 | 
				
			||||||
 | 
					    <text category="letter">ؤ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ع</text>
 | 
				
			||||||
 | 
					    <text category="letter">ئ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ر</text>
 | 
				
			||||||
 | 
					    <text category="letter">ڑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ت</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٹ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ے</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ء</text>
 | 
				
			||||||
 | 
					    <text category="letter">،</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ی</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ہ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">پ</text>
 | 
				
			||||||
 | 
					    <text category="letter">إ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٰ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">[</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٰ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">؎</text>
 | 
				
			||||||
 | 
					    <text category="letter">أ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ا</text>
 | 
				
			||||||
 | 
					    <text category="letter">آ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">س</text>
 | 
				
			||||||
 | 
					    <text category="letter">ش</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">د</text>
 | 
				
			||||||
 | 
					    <text category="letter">ڈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ف</text>
 | 
				
			||||||
 | 
					    <text category="letter">ُ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">گ</text>
 | 
				
			||||||
 | 
					    <text category="letter">غ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ھ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ح</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ج</text>
 | 
				
			||||||
 | 
					    <text category="letter">ژ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ک</text>
 | 
				
			||||||
 | 
					    <text category="letter">خ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ل</text>
 | 
				
			||||||
 | 
					    <text category="letter">ؓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">؛</text>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ز</text>
 | 
				
			||||||
 | 
					    <text category="letter">ذ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ص</text>
 | 
				
			||||||
 | 
					    <text category="letter">ض</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">چ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ث</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ط</text>
 | 
				
			||||||
 | 
					    <text category="letter">ظ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ب</text>
 | 
				
			||||||
 | 
					    <text category="letter">أ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ن</text>
 | 
				
			||||||
 | 
					    <text category="letter">ں</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">م</text>
 | 
				
			||||||
 | 
					    <text category="letter">ٔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">،</text>
 | 
				
			||||||
 | 
					    <text category="letter">ِ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">۔</text>
 | 
				
			||||||
 | 
					    <text category="letter">َ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">/</text>
 | 
				
			||||||
 | 
					    <text category="letter">؟</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/mai-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/mai-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ऒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">१</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">२</text>
 | 
				
			||||||
 | 
					    <text category="letter">ॅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">३</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">४</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">५</text>
 | 
				
			||||||
 | 
					    <text category="letter">ज्ञ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">६</text>
 | 
				
			||||||
 | 
					    <text category="letter">त्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">७</text>
 | 
				
			||||||
 | 
					    <text category="letter">क्ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">८</text>
 | 
				
			||||||
 | 
					    <text category="letter">श्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">९</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">०</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ः</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ृ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ौ</text>
 | 
				
			||||||
 | 
					    <text category="letter">औ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ै</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ा</text>
 | 
				
			||||||
 | 
					    <text category="letter">आ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ी</text>
 | 
				
			||||||
 | 
					    <text category="letter">ई</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ू</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ब</text>
 | 
				
			||||||
 | 
					    <text category="letter">भ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ह</text>
 | 
				
			||||||
 | 
					    <text category="letter">ङ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ग</text>
 | 
				
			||||||
 | 
					    <text category="letter">घ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">द</text>
 | 
				
			||||||
 | 
					    <text category="letter">ध</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ज</text>
 | 
				
			||||||
 | 
					    <text category="letter">झ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ड</text>
 | 
				
			||||||
 | 
					    <text category="letter">ढ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">़</text>
 | 
				
			||||||
 | 
					    <text category="letter">ञ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ॉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ो</text>
 | 
				
			||||||
 | 
					    <text category="letter">ओ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">े</text>
 | 
				
			||||||
 | 
					    <text category="letter">ए</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">्</text>
 | 
				
			||||||
 | 
					    <text category="letter">अ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ि</text>
 | 
				
			||||||
 | 
					    <text category="letter">इ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ु</text>
 | 
				
			||||||
 | 
					    <text category="letter">उ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">प</text>
 | 
				
			||||||
 | 
					    <text category="letter">फ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">र</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">क</text>
 | 
				
			||||||
 | 
					    <text category="letter">ख</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">त</text>
 | 
				
			||||||
 | 
					    <text category="letter">थ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">च</text>
 | 
				
			||||||
 | 
					    <text category="letter">छ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ठ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ॆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ं</text>
 | 
				
			||||||
 | 
					    <text category="letter">ँ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">म</text>
 | 
				
			||||||
 | 
					    <text category="letter">ण</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">न</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऩ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">व</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ल</text>
 | 
				
			||||||
 | 
					    <text category="letter">ळ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">स</text>
 | 
				
			||||||
 | 
					    <text category="letter">श</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">य</text>
 | 
				
			||||||
 | 
					    <text category="letter">य़</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ml-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ml-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ഒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">൧</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">൨</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">൩</text>
 | 
				
			||||||
 | 
					    <text category="letter">്ര</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">൪</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">൫</text>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">൬</text>
 | 
				
			||||||
 | 
					    <text category="letter">^</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">൭</text>
 | 
				
			||||||
 | 
					    <text category="letter">ക്ഷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">൮</text>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">൯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">൦</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ൃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ൌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ൈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ാ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ആ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ീ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ൂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ബ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഭ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ഹ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ങ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ഗ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ദ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ധ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ജ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ഡ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					    <text category="letter">ഞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ോ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">േ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">്</text>
 | 
				
			||||||
 | 
					    <text category="letter">അ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ി</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ു</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">പ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഫ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ര</text>
 | 
				
			||||||
 | 
					    <text category="letter">റ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ക</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഖ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ത</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഥ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ച</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഛ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ഠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">െ</text>
 | 
				
			||||||
 | 
					    <text category="letter">എ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ം</text>
 | 
				
			||||||
 | 
					    <text category="letter">X</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">മ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ണ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ന</text>
 | 
				
			||||||
 | 
					    <text category="letter">V</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">വ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ല</text>
 | 
				
			||||||
 | 
					    <text category="letter">ള</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">സ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ശ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ഷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">യ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/mr-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/mr-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ऒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">१</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">२</text>
 | 
				
			||||||
 | 
					    <text category="letter">ॅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">३</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">४</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">५</text>
 | 
				
			||||||
 | 
					    <text category="letter">ज्ञ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">६</text>
 | 
				
			||||||
 | 
					    <text category="letter">त्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">७</text>
 | 
				
			||||||
 | 
					    <text category="letter">क्ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">८</text>
 | 
				
			||||||
 | 
					    <text category="letter">श्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">९</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">०</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ः</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ृ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ौ</text>
 | 
				
			||||||
 | 
					    <text category="letter">औ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ै</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ा</text>
 | 
				
			||||||
 | 
					    <text category="letter">आ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ी</text>
 | 
				
			||||||
 | 
					    <text category="letter">ई</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ू</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ब</text>
 | 
				
			||||||
 | 
					    <text category="letter">भ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ह</text>
 | 
				
			||||||
 | 
					    <text category="letter">ङ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ग</text>
 | 
				
			||||||
 | 
					    <text category="letter">घ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">द</text>
 | 
				
			||||||
 | 
					    <text category="letter">ध</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ज</text>
 | 
				
			||||||
 | 
					    <text category="letter">झ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ड</text>
 | 
				
			||||||
 | 
					    <text category="letter">ढ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">़</text>
 | 
				
			||||||
 | 
					    <text category="letter">ञ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ॉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ो</text>
 | 
				
			||||||
 | 
					    <text category="letter">ओ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">े</text>
 | 
				
			||||||
 | 
					    <text category="letter">ए</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">्</text>
 | 
				
			||||||
 | 
					    <text category="letter">अ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ि</text>
 | 
				
			||||||
 | 
					    <text category="letter">इ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ु</text>
 | 
				
			||||||
 | 
					    <text category="letter">उ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">प</text>
 | 
				
			||||||
 | 
					    <text category="letter">फ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">र</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">क</text>
 | 
				
			||||||
 | 
					    <text category="letter">ख</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">त</text>
 | 
				
			||||||
 | 
					    <text category="letter">थ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">च</text>
 | 
				
			||||||
 | 
					    <text category="letter">छ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ठ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ॆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ं</text>
 | 
				
			||||||
 | 
					    <text category="letter">ँ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">म</text>
 | 
				
			||||||
 | 
					    <text category="letter">ण</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">न</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऩ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">व</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ल</text>
 | 
				
			||||||
 | 
					    <text category="letter">ळ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">स</text>
 | 
				
			||||||
 | 
					    <text category="letter">श</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">य</text>
 | 
				
			||||||
 | 
					    <text category="letter">य़</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/my.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/my.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">၁</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">၂</text>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">၃</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">၄</text>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">၅</text>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">၆</text>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">၇</text>
 | 
				
			||||||
 | 
					    <text category="letter">ရ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">၈</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဂ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">၉</text>
 | 
				
			||||||
 | 
					    <keysym keyval="40">parenleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">၀</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="95">underscore</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ဆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">၍</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">တ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="87">W</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">န</text>
 | 
				
			||||||
 | 
					    <keysym keyval="69">E</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">မ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="82">R</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">အ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="84">T</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ပ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="89">Y</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">က</text>
 | 
				
			||||||
 | 
					    <keysym keyval="85">U</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">င</text>
 | 
				
			||||||
 | 
					    <keysym keyval="73">I</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">သ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဥ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">စ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ဟ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">ဉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဧ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">၏</text>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ေ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဗ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">္</text>
 | 
				
			||||||
 | 
					    <text category="letter">္</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">ိ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ီ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">္</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					    <text category="letter">္</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">့</text>
 | 
				
			||||||
 | 
					    <text category="letter">ံ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">္</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဲ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ု</text>
 | 
				
			||||||
 | 
					    <keysym keyval="75">K</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ူ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="76">L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">း</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ဓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ဖ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ထ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဌ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ခ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">လ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ဘ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="66">B</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ည</text>
 | 
				
			||||||
 | 
					    <keysym keyval="78">N</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ာ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="77">M</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">ယ</text>
 | 
				
			||||||
 | 
					    <text category="letter">၍</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ဈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ဤ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">။</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										206
									
								
								data/keyboards/symbols/nb.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										206
									
								
								data/keyboards/symbols/nb.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,206 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="q">q</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Q">Q</symbol>
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					    <symbol label="~">asciitilde</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="w">w</symbol>
 | 
				
			||||||
 | 
					    <symbol label="W">W</symbol>
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					    <symbol label="`">quoteleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="e">e</symbol>
 | 
				
			||||||
 | 
					    <symbol label="E">E</symbol>
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					    <symbol label="|">bar</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD04">
 | 
				
			||||||
 | 
					    <symbol label="r">r</symbol>
 | 
				
			||||||
 | 
					    <symbol label="R">R</symbol>
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					    <symbol label="·">U00B7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD05">
 | 
				
			||||||
 | 
					    <symbol label="t">t</symbol>
 | 
				
			||||||
 | 
					    <symbol label="T">T</symbol>
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					    <symbol label="√">squareroot</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD06">
 | 
				
			||||||
 | 
					    <symbol label="y">y</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Y">Y</symbol>
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					    <symbol label="π">Greek_pi</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD07">
 | 
				
			||||||
 | 
					    <symbol label="u">u</symbol>
 | 
				
			||||||
 | 
					    <symbol label="U">U</symbol>
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					    <symbol label="÷">division</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD08">
 | 
				
			||||||
 | 
					    <symbol label="i">i</symbol>
 | 
				
			||||||
 | 
					    <symbol label="I">I</symbol>
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					    <symbol label="×">multiply</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD09">
 | 
				
			||||||
 | 
					    <symbol label="o">o</symbol>
 | 
				
			||||||
 | 
					    <symbol label="O">O</symbol>
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					    <symbol label="¶">paragraph</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD10">
 | 
				
			||||||
 | 
					    <symbol label="p">p</symbol>
 | 
				
			||||||
 | 
					    <symbol label="P">P</symbol>
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					    <symbol label="△">U25B3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD11">
 | 
				
			||||||
 | 
					    <symbol keyval="229" label="å">aring</symbol>
 | 
				
			||||||
 | 
					    <symbol keyval="197" label="Å">Aring</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <!-- Empty labels cause keys to be hidden when the level they are defined
 | 
				
			||||||
 | 
					         for is shown. -->
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="a">a</symbol>
 | 
				
			||||||
 | 
					    <symbol label="A">A</symbol>
 | 
				
			||||||
 | 
					    <symbol label="@">at</symbol>
 | 
				
			||||||
 | 
					    <symbol label="©">copyright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="s">s</symbol>
 | 
				
			||||||
 | 
					    <symbol label="S">S</symbol>
 | 
				
			||||||
 | 
					    <symbol label="#">numbersign</symbol>
 | 
				
			||||||
 | 
					    <symbol label="®">U00AE</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="d">d</symbol>
 | 
				
			||||||
 | 
					    <symbol label="D">D</symbol>
 | 
				
			||||||
 | 
					    <symbol label="$">dollar</symbol>
 | 
				
			||||||
 | 
					    <symbol label="£">U00A3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC04">
 | 
				
			||||||
 | 
					    <symbol label="f">f</symbol>
 | 
				
			||||||
 | 
					    <symbol label="F">F</symbol>
 | 
				
			||||||
 | 
					    <symbol label="%">percent</symbol>
 | 
				
			||||||
 | 
					    <symbol label="€">EuroSign</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC05">
 | 
				
			||||||
 | 
					    <symbol label="g">g</symbol>
 | 
				
			||||||
 | 
					    <symbol label="G">G</symbol>
 | 
				
			||||||
 | 
					    <symbol label="&">ampersand</symbol>
 | 
				
			||||||
 | 
					    <symbol label="¥">U00A5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC06">
 | 
				
			||||||
 | 
					    <symbol label="h">h</symbol>
 | 
				
			||||||
 | 
					    <symbol label="H">H</symbol>
 | 
				
			||||||
 | 
					    <symbol label="-">minus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="^">asciicircum</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC07">
 | 
				
			||||||
 | 
					    <symbol label="j">j</symbol>
 | 
				
			||||||
 | 
					    <symbol label="J">J</symbol>
 | 
				
			||||||
 | 
					    <symbol label="_">underscore</symbol>
 | 
				
			||||||
 | 
					    <symbol label="°">degree</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC08">
 | 
				
			||||||
 | 
					    <symbol label="k">k</symbol>
 | 
				
			||||||
 | 
					    <symbol label="K">K</symbol>
 | 
				
			||||||
 | 
					    <symbol label="+">plus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC09">
 | 
				
			||||||
 | 
					    <symbol label="l">l</symbol>
 | 
				
			||||||
 | 
					    <symbol label="L">L</symbol>
 | 
				
			||||||
 | 
					    <symbol label="(">parenleft</symbol>
 | 
				
			||||||
 | 
					    <symbol label="{">braceleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC10">
 | 
				
			||||||
 | 
					    <symbol keyval="248" label="ø">oslash</symbol>
 | 
				
			||||||
 | 
					    <symbol keyval="216" label="Ø">Oslash</symbol>
 | 
				
			||||||
 | 
					    <symbol label=")">parenright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="}">braceright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC11">
 | 
				
			||||||
 | 
					    <symbol keyval="230" label="æ">ae</symbol>
 | 
				
			||||||
 | 
					    <symbol keyval="198" label="Æ">AE</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="LFSH">
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="=/+">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="123">Shift_L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="z">z</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Z">Z</symbol>
 | 
				
			||||||
 | 
					    <symbol label=",">comma</symbol>
 | 
				
			||||||
 | 
					    <symbol label="\">backslash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="x">x</symbol>
 | 
				
			||||||
 | 
					    <symbol label="X">X</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""">quotedbl</symbol>
 | 
				
			||||||
 | 
					    <symbol label="/">slash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="c">c</symbol>
 | 
				
			||||||
 | 
					    <symbol label="C">C</symbol>
 | 
				
			||||||
 | 
					    <symbol label="'">quoteright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="<">less</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="v">v</symbol>
 | 
				
			||||||
 | 
					    <symbol label="V">V</symbol>
 | 
				
			||||||
 | 
					    <symbol label=":">colon</symbol>
 | 
				
			||||||
 | 
					    <symbol label=">">greater</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB05">
 | 
				
			||||||
 | 
					    <symbol label="b">b</symbol>
 | 
				
			||||||
 | 
					    <symbol label="B">B</symbol>
 | 
				
			||||||
 | 
					    <symbol label=";">semicolon</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB06">
 | 
				
			||||||
 | 
					    <symbol label="n">n</symbol>
 | 
				
			||||||
 | 
					    <symbol label="N">N</symbol>
 | 
				
			||||||
 | 
					    <symbol label="!">exclam</symbol>
 | 
				
			||||||
 | 
					    <symbol label="[">bracketleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB07">
 | 
				
			||||||
 | 
					    <symbol label="m">m</symbol>
 | 
				
			||||||
 | 
					    <symbol label="M">M</symbol>
 | 
				
			||||||
 | 
					    <symbol label="?">question</symbol>
 | 
				
			||||||
 | 
					    <symbol label="]">bracketright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB08">
 | 
				
			||||||
 | 
					    <symbol label=".">period</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="ABC123">
 | 
				
			||||||
 | 
					    <symbol label="123">show-numbers</symbol>
 | 
				
			||||||
 | 
					    <symbol label="123">show-numbers</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="I149">
 | 
				
			||||||
 | 
					    <symbol icon="keyboard-mode-symbolic" tooltip="Setup">preferences</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="SPCE">
 | 
				
			||||||
 | 
					    <symbol label=" ">space</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/or-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/or-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">୰</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">୧</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">୨</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">୩</text>
 | 
				
			||||||
 | 
					    <text category="letter">୍ର</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">୪</text>
 | 
				
			||||||
 | 
					    <text category="letter">ର୍</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">୫</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଜ୍ଞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">୬</text>
 | 
				
			||||||
 | 
					    <text category="letter">ତ୍ର</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">୭</text>
 | 
				
			||||||
 | 
					    <text category="letter">କ୍ଷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">୮</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଶ୍ର</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">୯</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">୦</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ୃ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ୌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ୈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ା</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ୀ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ୂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ବ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଭ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ହ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ଗ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ଦ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଧ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ଜ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ଡ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">଼</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ୋ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">େ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">୍</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ି</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ୁ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ପ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଫ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ର</text>
 | 
				
			||||||
 | 
					    <text category="letter">J</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">କ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଖ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ତ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଥ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ଚ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଛ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ଠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">z</text>
 | 
				
			||||||
 | 
					    <text category="letter">Z</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ଂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଁ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ମ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଣ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ନ</text>
 | 
				
			||||||
 | 
					    <text category="letter">V</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ୱ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଵ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ଲ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଳ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ସ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଶ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ୟ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ଯ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/pa-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/pa-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">੧</text>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">੨</text>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">੩</text>
 | 
				
			||||||
 | 
					    <keysym keyval="35">numbersign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">੪</text>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">੫</text>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">੬</text>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">੭</text>
 | 
				
			||||||
 | 
					    <keysym keyval="38">ampersand</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">੮</text>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">੯</text>
 | 
				
			||||||
 | 
					    <keysym keyval="40">parenleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">੦</text>
 | 
				
			||||||
 | 
					    <keysym keyval="41">parenright</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">_</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">=</text>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ੌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ੈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ਾ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ੀ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ੂ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ਬ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਭ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ਹ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ਗ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ਦ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਧ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ਜ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ਡ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">਼</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ੋ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ੇ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">੍</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ਿ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ੁ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ਪ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਫ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ਰ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ੜ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ਕ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਖ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ਤ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਥ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ਚ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਛ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ਠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ੰ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ੱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ਜ਼</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਫ਼</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ਮ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਣ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ਨ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਂ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ਵ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ਲ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਲ਼</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ਸ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ਸ਼</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ੳ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">ੲ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ਯ</text>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ru.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ru.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Ё</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="49">1</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="50">2</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="51">3</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">№</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="52">4</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">;</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="53">5</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="54">6</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="55">7</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="56">8</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="57">9</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="48">0</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">_</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">й</text>
 | 
				
			||||||
 | 
					    <text category="letter">Й</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ц</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ц</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">у</text>
 | 
				
			||||||
 | 
					    <text category="letter">У</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">к</text>
 | 
				
			||||||
 | 
					    <text category="letter">К</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">е</text>
 | 
				
			||||||
 | 
					    <text category="letter">Е</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">н</text>
 | 
				
			||||||
 | 
					    <text category="letter">Н</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">г</text>
 | 
				
			||||||
 | 
					    <text category="letter">Г</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ш</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ш</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">щ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Щ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">з</text>
 | 
				
			||||||
 | 
					    <text category="letter">З</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">х</text>
 | 
				
			||||||
 | 
					    <text category="letter">Х</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">ъ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ъ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ф</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ф</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ы</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ы</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">в</text>
 | 
				
			||||||
 | 
					    <text category="letter">В</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">а</text>
 | 
				
			||||||
 | 
					    <text category="letter">А</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">п</text>
 | 
				
			||||||
 | 
					    <text category="letter">П</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">р</text>
 | 
				
			||||||
 | 
					    <text category="letter">Р</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">о</text>
 | 
				
			||||||
 | 
					    <text category="letter">О</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">л</text>
 | 
				
			||||||
 | 
					    <text category="letter">Л</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">д</text>
 | 
				
			||||||
 | 
					    <text category="letter">Д</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ж</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ж</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Э</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">я</text>
 | 
				
			||||||
 | 
					    <text category="letter">Я</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ч</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ч</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">с</text>
 | 
				
			||||||
 | 
					    <text category="letter">С</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">м</text>
 | 
				
			||||||
 | 
					    <text category="letter">М</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">и</text>
 | 
				
			||||||
 | 
					    <text category="letter">И</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">т</text>
 | 
				
			||||||
 | 
					    <text category="letter">Т</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ь</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ь</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">б</text>
 | 
				
			||||||
 | 
					    <text category="letter">Б</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ю</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ю</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/sd-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/sd-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ऒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">१</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऍ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">२</text>
 | 
				
			||||||
 | 
					    <text category="letter">ॅ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">३</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">४</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">५</text>
 | 
				
			||||||
 | 
					    <text category="letter">ज्ञ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">६</text>
 | 
				
			||||||
 | 
					    <text category="letter">त्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">७</text>
 | 
				
			||||||
 | 
					    <text category="letter">क्ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">८</text>
 | 
				
			||||||
 | 
					    <text category="letter">श्र</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">९</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">०</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ः</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ृ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ौ</text>
 | 
				
			||||||
 | 
					    <text category="letter">औ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ै</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ा</text>
 | 
				
			||||||
 | 
					    <text category="letter">आ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ी</text>
 | 
				
			||||||
 | 
					    <text category="letter">ई</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ू</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ॿ</text>
 | 
				
			||||||
 | 
					    <text category="letter">भ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ह</text>
 | 
				
			||||||
 | 
					    <text category="letter">ङ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ॻ</text>
 | 
				
			||||||
 | 
					    <text category="letter">घ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">द</text>
 | 
				
			||||||
 | 
					    <text category="letter">ध</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ॼ</text>
 | 
				
			||||||
 | 
					    <text category="letter">झ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">ॾ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ढ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">़</text>
 | 
				
			||||||
 | 
					    <text category="letter">ञ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ॉ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऑ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ो</text>
 | 
				
			||||||
 | 
					    <text category="letter">ओ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">े</text>
 | 
				
			||||||
 | 
					    <text category="letter">ए</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">्</text>
 | 
				
			||||||
 | 
					    <text category="letter">अ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ि</text>
 | 
				
			||||||
 | 
					    <text category="letter">इ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ु</text>
 | 
				
			||||||
 | 
					    <text category="letter">उ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">प</text>
 | 
				
			||||||
 | 
					    <text category="letter">फ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">र</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">क</text>
 | 
				
			||||||
 | 
					    <text category="letter">ख</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">त</text>
 | 
				
			||||||
 | 
					    <text category="letter">थ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">च</text>
 | 
				
			||||||
 | 
					    <text category="letter">छ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ठ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ॆ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ं</text>
 | 
				
			||||||
 | 
					    <text category="letter">ँ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">म</text>
 | 
				
			||||||
 | 
					    <text category="letter">ण</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">न</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऩ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">व</text>
 | 
				
			||||||
 | 
					    <text category="letter">ऴ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ल</text>
 | 
				
			||||||
 | 
					    <text category="letter">ळ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">स</text>
 | 
				
			||||||
 | 
					    <text category="letter">श</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ष</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">।</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">य</text>
 | 
				
			||||||
 | 
					    <text category="letter">य़</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										39
									
								
								data/keyboards/symbols/special/digits.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								data/keyboards/symbols/special/digits.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,39 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										60
									
								
								data/keyboards/symbols/special/number.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										60
									
								
								data/keyboards/symbols/special/number.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,60 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD04">
 | 
				
			||||||
 | 
					    <symbol label=".">period</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD05">
 | 
				
			||||||
 | 
					    <symbol label=",">comma</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC04">
 | 
				
			||||||
 | 
					    <symbol label="/">slash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC05">
 | 
				
			||||||
 | 
					    <symbol label="*">asterisk</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="+">plus</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB05">
 | 
				
			||||||
 | 
					    <symbol label="-">minus</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB06">
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="SPCE">
 | 
				
			||||||
 | 
					    <symbol label=" ">space</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										60
									
								
								data/keyboards/symbols/special/phone.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										60
									
								
								data/keyboards/symbols/special/phone.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,60 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD04">
 | 
				
			||||||
 | 
					    <symbol label="(">parenleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD05">
 | 
				
			||||||
 | 
					    <symbol label=")">parenright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC04">
 | 
				
			||||||
 | 
					    <symbol label="#">numbersign</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC05">
 | 
				
			||||||
 | 
					    <symbol label="*">asterisk</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="+">plus</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB05">
 | 
				
			||||||
 | 
					    <symbol label="-">minus</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB06">
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="SPCE">
 | 
				
			||||||
 | 
					    <symbol label=" ">space</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										231
									
								
								data/keyboards/symbols/special/url.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										231
									
								
								data/keyboards/symbols/special/url.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,231 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="q">q</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Q">Q</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="w">w</symbol>
 | 
				
			||||||
 | 
					    <symbol label="W">W</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="e">e</symbol>
 | 
				
			||||||
 | 
					    <symbol label="E">E</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD04">
 | 
				
			||||||
 | 
					    <symbol label="r">r</symbol>
 | 
				
			||||||
 | 
					    <symbol label="R">R</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD05">
 | 
				
			||||||
 | 
					    <symbol label="t">t</symbol>
 | 
				
			||||||
 | 
					    <symbol label="T">T</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD06">
 | 
				
			||||||
 | 
					    <symbol label="y">y</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Y">Y</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD07">
 | 
				
			||||||
 | 
					    <symbol label="u">u</symbol>
 | 
				
			||||||
 | 
					    <symbol label="U">U</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD08">
 | 
				
			||||||
 | 
					    <symbol label="i">i</symbol>
 | 
				
			||||||
 | 
					    <symbol label="I">I</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD09">
 | 
				
			||||||
 | 
					    <symbol label="o">o</symbol>
 | 
				
			||||||
 | 
					    <symbol label="O">O</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD10">
 | 
				
			||||||
 | 
					    <symbol label="p">p</symbol>
 | 
				
			||||||
 | 
					    <symbol label="P">P</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="a">a</symbol>
 | 
				
			||||||
 | 
					    <symbol label="A">A</symbol>
 | 
				
			||||||
 | 
					    <symbol label="@">at</symbol>
 | 
				
			||||||
 | 
					    <symbol label="~">asciitilde</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="s">s</symbol>
 | 
				
			||||||
 | 
					    <symbol label="S">S</symbol>
 | 
				
			||||||
 | 
					    <symbol label="#">numbersign</symbol>
 | 
				
			||||||
 | 
					    <symbol label="®">U00AE</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="d">d</symbol>
 | 
				
			||||||
 | 
					    <symbol label="D">D</symbol>
 | 
				
			||||||
 | 
					    <symbol label="$">dollar</symbol>
 | 
				
			||||||
 | 
					    <symbol label="£">U00A3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC04">
 | 
				
			||||||
 | 
					    <symbol label="f">f</symbol>
 | 
				
			||||||
 | 
					    <symbol label="F">F</symbol>
 | 
				
			||||||
 | 
					    <symbol label="%">percent</symbol>
 | 
				
			||||||
 | 
					    <symbol label="€">EuroSign</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC05">
 | 
				
			||||||
 | 
					    <symbol label="g">g</symbol>
 | 
				
			||||||
 | 
					    <symbol label="G">G</symbol>
 | 
				
			||||||
 | 
					    <symbol label="&">ampersand</symbol>
 | 
				
			||||||
 | 
					    <symbol label="¥">U00A5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC06">
 | 
				
			||||||
 | 
					    <symbol label="h">h</symbol>
 | 
				
			||||||
 | 
					    <symbol label="H">H</symbol>
 | 
				
			||||||
 | 
					    <symbol label="-">minus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="^">asciicircum</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC07">
 | 
				
			||||||
 | 
					    <symbol label="j">j</symbol>
 | 
				
			||||||
 | 
					    <symbol label="J">J</symbol>
 | 
				
			||||||
 | 
					    <symbol label="_">underscore</symbol>
 | 
				
			||||||
 | 
					    <symbol label="°">degree</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC08">
 | 
				
			||||||
 | 
					    <symbol label="k">k</symbol>
 | 
				
			||||||
 | 
					    <symbol label="K">K</symbol>
 | 
				
			||||||
 | 
					    <symbol label="+">plus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC09">
 | 
				
			||||||
 | 
					    <symbol label="l">l</symbol>
 | 
				
			||||||
 | 
					    <symbol label="L">L</symbol>
 | 
				
			||||||
 | 
					    <symbol label="(">parenleft</symbol>
 | 
				
			||||||
 | 
					    <symbol label="{">braceleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC10">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=")">parenright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="}">braceright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="LFSH">
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="123">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="URL">Shift_L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="z">z</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Z">Z</symbol>
 | 
				
			||||||
 | 
					    <symbol label=",">comma</symbol>
 | 
				
			||||||
 | 
					    <symbol label="\">backslash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="x">x</symbol>
 | 
				
			||||||
 | 
					    <symbol label="X">X</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""">quotedbl</symbol>
 | 
				
			||||||
 | 
					    <symbol label="/">slash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="c">c</symbol>
 | 
				
			||||||
 | 
					    <symbol label="C">C</symbol>
 | 
				
			||||||
 | 
					    <symbol label="'">quoteright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="<">less</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="v">v</symbol>
 | 
				
			||||||
 | 
					    <symbol label="V">V</symbol>
 | 
				
			||||||
 | 
					    <symbol label=":">colon</symbol>
 | 
				
			||||||
 | 
					    <symbol label=">">greater</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB05">
 | 
				
			||||||
 | 
					    <symbol label="b">b</symbol>
 | 
				
			||||||
 | 
					    <symbol label="B">B</symbol>
 | 
				
			||||||
 | 
					    <symbol label=";">semicolon</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB06">
 | 
				
			||||||
 | 
					    <symbol label="n">n</symbol>
 | 
				
			||||||
 | 
					    <symbol label="N">N</symbol>
 | 
				
			||||||
 | 
					    <symbol label="!">exclam</symbol>
 | 
				
			||||||
 | 
					    <symbol label="[">bracketleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB07">
 | 
				
			||||||
 | 
					    <symbol label="m">m</symbol>
 | 
				
			||||||
 | 
					    <symbol label="M">M</symbol>
 | 
				
			||||||
 | 
					    <symbol label="?">question</symbol>
 | 
				
			||||||
 | 
					    <symbol label="]">bracketright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB08">
 | 
				
			||||||
 | 
					    <symbol label=".">period</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="ABC123">
 | 
				
			||||||
 | 
					    <symbol label="URL">show-url</symbol>
 | 
				
			||||||
 | 
					    <symbol label="URL">show-url</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="I149">
 | 
				
			||||||
 | 
					    <symbol label="☺" icon="keyboard-mode-symbolic" tooltip="Setup">preferences</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="SPCE">
 | 
				
			||||||
 | 
					    <symbol label=" ">space</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<!-- Extra URL mode buttons -->
 | 
				
			||||||
 | 
					  <key name="AE01">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label="https">https</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AE02">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label="://">://</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AE03">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label="www.">www.</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AE04">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label=".com">.com</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AE05">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label=".org">.org</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AE06">
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <text label=".net">.net</text>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ta-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ta-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ஒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">1</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">2</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">3</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">4</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">5</text>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">6</text>
 | 
				
			||||||
 | 
					    <text category="letter">^</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">7</text>
 | 
				
			||||||
 | 
					    <text category="letter">க்ஷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">8</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஷ்ர</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">9</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">0</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஃ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">=</text>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ௌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ை</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ா</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ீ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ூ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">y</text>
 | 
				
			||||||
 | 
					    <text category="letter">Y</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ஹ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ங</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">i</text>
 | 
				
			||||||
 | 
					    <text category="letter">I</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">o</text>
 | 
				
			||||||
 | 
					    <text category="letter">O</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ஜ</text>
 | 
				
			||||||
 | 
					    <text category="letter">P</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">[</text>
 | 
				
			||||||
 | 
					    <text category="letter">{</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">]</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ோ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ே</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">்</text>
 | 
				
			||||||
 | 
					    <text category="letter">அ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ி</text>
 | 
				
			||||||
 | 
					    <text category="letter">இ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ு</text>
 | 
				
			||||||
 | 
					    <text category="letter">உ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ப</text>
 | 
				
			||||||
 | 
					    <text category="letter">H</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ர</text>
 | 
				
			||||||
 | 
					    <text category="letter">ற</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">க</text>
 | 
				
			||||||
 | 
					    <text category="letter">K</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">த</text>
 | 
				
			||||||
 | 
					    <text category="letter">L</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ச</text>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ெ</text>
 | 
				
			||||||
 | 
					    <text category="letter">எ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">x</text>
 | 
				
			||||||
 | 
					    <text category="letter">X</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ம</text>
 | 
				
			||||||
 | 
					    <text category="letter">ண</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ந</text>
 | 
				
			||||||
 | 
					    <text category="letter">ன</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">வ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ழ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ல</text>
 | 
				
			||||||
 | 
					    <text category="letter">ள</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ஸ</text>
 | 
				
			||||||
 | 
					    <text category="letter">M</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ஷ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ய</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										194
									
								
								data/keyboards/symbols/te-inscript.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										194
									
								
								data/keyboards/symbols/te-inscript.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,194 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ఒ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">౧</text>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">౨</text>
 | 
				
			||||||
 | 
					    <text category="letter">@</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">౩</text>
 | 
				
			||||||
 | 
					    <text category="letter">#</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">౪</text>
 | 
				
			||||||
 | 
					    <text category="letter">$</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">౫</text>
 | 
				
			||||||
 | 
					    <text category="letter">జ్ఞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">౬</text>
 | 
				
			||||||
 | 
					    <text category="letter">త్ర</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">౭</text>
 | 
				
			||||||
 | 
					    <text category="letter">క్ష</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">౮</text>
 | 
				
			||||||
 | 
					    <text category="letter">శ్ర</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">౯</text>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">౦</text>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">-</text>
 | 
				
			||||||
 | 
					    <text category="letter">_</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <text category="letter">ృ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ౌ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఔ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ై</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఐ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ా</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ీ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ూ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఊ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">బ</text>
 | 
				
			||||||
 | 
					    <text category="letter">భ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">హ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఙ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">గ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఘ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ద</text>
 | 
				
			||||||
 | 
					    <text category="letter">ధ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">జ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఝ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">డ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఢ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					    <text category="letter">ఞ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">ౄ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ౠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ో</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఓ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ే</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఏ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">్</text>
 | 
				
			||||||
 | 
					    <text category="letter">అ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ి</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ు</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఉ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ప</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఫ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ర</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఱ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">క</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఖ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">త</text>
 | 
				
			||||||
 | 
					    <text category="letter">థ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">చ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఛ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">ఠ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ె</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఎ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ం</text>
 | 
				
			||||||
 | 
					    <text category="letter">ఁ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">మ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ణ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">న</text>
 | 
				
			||||||
 | 
					    <text category="letter">ః</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">వ</text>
 | 
				
			||||||
 | 
					    <text category="letter"></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ల</text>
 | 
				
			||||||
 | 
					    <text category="letter">ళ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">స</text>
 | 
				
			||||||
 | 
					    <text category="letter">శ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					    <text category="letter">ష</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">></text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">య</text>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										192
									
								
								data/keyboards/symbols/th.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										192
									
								
								data/keyboards/symbols/th.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,192 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="95">underscore</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="3557">Thai_lakkhangyao</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="47">slash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3569">Thai_leknung</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3570">Thai_leksong</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="3520">Thai_phosamphao</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3571">Thai_leksam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="3510">Thai_thothung</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3572">Thai_leksi</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="3544">Thai_sarau</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3545">Thai_sarauu</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="3542">Thai_saraue</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3551">Thai_baht</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="3492">Thai_khokhwai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3573">Thai_lekha</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="3509">Thai_totao</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3574">Thai_lekhok</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="3496">Thai_chochan</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3575">Thai_lekchet</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="3490">Thai_khokhai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3576">Thai_lekpaet</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="3498">Thai_chochang</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3577">Thai_lekkao</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <keysym keyval="3558">Thai_maiyamok</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3568">Thai_leksun</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <keysym keyval="3556">Thai_saraaimaimalai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="34">quotedbl</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <keysym keyval="3539">Thai_saraam</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3502">Thai_dochada</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <keysym keyval="3518">Thai_phophan</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3505">Thai_thonangmontho</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <keysym keyval="3536">Thai_saraa</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3512">Thai_thothong</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <keysym keyval="3537">Thai_maihanakat</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3565">Thai_nikhahit</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <keysym keyval="3541">Thai_saraii</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3562">Thai_maitri</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <keysym keyval="3523">Thai_rorua</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3507">Thai_nonen</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <keysym keyval="3513">Thai_nonu</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3535">Thai_paiyannoi</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <keysym keyval="3522">Thai_yoyak</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3501">Thai_yoying</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <keysym keyval="3514">Thai_bobaimai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3504">Thai_thothan</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <keysym keyval="3525">Thai_loling</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="44">comma</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="3491">Thai_khokhuat</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3493">Thai_khokhon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <keysym keyval="3519">Thai_fofan</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3524">Thai_ru</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <keysym keyval="3531">Thai_hohip</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3494">Thai_khorakhang</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <keysym keyval="3489">Thai_kokai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3503">Thai_topatak</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <keysym keyval="3508">Thai_dodek</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3554">Thai_sarao</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <keysym keyval="3552">Thai_sarae</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3500">Thai_chochoe</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <keysym keyval="3561">Thai_maitho</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3559">Thai_maitaikhu</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <keysym keyval="3560">Thai_maiek</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3563">Thai_maichattawa</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <keysym keyval="3538">Thai_saraaa</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3529">Thai_sorusi</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <keysym keyval="3530">Thai_sosua</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3528">Thai_sosala</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <keysym keyval="3527">Thai_wowaen</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3499">Thai_soso</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="3495">Thai_ngongu</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="46">period</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <keysym keyval="3516">Thai_phophung</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="40">parenleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <keysym keyval="3515">Thai_popla</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="41">parenright</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <keysym keyval="3553">Thai_saraae</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3497">Thai_choching</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <keysym keyval="3533">Thai_oang</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3534">Thai_honokhuk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <keysym keyval="3540">Thai_sarai</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3546">Thai_phinthu</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <keysym keyval="3543">Thai_sarauee</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3564">Thai_thanthakhat</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <keysym keyval="3511">Thai_thothahan</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <keysym keyval="3521">Thai_moma</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3506">Thai_thophuthao</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <keysym keyval="3555">Thai_saraaimaimuan</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3532">Thai_lochula</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <keysym keyval="3517">Thai_fofa</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="3526">Thai_lu</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ua.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ua.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Ґ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="49">1</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">!</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="50">2</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">"</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="51">3</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">№</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="52">4</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">;</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="53">5</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">%</text>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="54">6</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">:</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="55">7</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">?</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="56">8</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">*</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="57">9</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">(</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="48">0</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">)</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">_</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">+</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">й</text>
 | 
				
			||||||
 | 
					    <text category="letter">Й</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ц</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ц</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">у</text>
 | 
				
			||||||
 | 
					    <text category="letter">У</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">к</text>
 | 
				
			||||||
 | 
					    <text category="letter">К</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">е</text>
 | 
				
			||||||
 | 
					    <text category="letter">Е</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">н</text>
 | 
				
			||||||
 | 
					    <text category="letter">Н</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">г</text>
 | 
				
			||||||
 | 
					    <text category="letter">Г</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ш</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ш</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">щ</text>
 | 
				
			||||||
 | 
					    <text category="letter">Щ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">з</text>
 | 
				
			||||||
 | 
					    <text category="letter">З</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <text category="letter">х</text>
 | 
				
			||||||
 | 
					    <text category="letter">Х</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <text category="letter">ї</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ї</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <text category="letter">\</text>
 | 
				
			||||||
 | 
					    <text category="letter">|</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ф</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ф</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">і</text>
 | 
				
			||||||
 | 
					    <text category="letter">І</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">в</text>
 | 
				
			||||||
 | 
					    <text category="letter">В</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">а</text>
 | 
				
			||||||
 | 
					    <text category="letter">А</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">п</text>
 | 
				
			||||||
 | 
					    <text category="letter">П</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">р</text>
 | 
				
			||||||
 | 
					    <text category="letter">Р</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">о</text>
 | 
				
			||||||
 | 
					    <text category="letter">О</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">л</text>
 | 
				
			||||||
 | 
					    <text category="letter">Л</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">д</text>
 | 
				
			||||||
 | 
					    <text category="letter">Д</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ж</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ж</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">Є</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">я</text>
 | 
				
			||||||
 | 
					    <text category="letter">Я</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ч</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ч</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">с</text>
 | 
				
			||||||
 | 
					    <text category="letter">С</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">м</text>
 | 
				
			||||||
 | 
					    <text category="letter">М</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">и</text>
 | 
				
			||||||
 | 
					    <text category="letter">И</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">т</text>
 | 
				
			||||||
 | 
					    <text category="letter">Т</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ь</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ь</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">б</text>
 | 
				
			||||||
 | 
					    <text category="letter">Б</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ю</text>
 | 
				
			||||||
 | 
					    <text category="letter">Ю</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">.</text>
 | 
				
			||||||
 | 
					    <text category="letter">,</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/ug.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/ug.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <keysym keyval="49">1</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <keysym keyval="50">2</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <keysym keyval="51">3</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="35">numbersign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <keysym keyval="52">4</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <keysym keyval="53">5</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <keysym keyval="54">6</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <keysym keyval="55">7</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="38">ampersand</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <keysym keyval="56">8</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <keysym keyval="57">9</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="40">parenleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <keysym keyval="48">0</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="41">parenright</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <keysym keyval="45">minus</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">—</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">چ</text>
 | 
				
			||||||
 | 
					    <text category="letter">چ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ۋ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۋ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ې</text>
 | 
				
			||||||
 | 
					    <text category="letter">ې</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ر</text>
 | 
				
			||||||
 | 
					    <text category="letter">ر</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ت</text>
 | 
				
			||||||
 | 
					    <text category="letter">ت</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ي</text>
 | 
				
			||||||
 | 
					    <text category="letter">ي</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ۇ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۇ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ڭ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ڭ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">و</text>
 | 
				
			||||||
 | 
					    <text category="letter">و</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">پ</text>
 | 
				
			||||||
 | 
					    <text category="letter">پ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <keysym keyval="91">bracketleft</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">«</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <keysym keyval="93">bracketright</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">»</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="92">backslash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ھ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ھ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">س</text>
 | 
				
			||||||
 | 
					    <text category="letter">س</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">د</text>
 | 
				
			||||||
 | 
					    <text category="letter">ژ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ا</text>
 | 
				
			||||||
 | 
					    <text category="letter">ف</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ە</text>
 | 
				
			||||||
 | 
					    <text category="letter">گ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ى</text>
 | 
				
			||||||
 | 
					    <text category="letter">خ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ق</text>
 | 
				
			||||||
 | 
					    <text category="letter">ج</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ك</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۆ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ل</text>
 | 
				
			||||||
 | 
					    <text category="letter">ل</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">؛</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="34">quotedbl</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ز</text>
 | 
				
			||||||
 | 
					    <text category="letter">ز</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ش</text>
 | 
				
			||||||
 | 
					    <text category="letter">ش</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">غ</text>
 | 
				
			||||||
 | 
					    <text category="letter">غ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ۈ</text>
 | 
				
			||||||
 | 
					    <text category="letter">ۈ</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ب</text>
 | 
				
			||||||
 | 
					    <text category="letter">ب</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ن</text>
 | 
				
			||||||
 | 
					    <text category="letter">ن</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">م</text>
 | 
				
			||||||
 | 
					    <text category="letter">م</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">،</text>
 | 
				
			||||||
 | 
					    <text category="letter">‹</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <keysym keyval="46">period</keysym>
 | 
				
			||||||
 | 
					    <text category="letter">›</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ئ</text>
 | 
				
			||||||
 | 
					    <text category="letter">؟</text>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										194
									
								
								data/keyboards/symbols/us.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										194
									
								
								data/keyboards/symbols/us.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,194 @@
 | 
				
			|||||||
 | 
					<?xml version='1.0' encoding='ASCII' standalone='yes'?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <key name="AD01">
 | 
				
			||||||
 | 
					    <symbol label="q">q</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Q">Q</symbol>
 | 
				
			||||||
 | 
					    <symbol label="1">1</symbol>
 | 
				
			||||||
 | 
					    <symbol label="~">asciitilde</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD02">
 | 
				
			||||||
 | 
					    <symbol label="w">w</symbol>
 | 
				
			||||||
 | 
					    <symbol label="W">W</symbol>
 | 
				
			||||||
 | 
					    <symbol label="2">2</symbol>
 | 
				
			||||||
 | 
					    <symbol label="`">quoteleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD03">
 | 
				
			||||||
 | 
					    <symbol label="e">e</symbol>
 | 
				
			||||||
 | 
					    <symbol label="E">E</symbol>
 | 
				
			||||||
 | 
					    <symbol label="3">3</symbol>
 | 
				
			||||||
 | 
					    <symbol label="|">bar</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD04">
 | 
				
			||||||
 | 
					    <symbol label="r">r</symbol>
 | 
				
			||||||
 | 
					    <symbol label="R">R</symbol>
 | 
				
			||||||
 | 
					    <symbol label="4">4</symbol>
 | 
				
			||||||
 | 
					    <symbol label="·">U00B7</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD05">
 | 
				
			||||||
 | 
					    <symbol label="t">t</symbol>
 | 
				
			||||||
 | 
					    <symbol label="T">T</symbol>
 | 
				
			||||||
 | 
					    <symbol label="5">5</symbol>
 | 
				
			||||||
 | 
					    <symbol label="√">squareroot</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD06">
 | 
				
			||||||
 | 
					    <symbol label="y">y</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Y">Y</symbol>
 | 
				
			||||||
 | 
					    <symbol label="6">6</symbol>
 | 
				
			||||||
 | 
					    <symbol label="π">Greek_pi</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD07">
 | 
				
			||||||
 | 
					    <symbol label="u">u</symbol>
 | 
				
			||||||
 | 
					    <symbol label="U">U</symbol>
 | 
				
			||||||
 | 
					    <symbol label="7">7</symbol>
 | 
				
			||||||
 | 
					    <symbol label="÷">division</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD08">
 | 
				
			||||||
 | 
					    <symbol label="i">i</symbol>
 | 
				
			||||||
 | 
					    <symbol label="I">I</symbol>
 | 
				
			||||||
 | 
					    <symbol label="8">8</symbol>
 | 
				
			||||||
 | 
					    <symbol label="×">multiply</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD09">
 | 
				
			||||||
 | 
					    <symbol label="o">o</symbol>
 | 
				
			||||||
 | 
					    <symbol label="O">O</symbol>
 | 
				
			||||||
 | 
					    <symbol label="9">9</symbol>
 | 
				
			||||||
 | 
					    <symbol label="¶">paragraph</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AD10">
 | 
				
			||||||
 | 
					    <symbol label="p">p</symbol>
 | 
				
			||||||
 | 
					    <symbol label="P">P</symbol>
 | 
				
			||||||
 | 
					    <symbol label="0">0</symbol>
 | 
				
			||||||
 | 
					    <symbol label="△">U25B3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC01">
 | 
				
			||||||
 | 
					    <symbol label="a">a</symbol>
 | 
				
			||||||
 | 
					    <symbol label="A">A</symbol>
 | 
				
			||||||
 | 
					    <symbol label="@">at</symbol>
 | 
				
			||||||
 | 
					    <symbol label="©">copyright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC02">
 | 
				
			||||||
 | 
					    <symbol label="s">s</symbol>
 | 
				
			||||||
 | 
					    <symbol label="S">S</symbol>
 | 
				
			||||||
 | 
					    <symbol label="#">numbersign</symbol>
 | 
				
			||||||
 | 
					    <symbol label="®">U00AE</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC03">
 | 
				
			||||||
 | 
					    <symbol label="d">d</symbol>
 | 
				
			||||||
 | 
					    <symbol label="D">D</symbol>
 | 
				
			||||||
 | 
					    <symbol label="$">dollar</symbol>
 | 
				
			||||||
 | 
					    <symbol label="£">U00A3</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC04">
 | 
				
			||||||
 | 
					    <symbol label="f">f</symbol>
 | 
				
			||||||
 | 
					    <symbol label="F">F</symbol>
 | 
				
			||||||
 | 
					    <symbol label="%">percent</symbol>
 | 
				
			||||||
 | 
					    <symbol label="€">EuroSign</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC05">
 | 
				
			||||||
 | 
					    <symbol label="g">g</symbol>
 | 
				
			||||||
 | 
					    <symbol label="G">G</symbol>
 | 
				
			||||||
 | 
					    <symbol label="&">ampersand</symbol>
 | 
				
			||||||
 | 
					    <symbol label="¥">U00A5</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC06">
 | 
				
			||||||
 | 
					    <symbol label="h">h</symbol>
 | 
				
			||||||
 | 
					    <symbol label="H">H</symbol>
 | 
				
			||||||
 | 
					    <symbol label="-">minus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="^">asciicircum</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC07">
 | 
				
			||||||
 | 
					    <symbol label="j">j</symbol>
 | 
				
			||||||
 | 
					    <symbol label="J">J</symbol>
 | 
				
			||||||
 | 
					    <symbol label="_">underscore</symbol>
 | 
				
			||||||
 | 
					    <symbol label="°">degree</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC08">
 | 
				
			||||||
 | 
					    <symbol label="k">k</symbol>
 | 
				
			||||||
 | 
					    <symbol label="K">K</symbol>
 | 
				
			||||||
 | 
					    <symbol label="+">plus</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC09">
 | 
				
			||||||
 | 
					    <symbol label="l">l</symbol>
 | 
				
			||||||
 | 
					    <symbol label="L">L</symbol>
 | 
				
			||||||
 | 
					    <symbol label="(">parenleft</symbol>
 | 
				
			||||||
 | 
					    <symbol label="{">braceleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AC10">
 | 
				
			||||||
 | 
					    <!-- Empty labels cause keys to be hidden when the level they are defined
 | 
				
			||||||
 | 
					         for is shown. -->
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=""></symbol>
 | 
				
			||||||
 | 
					    <symbol label=")">parenright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="}">braceright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="RTRN">
 | 
				
			||||||
 | 
					    <symbol keyval="65293" icon="key-enter">Return</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="LFSH">
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" icon="key-shift">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="=/+">Shift_L</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="65505" label="123">Shift_L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB01">
 | 
				
			||||||
 | 
					    <symbol label="z">z</symbol>
 | 
				
			||||||
 | 
					    <symbol label="Z">Z</symbol>
 | 
				
			||||||
 | 
					    <symbol label=",">comma</symbol>
 | 
				
			||||||
 | 
					    <symbol label="\">backslash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB02">
 | 
				
			||||||
 | 
					    <symbol label="x">x</symbol>
 | 
				
			||||||
 | 
					    <symbol label="X">X</symbol>
 | 
				
			||||||
 | 
					    <symbol label=""">quotedbl</symbol>
 | 
				
			||||||
 | 
					    <symbol label="/">slash</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB03">
 | 
				
			||||||
 | 
					    <symbol label="c">c</symbol>
 | 
				
			||||||
 | 
					    <symbol label="C">C</symbol>
 | 
				
			||||||
 | 
					    <symbol label="'">quoteright</symbol>
 | 
				
			||||||
 | 
					    <symbol label="<">less</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB04">
 | 
				
			||||||
 | 
					    <symbol label="v">v</symbol>
 | 
				
			||||||
 | 
					    <symbol label="V">V</symbol>
 | 
				
			||||||
 | 
					    <symbol label=":">colon</symbol>
 | 
				
			||||||
 | 
					    <symbol label=">">greater</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB05">
 | 
				
			||||||
 | 
					    <symbol label="b">b</symbol>
 | 
				
			||||||
 | 
					    <symbol label="B">B</symbol>
 | 
				
			||||||
 | 
					    <symbol label=";">semicolon</symbol>
 | 
				
			||||||
 | 
					    <symbol label="=">equal</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB06">
 | 
				
			||||||
 | 
					    <symbol label="n">n</symbol>
 | 
				
			||||||
 | 
					    <symbol label="N">N</symbol>
 | 
				
			||||||
 | 
					    <symbol label="!">exclam</symbol>
 | 
				
			||||||
 | 
					    <symbol label="[">bracketleft</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB07">
 | 
				
			||||||
 | 
					    <symbol label="m">m</symbol>
 | 
				
			||||||
 | 
					    <symbol label="M">M</symbol>
 | 
				
			||||||
 | 
					    <symbol label="?">question</symbol>
 | 
				
			||||||
 | 
					    <symbol label="]">bracketright</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="AB08">
 | 
				
			||||||
 | 
					    <symbol label=".">period</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="ABC123">
 | 
				
			||||||
 | 
					    <symbol label="123">show-numbers</symbol>
 | 
				
			||||||
 | 
					    <symbol label="123">show-numbers</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					    <symbol label="ABC">show-letters</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="I149">
 | 
				
			||||||
 | 
					    <symbol label="☺" icon="keyboard-mode-symbolic" tooltip="Setup">preferences</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="SPCE">
 | 
				
			||||||
 | 
					    <symbol label=" ">space</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key name="BKSP">
 | 
				
			||||||
 | 
					    <symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
							
								
								
									
										193
									
								
								data/keyboards/symbols/zh-bopomofo.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								data/keyboards/symbols/zh-bopomofo.xml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,193 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0"?>
 | 
				
			||||||
 | 
					<symbols version="0.90">
 | 
				
			||||||
 | 
					  <include>us</include>
 | 
				
			||||||
 | 
					  <key keycode="49" name="TLDE">
 | 
				
			||||||
 | 
					    <keysym keyval="96">quoteleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="126">asciitilde</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="10" name="AE01">
 | 
				
			||||||
 | 
					    <text category="letter">ㄅ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="33">exclam</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="11" name="AE02">
 | 
				
			||||||
 | 
					    <text category="letter">ㄉ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="64">at</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="12" name="AE03">
 | 
				
			||||||
 | 
					    <text category="letter">ˇ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="35">numbersign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="13" name="AE04">
 | 
				
			||||||
 | 
					    <text category="letter">ˋ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="36">dollar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="14" name="AE05">
 | 
				
			||||||
 | 
					    <text category="letter">ㄓ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="37">percent</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="8364">EuroSign</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="15" name="AE06">
 | 
				
			||||||
 | 
					    <text category="letter">ˊ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="94">asciicircum</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="16" name="AE07">
 | 
				
			||||||
 | 
					    <text category="letter">˙</text>
 | 
				
			||||||
 | 
					    <keysym keyval="38">ampersand</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="17" name="AE08">
 | 
				
			||||||
 | 
					    <text category="letter">ㄚ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="42">asterisk</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="18" name="AE09">
 | 
				
			||||||
 | 
					    <text category="letter">ㄞ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="40">parenleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="19" name="AE10">
 | 
				
			||||||
 | 
					    <text category="letter">ㄢ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="41">parenright</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="20" name="AE11">
 | 
				
			||||||
 | 
					    <text category="letter">ㄦ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="95">underscore</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="21" name="AE12">
 | 
				
			||||||
 | 
					    <keysym keyval="61">equal</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="43">plus</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="24" name="AD01">
 | 
				
			||||||
 | 
					    <text category="letter">ㄆ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="81">Q</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="25" name="AD02">
 | 
				
			||||||
 | 
					    <text category="letter">ㄊ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="87">W</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="26" name="AD03">
 | 
				
			||||||
 | 
					    <text category="letter">ㄍ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="69">E</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="27" name="AD04">
 | 
				
			||||||
 | 
					    <text category="letter">ㄐ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="82">R</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="28" name="AD05">
 | 
				
			||||||
 | 
					    <text category="letter">ㄔ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="84">T</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="29" name="AD06">
 | 
				
			||||||
 | 
					    <text category="letter">ㄗ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="89">Y</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="30" name="AD07">
 | 
				
			||||||
 | 
					    <text category="letter">ㄧ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="85">U</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="31" name="AD08">
 | 
				
			||||||
 | 
					    <text category="letter">ㄛ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="73">I</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="32" name="AD09">
 | 
				
			||||||
 | 
					    <text category="letter">ㄟ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="79">O</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="33" name="AD10">
 | 
				
			||||||
 | 
					    <text category="letter">ㄣ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="80">P</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="34" name="AD11">
 | 
				
			||||||
 | 
					    <keysym keyval="91">bracketleft</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="123">braceleft</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="35" name="AD12">
 | 
				
			||||||
 | 
					    <keysym keyval="93">bracketright</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="125">braceright</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="51" name="BKSL">
 | 
				
			||||||
 | 
					    <keysym keyval="92">backslash</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="124">bar</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="38" name="AC01">
 | 
				
			||||||
 | 
					    <text category="letter">ㄇ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="65">A</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="39" name="AC02">
 | 
				
			||||||
 | 
					    <text category="letter">ㄋ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="83">S</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="40" name="AC03">
 | 
				
			||||||
 | 
					    <text category="letter">ㄎ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="68">D</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="41" name="AC04">
 | 
				
			||||||
 | 
					    <text category="letter">ㄑ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="70">F</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="42" name="AC05">
 | 
				
			||||||
 | 
					    <text category="letter">ㄕ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="71">G</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="43" name="AC06">
 | 
				
			||||||
 | 
					    <text category="letter">ㄘ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="72">H</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="44" name="AC07">
 | 
				
			||||||
 | 
					    <text category="letter">ㄨ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="74">J</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="45" name="AC08">
 | 
				
			||||||
 | 
					    <text category="letter">ㄜ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="75">K</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="46" name="AC09">
 | 
				
			||||||
 | 
					    <text category="letter">ㄠ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="76">L</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="47" name="AC10">
 | 
				
			||||||
 | 
					    <text category="letter">ㄤ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="58">colon</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="48" name="AC11">
 | 
				
			||||||
 | 
					    <keysym keyval="39">quoteright</keysym>
 | 
				
			||||||
 | 
					    <keysym keyval="34">quotedbl</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="52" name="AB01">
 | 
				
			||||||
 | 
					    <text category="letter">ㄈ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="90">Z</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="53" name="AB02">
 | 
				
			||||||
 | 
					    <text category="letter">ㄌ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="88">X</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="54" name="AB03">
 | 
				
			||||||
 | 
					    <text category="letter">ㄏ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="67">C</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="55" name="AB04">
 | 
				
			||||||
 | 
					    <text category="letter">ㄒ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="86">V</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="56" name="AB05">
 | 
				
			||||||
 | 
					    <text category="letter">ㄖ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="66">B</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="57" name="AB06">
 | 
				
			||||||
 | 
					    <text category="letter">ㄙ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="78">N</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="58" name="AB07">
 | 
				
			||||||
 | 
					    <text category="letter">ㄩ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="77">M</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="59" name="AB08">
 | 
				
			||||||
 | 
					    <text category="letter">ㄝ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="60">less</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="60" name="AB09">
 | 
				
			||||||
 | 
					    <text category="letter">ㄡ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="62">greater</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					  <key keycode="61" name="AB10">
 | 
				
			||||||
 | 
					    <text category="letter">ㄥ</text>
 | 
				
			||||||
 | 
					    <keysym keyval="63">question</keysym>
 | 
				
			||||||
 | 
					  </key>
 | 
				
			||||||
 | 
					</symbols>
 | 
				
			||||||
@ -1,220 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    action:    { width: 59,    height: 46 }
 | 
					 | 
				
			||||||
    small:     { width: 50,    height: 22 }
 | 
					 | 
				
			||||||
    default:   { width: 35.33, height: 46 }
 | 
					 | 
				
			||||||
    altline:   { width: 48,    height: 46 }
 | 
					 | 
				
			||||||
    wide:      { width: 50,    height: 46 }
 | 
					 | 
				
			||||||
    spaceline: { width: 110,   height: 46 }
 | 
					 | 
				
			||||||
    special:   { width: 44,    height: 46 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n period   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Ctrl Alt Tabsmall PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "Ctrl Alt Tabsmall ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    actions:
 | 
					 | 
				
			||||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "F1  F2  F3  F4  F5  F6"
 | 
					 | 
				
			||||||
        - "F7  F8  F9  F10 F11 F12"
 | 
					 | 
				
			||||||
        - "Esc Tab Pause Insert Up Del"
 | 
					 | 
				
			||||||
        - "show_letters Menu Break Left Down Right"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    F1:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F1"
 | 
					 | 
				
			||||||
    F2:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F2"
 | 
					 | 
				
			||||||
    F3:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F3"
 | 
					 | 
				
			||||||
    F4:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F4"
 | 
					 | 
				
			||||||
    F5:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F5"
 | 
					 | 
				
			||||||
    F6:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F6"
 | 
					 | 
				
			||||||
    F7:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F7"
 | 
					 | 
				
			||||||
    F8:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F8"
 | 
					 | 
				
			||||||
    F9:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F9"
 | 
					 | 
				
			||||||
    F10:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F10"
 | 
					 | 
				
			||||||
    F11:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F11"
 | 
					 | 
				
			||||||
    F12:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F12"
 | 
					 | 
				
			||||||
    Esc:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
    Tab:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
    Tabsmall:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
        label: "Tab"
 | 
					 | 
				
			||||||
    Del:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Delete"
 | 
					 | 
				
			||||||
    Insert:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Insert"
 | 
					 | 
				
			||||||
    Menu:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Menu"
 | 
					 | 
				
			||||||
    Pause:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Pause"
 | 
					 | 
				
			||||||
    Break:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Break"
 | 
					 | 
				
			||||||
    Home:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Home"
 | 
					 | 
				
			||||||
    End:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "End"
 | 
					 | 
				
			||||||
    PgUp:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Up"
 | 
					 | 
				
			||||||
    PgDn:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Down"
 | 
					 | 
				
			||||||
    "↑":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    "↓":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    "←":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    "→":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Up:
 | 
					 | 
				
			||||||
        label: "↑"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Down:
 | 
					 | 
				
			||||||
        label: "↓"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Ctrl:
 | 
					 | 
				
			||||||
        modifier: "Control"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Ctrl"
 | 
					 | 
				
			||||||
    Alt:
 | 
					 | 
				
			||||||
        modifier: "Alt"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Alt"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    show_actions:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "actions"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: ">_"
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,223 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    action:    { width: 90,   height: 37 }
 | 
					 | 
				
			||||||
    small:     { width: 67.4, height: 22 }
 | 
					 | 
				
			||||||
    default:   { width: 54,  height: 37 }
 | 
					 | 
				
			||||||
    altline:   { width: 81,  height: 37 }
 | 
					 | 
				
			||||||
    wide:      { width: 100, height: 37 }
 | 
					 | 
				
			||||||
    spaceline: { width: 110, height: 37 }
 | 
					 | 
				
			||||||
    special:   { width: 54,  height: 37 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "a z e r t y u i o p"
 | 
					 | 
				
			||||||
        - "q s d f g h j k l m"
 | 
					 | 
				
			||||||
        - "Shift_L   w x c v b n period   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "A Z E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "Q S D F G H J K L M"
 | 
					 | 
				
			||||||
        - "Shift_L   W X C V B N ,  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # € % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ $ ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    eschars:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "à â ç é è ê î ô ù û"
 | 
					 | 
				
			||||||
        - "À Â Ç É È Ê Î Ô Ù Û"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols  æ œ ä ë ï ö ü  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        show_eschars show_actions Return"
 | 
					 | 
				
			||||||
    actions:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "F1  F2  F3  F4  F5  F6"
 | 
					 | 
				
			||||||
        - "F7  F8  F9  F10 F11 F12"
 | 
					 | 
				
			||||||
        - "Esc Tab Pause Insert Up Del"
 | 
					 | 
				
			||||||
        - "show_letters Menu Break Left Down Right"
 | 
					 | 
				
			||||||
 
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    F1:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F1"
 | 
					 | 
				
			||||||
    F2:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F2"
 | 
					 | 
				
			||||||
    F3:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F3"
 | 
					 | 
				
			||||||
    F4:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F4"
 | 
					 | 
				
			||||||
    F5:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F5"
 | 
					 | 
				
			||||||
    F6:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F6"
 | 
					 | 
				
			||||||
    F7:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F7"
 | 
					 | 
				
			||||||
    F8:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F8"
 | 
					 | 
				
			||||||
    F9:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F9"
 | 
					 | 
				
			||||||
    F10:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F10"
 | 
					 | 
				
			||||||
    F11:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F11"
 | 
					 | 
				
			||||||
    F12:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F12"
 | 
					 | 
				
			||||||
    Esc:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
    EscSmall:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
        label: "Esc"
 | 
					 | 
				
			||||||
    Tab:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
    TabSmall:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
        label: "Tab"
 | 
					 | 
				
			||||||
    Del:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Delete"
 | 
					 | 
				
			||||||
    Insert:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Insert"
 | 
					 | 
				
			||||||
    Menu:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Menu"
 | 
					 | 
				
			||||||
    Pause:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Pause"
 | 
					 | 
				
			||||||
    Break:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Break"
 | 
					 | 
				
			||||||
    Home:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Home"
 | 
					 | 
				
			||||||
    End:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "End"
 | 
					 | 
				
			||||||
    PgUp:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Up"
 | 
					 | 
				
			||||||
    PgDn:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Down"
 | 
					 | 
				
			||||||
    "↑":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    "↓":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    "←":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    "→":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Up:
 | 
					 | 
				
			||||||
        label: "↑"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Down:
 | 
					 | 
				
			||||||
        label: "↓"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Ctrl:
 | 
					 | 
				
			||||||
        modifier: "Control"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Ctrl"
 | 
					 | 
				
			||||||
    Alt:
 | 
					 | 
				
			||||||
        modifier: "Alt"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Alt"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    show_actions:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "actions"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        label: ">_"
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "abc"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    show_eschars:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "eschars"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "âÂ"
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    "\"":
 | 
					 | 
				
			||||||
        keysym: "quotedbl"
 | 
					 | 
				
			||||||
@ -1,200 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 46 }
 | 
					 | 
				
			||||||
    action:  { width: 59,    height: 46 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 46 }
 | 
					 | 
				
			||||||
    wide: { width: 59, height: 46 }
 | 
					 | 
				
			||||||
    spaceline: { width: 140, height: 46 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 46 }
 | 
					 | 
				
			||||||
    small: { width: 59, height: 22 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences      space        show_actions Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences      space        show_actions Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "* # $ / & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    actions:
 | 
					 | 
				
			||||||
        - "Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "F1  F2  F3  F4  F5  F6"
 | 
					 | 
				
			||||||
        - "F7  F8  F9  F10 F11 F12"
 | 
					 | 
				
			||||||
        - "Esc Tab Pause Insert Up Del"
 | 
					 | 
				
			||||||
        - "show_letters Menu Break Left Down Right"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "τ=\\"
 | 
					 | 
				
			||||||
    show_actions:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "actions"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ">_"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    F1:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F1"
 | 
					 | 
				
			||||||
    F2:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F2"
 | 
					 | 
				
			||||||
    F3:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F3"
 | 
					 | 
				
			||||||
    F4:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F4"
 | 
					 | 
				
			||||||
    F5:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F5"
 | 
					 | 
				
			||||||
    F6:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F6"
 | 
					 | 
				
			||||||
    F7:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F7"
 | 
					 | 
				
			||||||
    F8:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F8"
 | 
					 | 
				
			||||||
    F9:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F9"
 | 
					 | 
				
			||||||
    F10:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F10"
 | 
					 | 
				
			||||||
    F11:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F11"
 | 
					 | 
				
			||||||
    F12:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F12"
 | 
					 | 
				
			||||||
    Esc:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
    Tab:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
    Del:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Delete"
 | 
					 | 
				
			||||||
    Insert:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Insert"
 | 
					 | 
				
			||||||
    Menu:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Menu"
 | 
					 | 
				
			||||||
    Pause:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Pause"
 | 
					 | 
				
			||||||
    Break:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Break"
 | 
					 | 
				
			||||||
    Home:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Home"
 | 
					 | 
				
			||||||
    End:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "End"
 | 
					 | 
				
			||||||
    PgUp:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Up"
 | 
					 | 
				
			||||||
    PgDn:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Down"
 | 
					 | 
				
			||||||
    "↑":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    "↓":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    "←":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    "→":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Up:
 | 
					 | 
				
			||||||
        label: "↑"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Down:
 | 
					 | 
				
			||||||
        label: "↓"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Ctrl:
 | 
					 | 
				
			||||||
        modifier: "Control"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Ctrl"
 | 
					 | 
				
			||||||
    Alt:
 | 
					 | 
				
			||||||
        modifier: "Alt"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Alt"
 | 
					 | 
				
			||||||
@ -1,208 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default:   { width: 54,   height: 37 }
 | 
					 | 
				
			||||||
    action:    { width: 90,   height: 37 }
 | 
					 | 
				
			||||||
    altline:   { width: 81,   height: 37 }
 | 
					 | 
				
			||||||
    wide:      { width: 90,   height: 37 }
 | 
					 | 
				
			||||||
    spaceline: { width: 225,  height: 37 }
 | 
					 | 
				
			||||||
    special:   { width: 54,   height: 37 }
 | 
					 | 
				
			||||||
    small:     { width: 67.4, height: 22 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "q w e r t y u i o p"
 | 
					 | 
				
			||||||
        - "a s d f g h j k l"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b n m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences      space        show_actions Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "Q W E R T Y U I O P"
 | 
					 | 
				
			||||||
        - "A S D F G H J K L"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B N M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences      space        show_actions Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "* # $ / & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt ↑ ↓ ← →"
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    actions:
 | 
					 | 
				
			||||||
        - "EscSmall TabSmall Ctrl Alt PgUp PgDn Home End"
 | 
					 | 
				
			||||||
        - "F1  F2  F3  F4  F5  F6"
 | 
					 | 
				
			||||||
        - "F7  F8  F9  F10 F11 F12"
 | 
					 | 
				
			||||||
        - "Esc Tab Pause Insert Up Del"
 | 
					 | 
				
			||||||
        - "show_letters Menu Break Left Down Right"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "τ=\\"
 | 
					 | 
				
			||||||
    show_actions:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "actions"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: ">_"
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    F1:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F1"
 | 
					 | 
				
			||||||
    F2:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F2"
 | 
					 | 
				
			||||||
    F3:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F3"
 | 
					 | 
				
			||||||
    F4:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F4"
 | 
					 | 
				
			||||||
    F5:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F5"
 | 
					 | 
				
			||||||
    F6:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F6"
 | 
					 | 
				
			||||||
    F7:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F7"
 | 
					 | 
				
			||||||
    F8:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F8"
 | 
					 | 
				
			||||||
    F9:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F9"
 | 
					 | 
				
			||||||
    F10:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F10"
 | 
					 | 
				
			||||||
    F11:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F11"
 | 
					 | 
				
			||||||
    F12:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "F12"
 | 
					 | 
				
			||||||
    Esc:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
    EscSmall:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Escape"
 | 
					 | 
				
			||||||
        label: "Esc"
 | 
					 | 
				
			||||||
    Tab:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
    TabSmall:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Tab"
 | 
					 | 
				
			||||||
        label: "Tab"
 | 
					 | 
				
			||||||
    Del:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Delete"
 | 
					 | 
				
			||||||
    Insert:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Insert"
 | 
					 | 
				
			||||||
    Menu:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Menu"
 | 
					 | 
				
			||||||
    Pause:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Pause"
 | 
					 | 
				
			||||||
    Break:
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Break"
 | 
					 | 
				
			||||||
    Home:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Home"
 | 
					 | 
				
			||||||
    End:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "End"
 | 
					 | 
				
			||||||
    PgUp:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Up"
 | 
					 | 
				
			||||||
    PgDn:
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Page_Down"
 | 
					 | 
				
			||||||
    "↑":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    "↓":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    "←":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    "→":
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Up:
 | 
					 | 
				
			||||||
        label: "↑"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Up"
 | 
					 | 
				
			||||||
    Left:
 | 
					 | 
				
			||||||
        label: "←"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Left"
 | 
					 | 
				
			||||||
    Down:
 | 
					 | 
				
			||||||
        label: "↓"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Down"
 | 
					 | 
				
			||||||
    Right:
 | 
					 | 
				
			||||||
        label: "→"
 | 
					 | 
				
			||||||
        outline: "action"
 | 
					 | 
				
			||||||
        keysym: "Right"
 | 
					 | 
				
			||||||
    Ctrl:
 | 
					 | 
				
			||||||
        modifier: "Control"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Ctrl"
 | 
					 | 
				
			||||||
    Alt:
 | 
					 | 
				
			||||||
        modifier: "Alt"
 | 
					 | 
				
			||||||
        outline: "small"
 | 
					 | 
				
			||||||
        label: "Alt"
 | 
					 | 
				
			||||||
@ -1,80 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "ๅ / _ ภ ถ ุ ึ ค ต จ ข ช"
 | 
					 | 
				
			||||||
        - "ๆ ไ ำ พ ะ ั ี ร น ย บ ล"
 | 
					 | 
				
			||||||
        - "ฟ ห ก ด เ ้ ่ า ส ว ง ฃ"
 | 
					 | 
				
			||||||
        - "Shift_L   ผ ป แ อ ิ ื ท ม ใ ฝ   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "+ ๑ ๒ ๓ ๔ ู ฿ ๕ ๖ ๗ ๘ ๙"
 | 
					 | 
				
			||||||
        - "๐ \" ฎ ฑ ธ ํ ๊ ณ ฯ ญ ฐ ,"
 | 
					 | 
				
			||||||
        - "ฤ ฆ ฏ โ ฌ ็ ๋ ษ ศ ซ . ฅ"
 | 
					 | 
				
			||||||
        - "Shift_L   ( ) ฉ ฮ ฺ ์ ? ฒ ฬ ฦ  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "กขค"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,84 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 75, height: 56 }
 | 
					 | 
				
			||||||
    altline: { width: 75, height: 56 }
 | 
					 | 
				
			||||||
    wide: { width: 135, height: 56 }
 | 
					 | 
				
			||||||
    spaceline: { width: 450, height: 56 }
 | 
					 | 
				
			||||||
    spacelinesymbol: { width: 300, height: 56 }
 | 
					 | 
				
			||||||
    special: { width: 90, height: 56 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "ๅ / _ ภ ถ ุ ึ ค ต จ ข ช"
 | 
					 | 
				
			||||||
        - "ๆ ไ ำ พ ะ ั ี ร น ย บ ล"
 | 
					 | 
				
			||||||
        - "ฟ ห ก ด เ ้ ่ า ส ว ง ฃ"
 | 
					 | 
				
			||||||
        - "Shift_L   ผ ป แ อ ิ ื ท ม ใ ฝ   BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "+ ๑ ๒ ๓ ๔ ู ฿ ๕ ๖ ๗ ๘ ๙"
 | 
					 | 
				
			||||||
        - "๐ \" ฎ ฑ ธ ํ ๊ ณ ฯ ญ ฐ ,"
 | 
					 | 
				
			||||||
        - "ฤ ฆ ฏ โ ฌ ็ ๋ ษ ศ ซ . ฅ"
 | 
					 | 
				
			||||||
        - "Shift_L   ( ) ฉ ฮ ฺ ์ ? ฒ ฬ ฦ  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         spacesymbol        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         spacesymbol        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "กขค"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    spacesymbol:
 | 
					 | 
				
			||||||
        outline: "spacelinesymbol"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,94 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 32, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 57, height: 52 }
 | 
					 | 
				
			||||||
    narrow: { width: 26, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 107, height: 52 }
 | 
					 | 
				
			||||||
    fill: { width: 159, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 42, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "й ц у к е н г ш щ з х"
 | 
					 | 
				
			||||||
        - "ф і в а п р о л д ж є"
 | 
					 | 
				
			||||||
        - "Shift_L  я ч с м и т ь б ю  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences    ґ  space  ї  period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Й Ц У К Е Н Г Ш Щ З Х"
 | 
					 | 
				
			||||||
        - "Ф І В А П Р О Л Д Ж Є"
 | 
					 | 
				
			||||||
        - "Shift_L   Я Ч С М И Т Ь Б Ю  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences    Ґ  space  Ї  comma Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space_fill   period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space_fill   period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "АБВ"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    comma:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: ","
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    space_fill:
 | 
					 | 
				
			||||||
        outline: "fill"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
    ґ:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    Ґ:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    ї:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
    Ї:
 | 
					 | 
				
			||||||
        outline: "narrow"
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w f p g j l u y"
 | 
					 | 
				
			||||||
        - "a r s t d h n e i o"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b k m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W F P G J L U Y"
 | 
					 | 
				
			||||||
        - "A R S T D H N E I O"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B K M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: erase
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: show_prefs
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,78 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
    altline: { width: 81, height: 42 }
 | 
					 | 
				
			||||||
    wide: { width: 108, height: 42 }
 | 
					 | 
				
			||||||
    spaceline: { width: 216, height: 42 }
 | 
					 | 
				
			||||||
    special: { width: 54, height: 42 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "q w f p g j l u y"
 | 
					 | 
				
			||||||
        - "a r s t d h n e i o"
 | 
					 | 
				
			||||||
        - "Shift_L   z x c v b k m  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        . Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Q W F P G J L U Y"
 | 
					 | 
				
			||||||
        - "A R S T D H N E I O"
 | 
					 | 
				
			||||||
        - "Shift_L   Z X C V B K M  BackSpace"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        . Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "@ # $ % & - _ + ( )"
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        . Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° * { }"
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ / < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        . Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    ".":
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
@ -1,89 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
outlines:
 | 
					 | 
				
			||||||
    default: { width: 35.33, height: 52 }
 | 
					 | 
				
			||||||
    altline: { width: 52.67, height: 52 }
 | 
					 | 
				
			||||||
    wide: { width: 62, height: 52 }
 | 
					 | 
				
			||||||
    spaceline: { width: 142, height: 52 }
 | 
					 | 
				
			||||||
    special: { width: 44, height: 52 }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
views:
 | 
					 | 
				
			||||||
    base:
 | 
					 | 
				
			||||||
        - "Shift_L   p y f g c r l  BackSpace"
 | 
					 | 
				
			||||||
        - "a o e u i d h t n s"
 | 
					 | 
				
			||||||
        - ", q j k x b m w v z"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    upper:
 | 
					 | 
				
			||||||
        - "Shift_L   P Y F G C R L  BackSpace"
 | 
					 | 
				
			||||||
        - "A O E U I D H T N S"
 | 
					 | 
				
			||||||
        - ", Q J K X B M W V Z"
 | 
					 | 
				
			||||||
        - "show_numbers preferences         space        period Return"
 | 
					 | 
				
			||||||
    numbers:
 | 
					 | 
				
			||||||
        - "show_symbols   , \" ' colon ; ! ?  BackSpace"
 | 
					 | 
				
			||||||
        - "* # $ / & - _ + ( )"
 | 
					 | 
				
			||||||
        - "1 2 3 4 5 6 7 8 9 0"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
    symbols:
 | 
					 | 
				
			||||||
        - "show_numbers_from_symbols   \\ % < > = [ ]  BackSpace"
 | 
					 | 
				
			||||||
        - "© ® £ € ¥ ^ ° @ { }"
 | 
					 | 
				
			||||||
        - "~ ` | · √ π τ ÷ × ¶"
 | 
					 | 
				
			||||||
        - "show_letters preferences         space        period Return"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
buttons:
 | 
					 | 
				
			||||||
    Shift_L:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            locking:
 | 
					 | 
				
			||||||
                lock_view: "upper"
 | 
					 | 
				
			||||||
                unlock_view: "base"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "key-shift"
 | 
					 | 
				
			||||||
    BackSpace:
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        icon: "edit-clear-symbolic"
 | 
					 | 
				
			||||||
        action: "erase"
 | 
					 | 
				
			||||||
    preferences:
 | 
					 | 
				
			||||||
        action: "show_prefs"
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        icon: "keyboard-mode-symbolic"
 | 
					 | 
				
			||||||
    show_numbers:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_numbers_from_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "numbers"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "123"
 | 
					 | 
				
			||||||
    show_letters:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "base"
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        label: "ABC"
 | 
					 | 
				
			||||||
    show_symbols:
 | 
					 | 
				
			||||||
        action:
 | 
					 | 
				
			||||||
            set_view: "symbols"
 | 
					 | 
				
			||||||
        outline: "altline"
 | 
					 | 
				
			||||||
        label: "*/="
 | 
					 | 
				
			||||||
    period:
 | 
					 | 
				
			||||||
        outline: "special"
 | 
					 | 
				
			||||||
        text: "."
 | 
					 | 
				
			||||||
    space:
 | 
					 | 
				
			||||||
        outline: "spaceline"
 | 
					 | 
				
			||||||
        text: " "
 | 
					 | 
				
			||||||
    Return:
 | 
					 | 
				
			||||||
        outline: "wide"
 | 
					 | 
				
			||||||
        icon: "key-enter"
 | 
					 | 
				
			||||||
        keysym: "Return"
 | 
					 | 
				
			||||||
    colon:
 | 
					 | 
				
			||||||
        text: ":"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# The US QWERTY layout has fewer letters on the third row, and so has
 | 
					 | 
				
			||||||
# the shift & backspace keys placed there. In contrast, the US DVORAK
 | 
					 | 
				
			||||||
# layout has fewer letters on the first row, which makes it a good
 | 
					 | 
				
			||||||
# choice for the shift & backspace keys. That leads to what may be,
 | 
					 | 
				
			||||||
# for many people, an unexpected layout in numbers mode: the numerals
 | 
					 | 
				
			||||||
# are on the third row (not the first) so that the backspace key
 | 
					 | 
				
			||||||
# remains in a consistent location regardless of mode, without
 | 
					 | 
				
			||||||
# sacrificing key width. (Once could argue that in numbers mode, the
 | 
					 | 
				
			||||||
# numerals should be closer to the enter key.) As with any keyboard
 | 
					 | 
				
			||||||
# layout, familiarity comes with repeated use.
 | 
					 | 
				
			||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user