Compare commits

..

4 Commits

Author SHA1 Message Date
5bb23e79fe Merge branch 'rel-1.42.1' into 'squeekboard-1.42.x'
treewide: Document changes and release 1.42.1

See merge request World/Phosh/squeekboard!692
2024-10-18 14:00:16 +00:00
18d4bacde8 treewide: Document changes and release 1.42.1
Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/692>
2024-10-17 21:07:30 +02:00
5dd31c4df0 submission.rs: Restore active modifiers after changing keymaps
and clear all modifiers when changing layouts.

Fixes #373

Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/692>
2024-10-17 17:24:03 +02:00
8404da2e01 keyboard: Only generate keycodes from an allowlist
Some broken clients (most notably Chromium and its descendants)
try to interpret keymaps as if they were input sequences coming
from evdev. Workaround that by only using codes that directly
produce characters.

Fixes #244

Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/692>
2024-10-17 17:23:58 +02:00
151 changed files with 3784 additions and 3871 deletions

View File

@ -113,6 +113,19 @@ test_style:
variables:
- $PKG_ONLY == "1"
check_release:
stage: test
needs: []
only:
refs:
- main
script:
- apt-get -y install git python3
- (head -n 1 ./debian/changelog && git tag) | ./debian/check_release.py
except:
variables:
- $PKG_ONLY == "1"
pages:
stage: deploy
needs:

129
Cargo.lock generated
View File

@ -4,9 +4,9 @@ version = 3
[[package]]
name = "anstyle"
version = "1.0.10"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
[[package]]
name = "async-io"
@ -111,9 +111,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.2.1"
version = "1.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
checksum = "9540e661f81799159abee814118cc139a2004b3a3aa3ea37724a1b66530b90e0"
dependencies = [
"shlex",
]
@ -136,18 +136,18 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.5.21"
version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
version = "4.5.21"
version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b"
dependencies = [
"anstyle",
"clap_lex",
@ -155,9 +155,9 @@ dependencies = [
[[package]]
name = "clap_lex"
version = "0.7.3"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7"
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
[[package]]
name = "concurrent-queue"
@ -249,9 +249,9 @@ dependencies = [
[[package]]
name = "futures"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
dependencies = [
"futures-channel",
"futures-core",
@ -264,9 +264,9 @@ dependencies = [
[[package]]
name = "futures-channel"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
"futures-sink",
@ -274,15 +274,15 @@ dependencies = [
[[package]]
name = "futures-core"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
[[package]]
name = "futures-executor"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
dependencies = [
"futures-core",
"futures-task",
@ -291,9 +291,9 @@ dependencies = [
[[package]]
name = "futures-io"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
[[package]]
name = "futures-lite"
@ -312,32 +312,32 @@ dependencies = [
[[package]]
name = "futures-macro"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
name = "futures-sink"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
name = "futures-util"
version = "0.3.31"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
"futures-channel",
"futures-core",
@ -475,7 +475,7 @@ dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
@ -548,14 +548,14 @@ dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
name = "hashbrown"
version = "0.15.1"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "heck"
@ -577,9 +577,9 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
[[package]]
name = "indexmap"
version = "2.6.0"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
dependencies = [
"equivalent",
"hashbrown",
@ -613,9 +613,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]]
name = "libc"
version = "0.2.162"
version = "0.2.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398"
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
[[package]]
name = "linux-raw-sys"
@ -643,9 +643,9 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
[[package]]
name = "memmap2"
version = "0.9.5"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
dependencies = [
"libc",
]
@ -693,9 +693,12 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.20.2"
version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
dependencies = [
"portable-atomic",
]
[[package]]
name = "pango"
@ -730,9 +733,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
[[package]]
name = "pin-project-lite"
version = "0.2.15"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
[[package]]
name = "pin-utils"
@ -762,6 +765,12 @@ dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "portable-atomic"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
@ -817,9 +826,9 @@ dependencies = [
[[package]]
name = "proc-macro2"
version = "1.0.89"
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
dependencies = [
"unicode-ident",
]
@ -899,22 +908,22 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
[[package]]
name = "serde"
version = "1.0.215"
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.215"
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
@ -925,7 +934,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
@ -1000,9 +1009,9 @@ dependencies = [
[[package]]
name = "syn"
version = "2.0.87"
version = "2.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
dependencies = [
"proc-macro2",
"quote",
@ -1030,22 +1039,22 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "thiserror"
version = "1.0.69"
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.69"
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.87",
"syn 2.0.79",
]
[[package]]
@ -1304,9 +1313,9 @@ dependencies = [
[[package]]
name = "xkbcommon"
version = "0.8.0"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d66ca9352cbd4eecbbc40871d8a11b4ac8107cfc528a6e14d7c19c69d0e1ac9"
checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e"
dependencies = [
"libc",
"memmap2",

View File

@ -34,7 +34,7 @@ clap = { version = "4.4", features=["std"], default-features = false }
zbus = "1.9"
zvariant = "2.10"
zvariant_derive = "2.10"
xkbcommon = { version = "0.8", features = ["wayland"] }
xkbcommon = { version = "0.7", features = ["wayland"] }
[dependencies.cairo-rs]
version = "0.18"

29
NEWS
View File

@ -1,32 +1,3 @@
squeekboard 1.43.0
------------------
Released November 2024
* Fixes:
* Labels and icons on buttons will now keep their proportions when the proportions of layouts change.
* Changes:
* Layouts will now change their shape to fill empty space on the panel.
Note: For the "Wide"-shapes of layouts, this is currently limited to about 1.4 times the width.
* A setting for changing wether or not layouts will change their shape to fit the panel has been added.
* The "Shift"-modifier can be assigned to buttons now.
* "Shift"-buttons have been added to the terminal-layouts.
* New emojis from Unicode 16.0 have been added.
* Layouts have been made more consistent.
* Some placeholders on layouts have been filled.
* Contributors:
* Arnaud Ferraris
* MoonlightWave-12
* UI translations:
* Alexander Shopov (bg)
squeekboard 1.42.2
------------------
Released November 2024
* Fixes:
* Compatibility: Squeekboard should now work better with apps that do not use the text-input-protocol of Wayland and rely on specific keycodes being assigned to specific characters/functions.
* Documentation: The recommended settings for creating layouts while using Phoc in a nested session, have been updated to work correctly with the changes to the scaling-algorithm.
* Contributors:
* MoonlightWave-12
squeekboard 1.42.1
------------------
Released October 2024

View File

@ -106,14 +106,8 @@ You can change the height of the panel for the keyboard with:
$ gsettings set sm.puri.Squeekboard scale-in-horizontal-screen-orientation 1.0
$ gsettings set sm.puri.Squeekboard scale-in-vertical-screen-orientation 1.0
```
and wether or not layouts will stretch to fit the panel with:
```sh
$ gsettings set sm.puri.Squeekboard layout-shape-changes-to-fit-panel true
$ gsettings set sm.puri.Squeekboard layout-shape-changes-to-fit-panel false
```
Note: If the keyboard is open when the settings are changed, the changes will not be visible until the keyboard is opened again, or the layout is changed.
Note: If the keyboard is open when the settings for the panel-height are changed, the height of the keyboard will not change until it is opened again, or the layout is changed.
While using Phosh, you can long-click/long-tap the home-bar at the bottom, to open and close the keyboard.
To reset the settings to the default, you can use:

View File

@ -8,15 +8,11 @@ sq_view {
/* Becomes readable with a special font */
sq_view.gr_polytonic {
font-family: GFSDidotClassic, cantarell, sans-serif;
font-size: 1.75em;
}
sq_view.wide.gr_polytonic {
font-size: 1.4em;
font-size: 2em;
}
sq_view.in_mal {
font-size: 1.195em;
font-size: 1em;
}
sq_view.wide.in_mal {
@ -27,16 +23,8 @@ sq_view.ir_azb {
font-size: 1.368em;
}
sq_view.jp {
font-size: 1.425em;
}
sq_view.wide.jp {
font-size: 1.5em;
}
sq_view.wide.emoji {
font-size: 1.225em;
font-size: 1.15em;
}
sq_button {
@ -61,10 +49,6 @@ sq_button.small {
font-size: 0.5em;
}
sq_button.small-row {
font-size: 0.575em;
}
sq_view.pin sq_button {
border-radius: 0px;
margin: 1px 1px 1px 1px;

View File

@ -4,43 +4,44 @@
# Oct 2021
---
outlines:
default: { width: 34.285, height: 52 }
change-view: { width: 51.427, height: 52 }
change-view-2: { width: 82.284, height: 52 }
large: { width: 51.427, height: 52 }
placeholder: { width: 34.285, height: 52 }
spaceline: { width: 178.283, height: 52 }
special: { width: 51.427, height: 52 }
special-2: { width: 82.284, height: 52 }
default: { width: 34.3, height: 52 }
altline: { width: 52, height: 52 }
wide: { width: 104, height: 52 }
change-view: { width: 52, height: 52 }
change-view-2: { width: 104, height: 52 }
spaceline: { width: 150.99, height: 52 }
special: { width: 44, height: 52 }
large: { width: 44, height: 52 }
placeholder: { width: 34.3, height: 52 }
views:
base:
- "՝ է թ փ ձ ջ ւ և ռ չ ճ ֊ ժ"
- "ք ո ե ր տ ը ւ ի օ պ խ ծ շ"
- "-- -- ա ս դ ֆ գ հ յ կ լ --"
- "show_upper -- զ ղ ց վ բ ն մ ՛ -- BackSpace"
- "Shift_L -- զ ղ ց վ բ ն մ ՛ -- BackSpace"
- "show_numbers preferences space . Return"
upper:
- "՝ Է Թ Փ Ձ Ջ Ւ և Ռ Չ Ճ — Ժ"
- "Ք Ո Ե Ր Տ Ը Ւ Ի Օ Պ Խ Ծ Շ"
- "-- -- Ա Ս Դ Ֆ Գ Հ Յ Կ Լ ։ --"
- "show_upper -- Զ Ղ Ց Վ Բ Ն Մ ՞ -- BackSpace"
- "Shift_L -- Զ Ղ Ց Վ Բ Ն Մ ՞ -- BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "-- -- -- -- -- -- -- -- -- -- -- -- --"
- "-- -- -- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և -- -- --"
- "-- -- -- , \" ' : ; ! ? -- -- --"
- "-- -- -- -- -- -- -- -- --"
- "-- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և --"
- "-- , \" ' : ; ! ? --"
- "show_symbols 1 2 3 4 5 6 7 8 9 0 BackSpace"
- "show_letters preferences space . Return"
symbols:
- "-- -- * # \\ % < > = [ ] ² --"
- "-- -- © $ / & - _ + ( ) ³ --"
- "-- -- ® £ € ¥ ^ ° @ { } -- --"
- "* # \\ % < > = [ ]"
- "© $ / & - _ + ( )"
- "® £ € ¥ ^ ° @ { }"
- "show_numbers_from_symbols ~ ` | · √ π τ ÷ × ¶ BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -48,7 +49,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -81,7 +82,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -4,43 +4,44 @@
# Oct 2021
---
outlines:
default: { width: 51.692, height: 42 }
change-view: { width: 77.538, height: 42 }
change-view-2: { width: 103.384, height: 42 }
placeholder: { width: 51.692, height: 42 }
spaceline: { width: 361.844, height: 42 }
special: { width: 51.692, height: 42 }
special-2: { width: 77.538, height: 42 }
special-3: { width: 103.384, height: 42 }
default: { width: 51.7, height: 42 }
altline: { width: 77.5, height: 42 }
wide: { width: 103.35, height: 42 }
change-view: { width: 77.5, height: 42 }
change-view-2: { width: 103.35, height: 42 }
spaceline: { width: 340.3, height: 42 }
special: { width: 62.27, height: 42 }
large: { width: 62.27, height: 42 }
placeholder: { width: 51.7, height: 42 }
views:
base:
- "՝ է թ փ ձ ջ ւ և ռ չ ճ ֊ ժ"
- "ք ո ե ր տ ը ւ ի օ պ խ ծ շ"
- "-- -- ա ս դ ֆ գ հ յ կ լ --"
- "show_upper -- զ ղ ց վ բ ն մ ՛ -- BackSpace"
- "Shift_L -- զ ղ ց վ բ ն մ ՛ -- BackSpace"
- "show_numbers preferences space . Return"
upper:
- "՝ Է Թ Փ Ձ Ջ Ւ և Ռ Չ Ճ — Ժ"
- "Ք Ո Ե Ր Տ Ը Ւ Ի Օ Պ Խ Ծ Շ"
- "-- -- Ա Ս Դ Ֆ Գ Հ Յ Կ Լ ։ --"
- "show_upper -- Զ Ղ Ց Վ Բ Ն Մ ՞ -- BackSpace"
- "Shift_L -- Զ Ղ Ց Վ Բ Ն Մ ՞ -- BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "-- -- -- -- -- -- -- -- -- -- -- -- --"
- "-- -- -- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և -- -- --"
- "-- -- -- , \" ' : ; ! ? -- -- --"
- "-- -- -- -- -- -- -- -- --"
- "-- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և --"
- "-- , \" ' : ; ! ? --"
- "show_symbols 1 2 3 4 5 6 7 8 9 0 BackSpace"
- "show_letters preferences space . Return"
symbols:
- "-- -- * # \\ % < > = [ ] ² --"
- "-- -- © $ / & - _ + ( ) ³ --"
- "-- -- ® £ € ¥ ^ ° @ { } -- --"
- "* # \\ % < > = [ ]"
- "© $ / & - _ + ( )"
- "® £ € ¥ ^ ° @ { }"
- "show_numbers_from_symbols ~ ` | · √ π τ ÷ × ¶ BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -48,7 +49,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -75,11 +76,13 @@ buttons:
set_view: "symbols"
outline: "change-view"
label: "*/="
.:
outline: "large"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -4,43 +4,44 @@
# Oct 2021
---
outlines:
default: { width: 34.285, height: 52 }
change-view: { width: 51.427, height: 52 }
change-view-2: { width: 82.284, height: 52 }
large: { width: 51.427, height: 52 }
placeholder: { width: 34.285, height: 52 }
spaceline: { width: 178.283, height: 52 }
special: { width: 51.427, height: 52 }
special-2: { width: 82.284, height: 52 }
default: { width: 34.3, height: 52 }
altline: { width: 52, height: 52 }
wide: { width: 104, height: 52 }
change-view: { width: 52, height: 52 }
change-view-2: { width: 104, height: 52 }
spaceline: { width: 150.99, height: 52 }
special: { width: 44, height: 52 }
large: { width: 44, height: 52 }
placeholder: { width: 34.3, height: 52 }
views:
base:
- "՝ ֆ ձ ֊ , ։ ՞ ՛ ) օ է ղ"
- "ճ փ բ ս մ ո ւ կ ը թ ծ ց »"
- "-- ջ վ գ ե ա ն ի տ հ պ ր --"
- "show_upper ժ դ չ յ զ լ ք խ շ ռ BackSpace"
- "Shift_L ժ դ չ յ զ լ ք խ շ ռ BackSpace"
- "show_numbers preferences space . Return"
upper:
- "՜ Ֆ Ձ — $ … ՟ և ՚ ( Օ Է Ղ"
- "Ճ Փ Բ Ս Մ Ո Ւ Կ Ը Թ Ծ Ց «"
- "-- Ջ Վ Գ Ե Ա Ն Ի Տ Հ Պ Պ Ր"
- "show_upper Ժ Դ Չ Յ Զ Լ Ք Խ Շ Ռ BackSpace"
- "Shift_L Ժ Դ Չ Յ Զ Լ Ք Խ Շ Ռ BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "-- -- -- -- -- -- -- -- -- -- -- -- --"
- "-- -- -- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և -- -- --"
- "-- -- -- , \" ' : ; ! ? -- -- --"
- "-- -- -- -- -- -- -- -- --"
- "-- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և --"
- "-- , \" ' : ; ! ? --"
- "show_symbols 1 2 3 4 5 6 7 8 9 0 BackSpace"
- "show_letters preferences space . Return"
symbols:
- "-- -- * # \\ % < > = [ ] ² --"
- "-- -- © $ / & - _ + ( ) ³ --"
- "-- -- ® £ € ¥ ^ ° @ { } -- --"
- "* # \\ % < > = [ ]"
- "© $ / & - _ + ( )"
- "® £ € ¥ ^ ° @ { }"
- "show_numbers_from_symbols ~ ` | · √ π τ ÷ × ¶ BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -48,7 +49,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -81,7 +82,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -4,43 +4,44 @@
# Oct 2021
---
outlines:
default: { width: 51.692, height: 42 }
change-view: { width: 77.538, height: 42 }
change-view-2: { width: 103.384, height: 42 }
placeholder: { width: 51.692, height: 42 }
spaceline: { width: 361.844, height: 42 }
special: { width: 51.692, height: 42 }
special-2: { width: 77.538, height: 42 }
special-3: { width: 103.384, height: 42 }
default: { width: 51.7, height: 42 }
altline: { width: 77.5, height: 42 }
wide: { width: 103.35, height: 42 }
change-view: { width: 77.5, height: 42 }
change-view-2: { width: 103.35, height: 42 }
spaceline: { width: 340.3, height: 42 }
special: { width: 62.27, height: 42 }
large: { width: 62.27, height: 42 }
placeholder: { width: 51.7, height: 42 }
views:
base:
- "՝ ֆ ձ ֊ , ։ ՞ ՛ ) օ է ղ"
- "ճ փ բ ս մ ո ւ կ ը թ ծ ց »"
- "-- ջ վ գ ե ա ն ի տ հ պ ր --"
- "show_upper ժ դ չ յ զ լ ք խ շ ռ BackSpace"
- "Shift_L ժ դ չ յ զ լ ք խ շ ռ BackSpace"
- "show_numbers preferences space . Return"
upper:
- "՜ Ֆ Ձ — $ … ՟ և ՚ ( Օ Է Ղ"
- "Ճ Փ Բ Ս Մ Ո Ւ Կ Ը Թ Ծ Ց «"
- "-- Ջ Վ Գ Ե Ա Ն Ի Տ Հ Պ Պ Ր"
- "show_upper Ժ Դ Չ Յ Զ Լ Ք Խ Շ Ռ BackSpace"
- "Shift_L Ժ Դ Չ Յ Զ Լ Ք Խ Շ Ռ BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "-- -- -- -- -- -- -- -- -- -- -- -- --"
- "-- -- -- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և -- -- --"
- "-- -- -- , \" ' : ; ! ? -- -- --"
- "-- -- -- -- -- -- -- -- --"
- "-- ﬓ ﬔ ﬕ ﬖ ﬗ ՟ և --"
- "-- , \" ' : ; ! ? --"
- "show_symbols 1 2 3 4 5 6 7 8 9 0 BackSpace"
- "show_letters preferences space . Return"
symbols:
- "-- -- * # \\ % < > = [ ] ² --"
- "-- -- © $ / & - _ + ( ) ³ --"
- "-- -- ® £ € ¥ ^ ° @ { } -- --"
- "* # \\ % < > = [ ]"
- "© $ / & - _ + ( )"
- "® £ € ¥ ^ ° @ { }"
- "show_numbers_from_symbols ~ ` | · √ π τ ÷ × ¶ BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -48,7 +49,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -75,11 +76,13 @@ buttons:
set_view: "symbols"
outline: "change-view"
label: "*/="
.:
outline: "large"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -2,39 +2,39 @@
# Maintained by: Khaled Eldoheiri <khalid@kdehairy.com>
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
fill: { width: 64.83, height: 52 }
spaceline: { width: 178.283, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 32.95, height: 52 }
altline: { width: 48.99, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 48.99, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 169.63, height: 52 }
special: { width: 35.66, height: 52 }
fill: { width: 65.32, height: 52 }
views:
base:
- "ذ ض ص ث ق ف غ ع خ ح ج"
- "ش س ي ب ل ا ت ن م ك ط"
- "show_upper ء ؤ ر ة و ز ظ د BackSpace"
- "Shift_L ء ؤ ر ة و ز ظ د BackSpace"
- "show_numbers preferences space . Return"
extra:
- "ذ ض ص ث ق لإ إ ع خ ح ج"
- "ش س ى ب لأ أ ت ن م ك ط"
- "show_upper ئ لآ لا ه آ ز ظ د BackSpace"
- "Shift_L ئ لآ لا ه آ ز ظ د BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "extra"
@ -42,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -73,10 +73,18 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
5:
outline: "fill"
"&":
outline: "fill"
":":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"
">":
outline: "fill"

View File

@ -2,37 +2,39 @@
# Maintained by: Khaled Eldoheiri <khalid@kdehairy.com>
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
fill: { width: 97.744, height: 42 }
spaceline: { width: 293.232, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
default: { width: 49, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 108, height: 42 }
change-view: { width: 73.5, height: 42 }
change-view-2: { width: 108, height: 42 }
spaceline: { width: 295, height: 42 }
special: { width: 49, height: 42 }
fill: { width: 98, height: 42 }
views:
base:
- "ذ ض ص ث ق ف غ ع خ ح ج"
- "ش س ي ب ل ا ت ن م ك ط"
- "show_upper ء ؤ ر ة و ز ظ د BackSpace"
- "Shift_L ء ؤ ر ة و ز ظ د BackSpace"
- "show_numbers preferences space . Return"
extra:
- "ذ ض ص ث ق لإ إ ع خ ح ج"
- "ش س ى ب لأ أ ت ن م ك ط"
- "show_upper ئ لآ لا ه آ ز ظ د BackSpace"
- "Shift_L ئ لآ لا ه آ ز ظ د BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "extra"
@ -40,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -66,12 +68,24 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
5:
outline: "fill"
text: "5"
"&":
outline: "fill"
text: "&"
":":
outline: "fill"
text: ":"
:
outline: "fill"
text: "√"
¥:
outline: "fill"
text: "¥"
">":
outline: "fill"
text: ">"

View File

@ -1,23 +1,24 @@
# Language: Belgian
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 53.485, height: 52 }
special-2: { width: 62.399, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 53, height: 52 }
wide: { width: 59, height: 52 }
change-view: { width: 53, height: 52 }
change-view-2: { width: 59, height: 52 }
spaceline: { width: 139.75, 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"
- "show_upper w x c v b n . BackSpace"
- "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"
- "show_upper W X C V B N , BackSpace"
- "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"
@ -36,7 +37,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -44,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -82,6 +83,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,24 +1,24 @@
# Language: Belgian
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
change-view-2: { width: 94.08, height: 42 }
spaceline: { width: 215.04, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 100, height: 42 }
change-view: { width: 81, height: 42 }
change-view-2: { 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"
- "show_upper w x c v b n . BackSpace"
- "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"
- "show_upper W X C V B N , BackSpace"
- "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"
@ -37,7 +37,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -83,6 +83,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,40 +1,41 @@
# Language: Bulgarian (phonetic)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
large: { width: 48.622, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.869, height: 52 }
special: { width: 48.622, height: 52 }
special-2: { width: 56.726, height: 52 }
default: { width: 32.72, height: 52 }
altline: { width: 50.12, height: 52 }
wide: { width: 58.99, height: 52 }
change-view: { width: 50.12, height: 52 }
change-view-2: { width: 58.99, height: 52 }
spaceline: { width: 167.26, height: 52 }
special: { width: 44, height: 52 }
placeholder: { width: 32.72, height: 52 }
fill: { width: 65.44, height: 52 }
views:
base:
- "я в е р т ъ у и о п ю"
- "а с д ф г х й к л ш щ"
- "show_upper з ь ц ж б н м ч BackSpace"
- "Shift_L з ь ц ж б н м ч BackSpace"
- "show_numbers preferences space . Return"
upper:
- В Е Р Т Ъ У И О П Ю"
- "А С Д Ф Г Х Й К Л Ш Щ"
- "show_upper З Ь Ц Ж Б Н М Ч BackSpace"
- "show_numbers preferences space ,-large Return"
- "Shift_L З Ь Ц Ж Б Н М Ч BackSpace"
- "show_numbers preferences space , Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "show_symbols , \" ' : ; ! ? -- BackSpace"
- "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 ,-large Return"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space , Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -42,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -73,14 +74,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
.:
outline: "large"
",-large":
outline: "large"
text: ","
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,37 +1,40 @@
# Language: Bulgarian (phonetic)
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 293.232, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
default: { width: 48.75, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 73.5, height: 42 }
change-view: { width: 73.5, height: 42 }
spaceline: { width: 292.5, height: 42 }
special: { width: 48.75, height: 42 }
placeholder: { width: 48.75, height: 42 }
fill: { width: 97.5, height: 42 }
views:
base:
- "я в е р т ъ у и о п ю"
- "а с д ф г х й к л ш щ"
- "show_upper з ь ц ж б н м ч BackSpace"
- "Shift_L з ь ц ж б н м ч BackSpace"
- "show_numbers preferences space . Return"
upper:
- В Е Р Т Ъ У И О П Ю"
- "А С Д Ф Г Х Й К Л Ш Щ"
- "show_upper З Ь Ц Ж Б Н М Ч BackSpace"
- "Shift_L З Ь Ц Ж Б Н М Ч 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"
- "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"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] BackSpace"
- "show_letters preferences space Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -39,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -65,9 +68,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,40 +1,41 @@
# Language: Bulgarian
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
large: { width: 48.622, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.869, height: 52 }
special: { width: 48.622, height: 52 }
special-2: { width: 56.726, height: 52 }
default: { width: 32.72, height: 52 }
altline: { width: 50.12, height: 52 }
wide: { width: 58.99, height: 52 }
change-view: { width: 50.12, height: 52 }
change-view-2: { width: 58.99, height: 52 }
spaceline: { width: 167.26, height: 52 }
special: { width: 44, height: 52 }
placeholder: { width: 32.72, height: 52 }
fill: { width: 65.44, height: 52 }
views:
base:
- "у е и ш щ к с д з ц б"
- "ь я а о ж г т н в м ч"
- "show_upper ю й ъ ф х п р л BackSpace"
- "Shift_L ю й ъ ф х п р л BackSpace"
- "show_numbers preferences space . Return"
upper:
- "У Е И Ш Щ К С Д З Ц Б"
- "Ь Я А О Ж Г Т Н В М Ч"
- "show_upper Ю Й Ъ Ф Х П Р Л BackSpace"
- "show_numbers preferences space ,-large Return"
- "Shift_L Ю Й Ъ Ф Х П Р Л BackSpace"
- "show_numbers preferences space , Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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 ,-large Return"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space , Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -42,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -73,14 +74,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
.:
outline: "large"
",-large":
outline: "large"
text: ","
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,37 +1,40 @@
# Language: Bulgarian
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 293.232, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
default: { width: 48.75, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 73.5, height: 42 }
change-view: { width: 73.5, height: 42 }
spaceline: { width: 292.5, height: 42 }
special: { width: 48.75, height: 42 }
placeholder: { width: 48.75, height: 42 }
fill: { width: 97.5, height: 42 }
views:
base:
- "у е и ш щ к с д з ц б"
- "ь я а о ж г т н в м ч"
- "show_upper ю й ъ ф х п р л BackSpace"
- "Shift_L ю й ъ ф х п р л BackSpace"
- "show_numbers preferences space . Return"
upper:
- "У Е И Ш Щ К С Д З Ц Б"
- "Ь Я А О Ж Г Т Н В М Ч"
- "show_upper Ю Й Ъ Ф Х П Р Л BackSpace"
- "Shift_L Ю Й Ъ Ф Х П Р Л BackSpace"
- "show_numbers preferences space , Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # € % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? ѝ BackSpace"
- "show_letters preferences space . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ $ ¥ ^ ° * { } ³"
- "show_numbers \\ / < > = [ ] -- BackSpace"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space , Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -39,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -65,9 +68,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,23 +1,24 @@
# Language: Portuguese (Brazil)
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
large: { width: 71.314, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53, height: 52 }
wide: { width: 53, height: 52 }
change-view: { width: 53, height: 52 }
spaceline: { width: 90, height: 52 }
special: { width: 35.67, height: 52 }
large: { width: 71.34, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L Ç"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ,-large Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -36,7 +37,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -44,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -83,6 +84,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,25 +1,25 @@
# Language: Portuguese (Brazil)
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
large: { width: 80.64, height: 42 }
spaceline: { width: 147.84, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
thin: { width: 40.32, height: 42 }
default: { width: 53.75, height: 42 }
thin: { width: 40.5, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 92, height: 42 }
change-view: { width: 81, height: 42 }
spaceline: { width: 149.5, height: 42 }
special: { width: 53.75, height: 42 }
large: { width: 81, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L Ç"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ,-large Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -38,7 +38,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -85,7 +85,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
«:

View File

@ -1,41 +1,41 @@
# Language: Belarusian
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 32.415, height: 52 }
change-view-2: { width: 64.83, height: 52 }
fill: { width: 64.83, height: 52 }
large: { width: 35.656, height: 52 }
spaceline: { width: 90.763, height: 52 }
spaceline-fill: { width: 155.593, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 35.656, height: 52 }
special-3: { width: 64.83, height: 52 }
default: { width: 32.45, height: 52 }
altline: { width: 32, height: 52 }
wide: { width: 64.55, height: 52 }
change-view: { width: 32, height: 52 }
change-view-2: { width: 64.55, height: 52 }
spaceline: { width: 91.96, height: 52 }
fill: { width: 156.86, height: 52 }
fill-2: { width: 64.9, height: 52 }
special: { width: 35.67, height: 52 }
large: { width: 35.67, height: 52 }
views:
base:
- "й ц у к е н г ш ў з х"
- "ф ы в а п р о л д ж э"
- "show_upper я ч с м і т ь б ю BackSpace"
- "Shift_L я ч с м і т ь б ю BackSpace"
- "show_numbers preferences ё space , . Return"
upper:
- "Й Ц У К Е Н Г Ш Ў З Х"
- "Ф Ы В А П Р О Л Д Ж Э"
- "show_upper Я Ч С М І Т Ь Б Ю BackSpace"
- "Shift_L Я Ч С М І Т Ь Б Ю BackSpace"
- "show_numbers preferences Ё space , . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? BackSpace-wide"
- "show_letters preferences space-fill . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] BackSpace-wide"
- "show_letters preferences space-fill . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,16 +43,16 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-3"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
action: "show_prefs"
outline: "special-2"
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
@ -75,9 +75,17 @@ buttons:
outline: "spaceline"
text: " "
space-fill:
outline: "spaceline-fill"
outline: "fill"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
5:
outline: "fill-2"
"&":
outline: "fill-2"
:
outline: "fill-2"
¥:
outline: "fill-2"

View File

@ -1,39 +1,40 @@
# Language: Belarusian
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 48.872, height: 42 }
change-view-2: { width: 97.744, height: 42 }
fill: { width: 97.744, height: 42 }
spaceline: { width: 146.616, height: 42 }
spaceline-fill: { width: 244.36, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 97.744, height: 42 }
default: { width: 48.75, height: 42 }
altline: { width: 48.75, height: 42 }
wide: { width: 97.5, height: 42 }
change-view: { width: 48.75, height: 42 }
change-view-2: { width: 97.5, height: 42 }
spaceline: { width: 146.5, height: 42 }
fill: { width: 244, height: 42 }
fill-2: { width: 97.5, height: 42 }
special: { width: 48.75, height: 42 }
views:
base:
- "й ц у к е н г ш ў з х"
- "ф ы в а п р о л д ж э"
- "show_upper я ч с м і т ь б ю BackSpace"
- "Shift_L я ч с м і т ь б ю BackSpace"
- "show_numbers preferences ё space , . Return"
upper:
- "Й Ц У К Е Н Г Ш Ў З Х"
- "Ф Ы В А П Р О Л Д Ж Э"
- "show_upper Я Ч С М І Т Ь Б Ю BackSpace"
- "Shift_L Я Ч С М І Т Ь Б Ю BackSpace"
- "show_numbers preferences Ё space , . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? BackSpace-wide"
- "show_letters preferences space-fill . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] BackSpace-wide"
- "show_letters preferences space-fill . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,11 +42,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-2"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -71,9 +72,17 @@ buttons:
outline: "spaceline"
text: " "
space-fill:
outline: "spaceline-fill"
outline: "fill"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
5:
outline: "fill-2"
"&":
outline: "fill-2"
:
outline: "fill-2"
¥:
outline: "fill-2"

View File

@ -1,24 +1,25 @@
# Language: French (Canada)
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
placeholder: { width: 35.657, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 53.485, height: 52 }
special-2: { width: 62.399, height: 52 }
default: { width: 35.5, height: 52 }
altline: { width: 53.5, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 53.5, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 135, height: 52 }
special: { width: 44, height: 52 }
placeholder: { width: 36, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers preferences space show_eschars Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers preferences space show_eschars Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -37,7 +38,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -83,7 +84,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,25 +1,25 @@
# Language: French (Canada)
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
change-view-2: { width: 94.08, height: 42 }
placeholder: { width: 53.76, height: 42 }
spaceline: { width: 215.04, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
default: { width: 53.7, height: 42 }
altline: { width: 80.5, height: 42 }
wide: { width: 92, height: 42 }
change-view: { width: 80.5, height: 42 }
change-view-2: { width: 92, height: 42 }
spaceline: { width: 219.5, height: 42 }
special: { width: 53.7, height: 42 }
placeholder: { width: 53.7, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers preferences space show_eschars Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers preferences space show_eschars Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -38,7 +38,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -84,7 +84,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -3,39 +3,38 @@
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 89.142, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 48, height: 52 }
wide: { width: 59, height: 52 }
change-view: { width: 48, height: 52 }
change-view-2: { width: 59, height: 52 }
spaceline: { width: 70, height: 52 }
special: { width: 28, height: 52 }
views:
base:
- "q w e r t z u i o p ü"
- "a s d f g h j k l ö ä"
- "show_upper y x c v b n m -- BackSpace"
- "show_numbers preferences ? ' space , . Return"
- "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 Ö Ä"
- "show_upper Y X C V B N M -- BackSpace"
- "show_numbers preferences ! \" space - _ Return"
- "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"
- "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"
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` ^ { } · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters preferences - space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -69,9 +68,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -3,39 +3,38 @@
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
change-view-2: { width: 85.526, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 134.398, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 85.526, height: 42 }
default: { width: 52, height: 42 }
altline: { width: 70.65, height: 42 }
wide: { width: 86.84, height: 42 }
change-view: { width: 70.65, height: 42 }
change-view-2: { width: 86.84, height: 42 }
spaceline: { width: 103.03, height: 42 }
special: { width: 41.21, height: 42 }
views:
base:
- "q w e r t z u i o p ü"
- "a s d f g h j k l ö ä"
- "show_upper y x c v b n m -- BackSpace"
- "show_numbers preferences ? ' space , . Return"
- "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 Ö Ä"
- "show_upper Y X C V B N M -- BackSpace"
- "show_numbers preferences ! \" space - _ Return"
- "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"
- "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"
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` ^ { } · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters preferences - space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -69,9 +68,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -2,43 +2,43 @@
# Maintained by: Jordi Bossy <jordi@bossy.space>. No Copyright, enjoy!
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
spaceline: { width: 80.23, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53.5, height: 52 }
wide: { width: 59, height: 52 }
change-view: { width: 53.5, height: 52 }
change-view-2: { width: 59, height: 52 }
spaceline: { width: 57, height: 52 }
special: { width: 28, height: 52 }
views:
base:
- "q w e r t z u i o p"
- "a s d f g h j k l ?"
- "show_upper y x c v b n m BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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 !"
- "show_upper Y X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ' \" Return"
- "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"
- "show_letters show_eschars preferences _ space , . Return"
symbols:
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` ^ { } · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters show_eschars preferences space - _ Return"
- "show_letters show_eschars preferences - space , . Return"
eschars:
- "à â ç é è ê î ô ù û"
- "À Â Ç É È Ê Î Ô Ù Û"
- "show_numbers æ œ ä ë ï ö ü BackSpace"
- "show_letters show_eschars preferences space ° ß Return"
- "show_letters show_eschars preferences ' space ° ß Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,6 +79,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -2,42 +2,44 @@
# Maintained by: Jordi Bossy <jordi@bossy.space>. No Copyright, enjoy!
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 120.96, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
default: { width: 53.5, height: 42 }
thin: { width: 40, height: 42 }
altline: { width: 80, height: 42 }
wide: { width: 86.84, height: 42 }
change-view: { width: 80, height: 42 }
change-view-2: { width: 86.84, height: 42 }
spaceline: { width: 126, height: 42 }
special: { width: 41.21, height: 42 }
views:
base:
- "q w e r t z u i o p"
- "a s d f g h j k l ?"
- "show_upper y x c v b n m BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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 !"
- "show_upper Y X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ' \" Return"
- "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"
- "show_letters show_eschars preferences _ space , . Return"
symbols:
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` ^ { } · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters show_eschars preferences space - _ Return"
- "show_letters show_eschars preferences --thin space , . Return"
eschars:
- "à â ç é è ê î ô ù û"
- "À Â Ç É È Ê Î Ô Ù Û"
- "show_numbers æ œ ä ë ï ö ü BackSpace"
- "show_letters show_eschars preferences space ° ß Return"
- "show_letters show_eschars preferences ' space ° ß Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,6 +80,23 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
"'":
outline: "thin"
"\"":
outline: "thin"
_:
outline: "thin"
--thin:
outline: "thin"
text: "-"
.:
outline: "thin"
",":
outline: "thin"
ß:
outline: "thin"
°:
outline: "thin"

View File

@ -4,44 +4,44 @@
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
fill: { width: 64.83, height: 52 }
spaceline: { width: 105.35, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 35.33, height: 58 }
doublewidth: { width: 70.66, height: 58 }
altline: { width: 52.8, height: 58 }
wide: { width: 64.9, height: 58 }
change-view: { width: 52.8, height: 58 }
change-view-2: { width: 64.9, height: 58 }
spaceline: { width: 111.75, height: 58 }
special: { width: 35.33, height: 58 }
views:
base:
- "q w e r t z u i o p ü"
- "a s d f g h j k l ö ä"
- "show_upper y x c v b n m ' BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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 Ö Ä"
- "show_upper Y X C V B N M \" BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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"
- "show_letters show_eschars preferences Space , . Return"
symbols:
- "€ $ £ ¥ % | § µ [ ] ²"
- "© ® § ` { } @ · ¡ ¿ ³"
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` { } @ · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters show_eschars preferences space , . Return"
- "show_letters show_eschars preferences Space , . Return"
eschars:
- "à â ç é è ê î ô ù û ñ"
- "À Â Ç É È Ê Î Ô Ù Û Ñ"
- "show_numbers æ œ ä ë ï ö ü ß BackSpace"
- "show_letters show_eschars preferences space ° Return"
- "show_letters show_eschars preferences Space ° Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -49,7 +49,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,14 +78,18 @@ buttons:
unlock_view: "base"
outline: "change-view"
label: "Ââ"
space:
Space:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
°:
outline: "fill"
outline: "doublewidth"
"|":
outline: "doublewidth"
"}":
outline: "doublewidth"
×:
outline: "fill"
outline: "doublewidth"

View File

@ -4,45 +4,46 @@
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
fill: { width: 97.744, height: 42 }
large: { width: 73.308, height: 42 }
narrow: { width: 36.654, height: 42 }
spaceline: { width: 183.27, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 85.526, height: 42 }
default: { width: 48, height: 42 }
doublewidth: { width: 96, height: 42 }
narrow: { width: 33, height: 42 }
large: { width: 66, height: 42 }
altline: { width: 72, height: 42 }
wide: { width: 108, height: 42 }
change-view: { width: 72, height: 42 }
change-view-2: { width: 108, height: 42 }
spaceline: { width: 162, 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 ö ä"
- "show_upper y x c v b n m ' BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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 Ö Ä"
- "show_upper Y X C V B N M \" BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "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"
- "show_letters show_eschars preferences Space , . Return"
symbols:
- "€ $ £ ¥ % | § µ [ ] ²"
- "© ® § ` { } @ · ¡ ¿ ³"
- "€ $ £ ¥ % | § µ [ ]"
- "© ® § ` { } @ · ¡ ¿"
- "show_numbers « » ÷ × “ ” „ BackSpace"
- "show_letters show_eschars preferences space , . Return"
- "show_letters show_eschars preferences Space , . Return"
eschars:
- "à â ç é è ê î ô ù û ñ"
- "À Â Ç É È Ê Î Ô Ù Û Ñ"
- "show_numbers æ œ ä ë ï ö ü ß BackSpace"
- "show_letters show_eschars preferences space ° Return"
- "show_letters show_eschars preferences Space ° Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -50,7 +51,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,11 +80,11 @@ buttons:
unlock_view: "base"
outline: "change-view"
label: "Ââ"
space:
Space:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
°:
@ -92,5 +93,9 @@ buttons:
outline: "narrow"
",":
outline: "narrow"
"|":
outline: "doublewidth"
"}":
outline: "doublewidth"
×:
outline: "fill"
outline: "doublewidth"

View File

@ -1,23 +1,24 @@
# Language: Czech (QWERTY)
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 35.657, height: 52 }
spaceline: { width: 106.972, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 52.67, height: 52 }
wide: { width: 52.67, height: 52 }
change-view: { width: 52.67, height: 52 }
spaceline: { width: 106, height: 52 }
special: { width: 35.33, height: 52 }
change-view-2: { 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"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_accents preferences space , . Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_upper_accents preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,23 +33,23 @@ views:
accents:
- "ä ě é ř ť ý ů í ó ö"
- "á š ď ë ŕ ú ü ô ľ"
- "show_upper_accents_from_accents ž ß č ç ñ ň ĺ BackSpace"
- "accents_Shift_L ž ß č ç ñ ň ĺ BackSpace"
- "show_letters show_accents preferences space , . Return"
upper_accents:
- "Ä Ě É Ř Ť Ý Ů Í Ó Ö"
- "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
- "show_upper_accents_from_accents Ž ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "accents_Shift_L Ž ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "show_letters show_upper_accents preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
unlock_view: "base"
outline: "change-view"
icon: "key-shift"
show_upper_accents_from_accents:
accents_Shift_L:
action:
locking:
lock_view: "upper_accents"
@ -56,7 +57,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -96,6 +97,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,23 +1,24 @@
# Language: Czech (QWERTY)
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 53.76, height: 42 }
change-view-2: { width: 80.64, height: 42 }
spaceline: { width: 161.28, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 81, height: 42 }
change-view: { width: 81, height: 42 }
spaceline: { width: 162, height: 42 }
special: { width: 54, height: 42 }
change-view-2: { 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"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_accents preferences space , . Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_upper_accents preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,31 +33,31 @@ views:
accents:
- "ä ě é ř ť ý ů í ó ö"
- "á š ď ë ŕ ú ü ô ľ"
- "accents_show_upper ž ß č ç ñ ň ĺ BackSpace"
- "accents_Shift_L ž ß č ç ñ ň ĺ BackSpace"
- "show_letters show_accents preferences space , . Return"
upper_accents:
- "Ä Ě É Ř Ť Ý Ů Í Ó Ö"
- "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
- "accents_show_upper Ž ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "accents_Shift_L Ž ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "show_letters show_upper_accents preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
unlock_view: "base"
outline: "change-view-2"
outline: "change-view"
icon: "key-shift"
accents_show_upper:
accents_Shift_L:
action:
locking:
lock_view: "upper_accents"
unlock_view: "base"
outline: "change-view-2"
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -66,36 +67,36 @@ buttons:
show_numbers:
action:
set_view: "numbers"
outline: "change-view-2"
outline: "change-view"
label: "123"
show_letters:
action:
set_view: "base"
outline: "change-view-2"
outline: "change-view"
label: "ABC"
show_symbols:
action:
set_view: "symbols"
outline: "change-view-2"
outline: "change-view"
label: "*/="
show_accents:
action:
locking:
lock_view: "accents"
unlock_view: "base"
outline: "change-view"
outline: "change-view-2"
label: "á"
show_upper_accents:
action:
locking:
lock_view: "upper_accents"
unlock_view: "base"
outline: "change-view"
outline: "change-view-2"
label: "Á"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,23 +1,24 @@
# Language: Czech
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 35.657, height: 52 }
spaceline: { width: 106.972, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 52.67, height: 52 }
wide: { width: 52.67, height: 52 }
change-view: { width: 52.67, height: 52 }
spaceline: { width: 106, height: 52 }
special: { width: 35.33, height: 52 }
change-view-2: { 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"
- "show_upper y x c v b n m BackSpace"
- "Shift_L y x c v b n m BackSpace"
- "show_numbers show_accents preferences space , . Return"
upper:
- "Q W E R T Z U I O P"
- "A S D F G H J K L"
- "show_upper Y X C V B N M BackSpace"
- "Shift_L Y X C V B N M BackSpace"
- "show_numbers show_upper_accents preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,23 +33,23 @@ views:
accents:
- "ä ě é ř ť ž ů í ó ö"
- "á š ď ë ŕ ú ü ô ľ"
- "show_upper_accents_from_accents ý ß č ç ñ ň ĺ BackSpace"
- "accents_Shift_L ý ß č ç ñ ň ĺ BackSpace"
- "show_letters show_accents preferences space , . Return"
upper_accents:
- "Ä Ě É Ř Ť Ž Ů Í Ó Ö"
- "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
- "show_upper_accents_from_accents Ý ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "accents_Shift_L Ý ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "show_letters show_upper_accents preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
unlock_view: "base"
outline: "change-view"
icon: "key-shift"
show_upper_accents_from_accents:
accents_Shift_L:
action:
locking:
lock_view: "upper_accents"
@ -56,7 +57,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -96,6 +97,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,23 +1,24 @@
# Language: Czech
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 53.76, height: 42 }
change-view-2: { width: 80.64, height: 42 }
spaceline: { width: 161.28, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 81, height: 42 }
change-view: { width: 81, height: 42 }
spaceline: { width: 162, height: 42 }
special: { width: 54, height: 42 }
change-view-2: { 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"
- "show_upper y x c v b n m BackSpace"
- "Shift_L y x c v b n m BackSpace"
- "show_numbers show_accents preferences space , . Return"
upper:
- "Q W E R T Z U I O P"
- "A S D F G H J K L"
- "show_upper Y X C V B N M BackSpace"
- "Shift_L Y X C V B N M BackSpace"
- "show_numbers show_upper_accents preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,31 +33,31 @@ views:
accents:
- "ä ě é ř ť ž ů í ó ö"
- "á š ď ë ŕ ú ü ô ľ"
- "accents_show_upper ý ß č ç ñ ň ĺ BackSpace"
- "accents_Shift_L ý ß č ç ñ ň ĺ BackSpace"
- "show_letters show_accents preferences space , . Return"
upper_accents:
- "Ä Ě É Ř Ť Ž Ů Í Ó Ö"
- "Á Š Ď Ë Ŕ Ú Ü Ô Ľ"
- "accents_show_upper Ý ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "accents_Shift_L Ý ẞ Č Ç Ñ Ň Ĺ BackSpace"
- "show_letters show_upper_accents preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
unlock_view: "base"
outline: "change-view-2"
outline: "change-view"
icon: "key-shift"
accents_show_upper:
accents_Shift_L:
action:
locking:
lock_view: "upper_accents"
unlock_view: "base"
outline: "change-view-2"
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -66,36 +67,36 @@ buttons:
show_numbers:
action:
set_view: "numbers"
outline: "change-view-2"
outline: "change-view"
label: "123"
show_letters:
action:
set_view: "base"
outline: "change-view-2"
outline: "change-view"
label: "ABC"
show_symbols:
action:
set_view: "symbols"
outline: "change-view-2"
outline: "change-view"
label: "*/="
show_accents:
action:
locking:
lock_view: "accents"
unlock_view: "base"
outline: "change-view"
outline: "change-view-2"
label: "á"
show_upper_accents:
action:
locking:
lock_view: "upper_accents"
unlock_view: "base"
outline: "change-view"
outline: "change-view-2"
label: "Á"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,34 +1,35 @@
# Language: German (Bone)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
fill: { width: 64.83, height: 52 }
default: { width: 32.12, height: 52 }
subtle-highlight: { width: 32.12, height: 52 }
special: { width: 32.12, height: 52 }
altline: { width: 48.17, height: 52 }
change-view: { width: 48.17, height: 52 }
fill: { width: 64.24, height: 52 }
subtle-highlight-2: { width: 64.24, height: 52 }
spaceline: { width: 112.45, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
subtle-highlight: { width: 32.415, height: 52 }
subtle-highlight-2: { width: 64.83, height: 52 }
views:
base:
- "j d u a x p h l m w ß"
- "c t i e o b n r s g q"
- "show_upper f v ü ä ö y z k BackSpace"
- "Shift_L f v ü ä ö y z k BackSpace"
- "show_numbers show_eschars preferences space , . Return"
upper:
- "J D U A X P H L M W ẞ"
- "C T I E O B N R S G Q"
- "show_upper F V Ü Ä Ö Y Z K BackSpace"
- "Shift_L F V Ü Ä Ö Y Z K BackSpace"
- "show_numbers show_eschars preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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:
@ -38,7 +39,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
ä-subtle-highlight:
@ -103,6 +104,14 @@ buttons:
ß-subtle-highlight:
outline: "subtle-highlight"
text: "ß"
5:
outline: "fill"
"&":
outline: "fill"
·:
outline: "fill"
¥:
outline: "fill"
ô:
outline: "fill"
Ç:

View File

@ -1,34 +1,35 @@
# Language: German (Bone)
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
fill: { width: 97.744, height: 42 }
spaceline: { width: 171.052, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
subtle-highlight: { width: 48.872, height: 42 }
subtle-highlight-2: { width: 97.744, height: 42 }
default: { width: 48.87, height: 42 }
subtle-highlight: { width: 48.87, height: 42 }
special: { width: 48.87, height: 42 }
altline: { width: 73.31, height: 42 }
change-view: { width: 73.31, height: 42 }
fill: { width: 97.74, height: 42 }
subtle-highlight-2: { width: 97.74, height: 42 }
spaceline: { width: 171.03, height: 42 }
views:
base:
- "j d u a x p h l m w ß"
- "c t i e o b n r s g q"
- "show_upper f v ü ä ö y z k BackSpace"
- "Shift_L f v ü ä ö y z k BackSpace"
- "show_numbers show_eschars preferences space , . Return"
upper:
- "J D U A X P H L M W ẞ"
- "C T I E O B N R S G Q"
- "show_upper F V Ü Ä Ö Y Z K BackSpace"
- "Shift_L F V Ü Ä Ö Y Z K BackSpace"
- "show_numbers show_eschars preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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:
@ -38,7 +39,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
ä-subtle-highlight:
@ -103,6 +104,14 @@ buttons:
ß-subtle-highlight:
outline: "subtle-highlight"
text: "ß"
5:
outline: "fill"
"&":
outline: "fill"
·:
outline: "fill"
¥:
outline: "fill"
ô:
outline: "fill"
Ç:

View File

@ -1,34 +1,35 @@
# Language: German (Neo 2)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
fill: { width: 64.83, height: 52 }
default: { width: 32.12, height: 52 }
subtle-highlight: { width: 32.12, height: 52 }
special: { width: 32.12, height: 52 }
altline: { width: 48.17, height: 52 }
change-view: { width: 48.17, height: 52 }
fill: { width: 64.24, height: 52 }
subtle-highlight-2: { width: 64.24, height: 52 }
spaceline: { width: 112.45, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
subtle-highlight: { width: 32.415, height: 52 }
subtle-highlight-2: { width: 64.83, height: 52 }
views:
base:
- "x v l c w k h g f q ß"
- "u i a e o s n r t d y"
- "show_upper ü ö ä p z b m j BackSpace"
- "Shift_L ü ö ä p z b m j BackSpace"
- "show_numbers show_eschars preferences space , . Return"
upper:
- "X V L C W K H G F Q ẞ"
- "U I A E O S N R T D Y"
- "show_upper Ü Ö Ä P Z B M J BackSpace"
- "Shift_L Ü Ö Ä P Z B M J BackSpace"
- "show_numbers show_eschars preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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:
@ -38,7 +39,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
ä-subtle-highlight:
@ -103,6 +104,14 @@ buttons:
ß-subtle-highlight:
outline: "subtle-highlight"
text: "ß"
5:
outline: "fill"
"&":
outline: "fill"
·:
outline: "fill"
¥:
outline: "fill"
ô:
outline: "fill"
Ç:

View File

@ -1,34 +1,35 @@
# Language: German (Neo 2)
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
fill: { width: 97.744, height: 42 }
spaceline: { width: 171.052, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
subtle-highlight: { width: 48.872, height: 42 }
subtle-highlight-2: { width: 97.744, height: 42 }
default: { width: 48.87, height: 42 }
subtle-highlight: { width: 48.87, height: 42 }
special: { width: 48.87, height: 42 }
altline: { width: 73.31, height: 42 }
change-view: { width: 73.31, height: 42 }
fill: { width: 97.74, height: 42 }
subtle-highlight-2: { width: 97.74, height: 42 }
spaceline: { width: 171.03, height: 42 }
views:
base:
- "x v l c w k h g f q ß"
- "u i a e o s n r t d y"
- "show_upper ü ö ä p z b m j BackSpace"
- "Shift_L ü ö ä p z b m j BackSpace"
- "show_numbers show_eschars preferences space , . Return"
upper:
- "X V L C W K H G F Q ẞ"
- "U I A E O S N R T D Y"
- "show_upper Ü Ö Ä P Z B M J BackSpace"
- "Shift_L Ü Ö Ä P Z B M J BackSpace"
- "show_numbers show_eschars preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "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:
@ -38,7 +39,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
ä-subtle-highlight:
@ -103,6 +104,14 @@ buttons:
ß-subtle-highlight:
outline: "subtle-highlight"
text: "ß"
5:
outline: "fill"
"&":
outline: "fill"
·:
outline: "fill"
¥:
outline: "fill"
ô:
outline: "fill"
Ç:

View File

@ -1,23 +1,23 @@
# Language: German
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
subtle-highlight: { width: 35.657, height: 52 }
default: { width: 35.33, height: 52 }
subtle-highlight: { width: 35.33, height: 52 }
altline: { width: 52.67, height: 52 }
change-view: { width: 52.67, height: 52 }
spaceline: { width: 89.3, 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 ß"
- "show_upper y x c v b n m BackSpace"
- "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 -"
- "show_upper Y X C V B N M BackSpace"
- "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"
@ -36,7 +36,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -44,7 +44,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -77,7 +77,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
ä:

View File

@ -1,45 +1,48 @@
# Language: German
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
fill: { width: 97.744, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 171.052, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
subtle-highlight: { width: 48.872, height: 42 }
subtle-highlight-2: { width: 97.744, height: 42 }
default: { width: 48.87, height: 42 }
subtle-highlight: { width: 48.87, height: 42 }
halfwidth: { width: 24, height: 42 }
thin: { width: 30, height: 42 }
narrow: { width: 40.5, height: 42 }
altline: { width: 82.74, height: 42 }
change-view: { width: 82.74, height: 42 }
fill: { width: 97.74, height: 42 }
subtle-highlight-2: { width: 97.74, height: 42 }
spaceline: { width: 159.13, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 30, height: 42 }
views:
base:
- "q w e r t z u i o p ü"
- "a s d f g h j k l ö ä"
- "show_upper y x c v b n m ß BackSpace"
- "show_numbers show_eschars preferences space , . Return"
- "Shift_L y x c v b n m ß-thin BackSpace"
- "show_numbers show_eschars preferences space ,-narrow .-narrow Return"
upper:
- "Q W E R T Z U I O P Ü"
- "A S D F G H J K L Ö Ä"
- "show_upper Y X C V B N M - BackSpace"
- "show_numbers show_eschars preferences space ! ? Return"
- "Shift_L Y X C V B N M --thin BackSpace"
- "show_numbers show_eschars preferences space !-narrow ?-narrow Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # € % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # € % & - _ + ( )"
- "show_symbols ; \" ' : = < > -- BackSpace"
- "show_letters show_eschars preferences space , . Return"
- "show_letters show_eschars preferences space ,-narrow .-narrow Return"
symbols:
- "~ ` ´ | · √ µ ÷ × ²"
- "© ® £ $ ¥ ^ ° * { } ³"
- "~ ` ´ | · √ µ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers \\ / § π τ [ ] -- BackSpace"
- "show_letters show_eschars preferences space , . Return"
- "show_letters show_eschars preferences space ,-narrow .-narrow Return"
eschars:
- "ä-subtle-highlight è é ö-subtle-highlight ü-subtle-highlight-2 Ä-subtle-highlight È É Ö-subtle-highlight Ü-subtle-highlight"
- "à â ê î ô À Â Ê Î Ô"
- "show_numbers « » ç Ç æ œ ß-subtle-highlight ẞ-subtle-highlight BackSpace"
- "show_numbers « » ç Ç æ œ ß-subtle-highlight -- BackSpace"
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +50,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -80,9 +83,31 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
:
outline: "narrow"
:
outline: "narrow"
",-narrow":
outline: "narrow"
text: ","
.-narrow:
outline: "narrow"
text: "."
"!-narrow":
outline: "narrow"
text: "!"
?-narrow:
outline: "narrow"
text: "?"
--thin:
outline: "thin"
text: "-"
ß-thin:
outline: "thin"
text: "ß"
ä-subtle-highlight:
outline: "subtle-highlight"
text: "ä"
@ -104,11 +129,16 @@ buttons:
ß-subtle-highlight:
outline: "subtle-highlight"
text: "ß"
ẞ-subtle-highlight:
outline: "subtle-highlight"
text: "ẞ"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
·:
outline: "fill"
¥:
outline: "fill"
ô:
outline: "fill"

View File

@ -1,39 +1,41 @@
# Language: Danish
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
large: { width: 48.622, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.869, height: 52 }
special: { width: 48.622, height: 52 }
special-2: { width: 56.726, height: 52 }
default: { width: 32.4, height: 52 }
altline: { width: 48.39, height: 52 }
large: { width: 48.39, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 48.39, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 136.39, height: 52 }
special: { width: 48, height: 52 }
placeholder: { width: 32, height: 52 }
fill: { width: 64, height: 52 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ø æ"
- "show_upper z x c v b n m , BackSpace"
- "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 Ø Æ"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -74,9 +76,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,39 +1,39 @@
# Language: Danish
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
change-view-2: { width: 85.526, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 268.796, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 85.526, height: 42 }
default: { width: 48.87, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 92.99, height: 42 }
change-view: { width: 73.5, height: 42 }
spaceline: { width: 273.5, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
fill: { width: 97.74, height: 42 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ø æ"
- "show_upper z x c v b n m , BackSpace"
- "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 Ø Æ"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -49,11 +49,6 @@ buttons:
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
set_view: "numbers"
outline: "change-view-2"
label: "123"
show_numbers_from_symbols:
action:
set_view: "numbers"
outline: "change-view"
@ -61,7 +56,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view-2"
outline: "change-view"
label: "ABC"
show_symbols:
action:
@ -72,9 +67,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,38 +1,37 @@
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
large: { width: 39.222, height: 52 }
spaceline: { width: 108.757, height: 52 }
special: { width: 44.571, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.33, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 52.67, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 106.67, height: 52 }
special: { width: 44, height: 52 }
large: { 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"
- "show_upper z x c v b n m BackSpace"
- "show_numbers preferences space @-large . Return"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "show_numbers preferences space @-large . Return"
- "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 @-large . Return"
- "show_letters preferences space @ . Return"
symbols:
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers_from_symbols \\ / < > = [ ] BackSpace"
- "show_letters preferences space @-large . Return"
- "show_letters preferences space @ . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -40,9 +39,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
"@":
outline: "large"
preferences:
action: "show_prefs"
outline: "special"
@ -67,15 +68,12 @@ buttons:
set_view: "symbols"
outline: "change-view"
label: "*/="
.:
outline: "large"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:
outline: "large"
"@-large":
outline: "large"
text: "@"

View File

@ -1,22 +1,23 @@
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
change-view-2: { width: 94.08, height: 42 }
spaceline: { width: 188.16, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 94.08, height: 42 }
default: { width: 52, height: 42 }
wide: { width: 91.25, height: 42 }
change-view: { width: 77.52, height: 42 }
change-view-2: { width: 91.25, height: 42 }
spaceline: { width: 157, height: 42 }
special: { width: 64.76, height: 42 }
large: { width: 54.76, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -30,7 +31,7 @@ views:
- "show_letters preferences space @ . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -38,9 +39,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
"@":
outline: "large"
preferences:
action: "show_prefs"
outline: "special"
@ -65,10 +68,12 @@ buttons:
set_view: "symbols"
outline: "change-view"
label: "*/="
.:
outline: "large"
space:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,12 +1,12 @@
---
outlines:
default: { width: 51.918, height: 52 }
change-view: { width: 51.918, height: 52 }
change-view-2: { width: 36.341, height: 56 }
emoji-group: { width: 51.918, height: 52 }
placeholder: { width: 51.918, height: 52 }
placeholder-2: { width: 259.59, height: 52 }
special: { width: 51.918, height: 52 }
default: { width: 52, height: 52 }
placeholder: { width: 52, height: 52 }
special: { width: 52, height: 52 }
change-view: { width: 52, height: 52 }
change-view-2: { width: 36.4, height: 56 }
emoji-group: { width: 52, height: 52 }
placeholder-2: { width: 260, height: 52 }
views:
base:
@ -40,7 +40,7 @@ views:
- "preferences 🙂‍↔️ 🙂‍↕️ 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
face-sleepy:
- "😌 😔 😪 🤤 😴 🫩 0"
- "😌 😔 😪 🤤 😴 0 0"
- "0 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
@ -256,7 +256,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
person-symbol:
- "🗣 👤 👥 🫂 👪 🧑‍🧑‍🧒 🧑‍🧑‍🧒‍🧒"
- "🧑‍🧒 🧑‍🧒‍🧒 👣 🫆 0 0 0"
- "🧑‍🧒 🧑‍🧒‍🧒 👣 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
component:
@ -327,7 +327,7 @@ views:
plant-other:
- "🌱 🪴 🌲 🌳 🌴 🌵 🌾"
- "🌿 ☘ 🍀 🍁 🍂 🍃 🪹"
- "preferences 🪺 🍄 🪾 0 0 BackSpace"
- "preferences 🪺 🍄 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
food-and-drink:
- "🍒+ 🥕+ 🥐+ 🍱+ 🦐+ 🍰+ 🍵+"
@ -347,7 +347,7 @@ views:
food-vegetable:
- "🥑 🍆 🥔 🥕 🌽 🌶 🫑"
- "🥒 🥬 🥦 🧄 🧅 🥜 🫘"
- "preferences 🌰 🫚 🫛 🍄‍🟫 🫜 BackSpace"
- "preferences 🌰 🫚 🫛 🍄‍🟫 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
food-prepared:
- "🍞 🥐 🥖 🫓 🥨 🥯 🥞"
@ -556,7 +556,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
musical-instrument:
- "🎷 🪗 🎸 🎹 🎺 🎻 🪕"
- "🥁 🪘 🪇 🪈 🪉 0 0"
- "🥁 🪘 🪇 🪈 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
phone:
@ -616,7 +616,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
tool-2:
- "🦯 🔗 ⛓️‍💥 ⛓ 🪝 🧰 🧲"
- "tool-backwards 🪜 🪏 0 0 0 0"
- "tool-backwards 🪜 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
science:
@ -715,7 +715,7 @@ views:
- "preferences ➿ 〽 ✳ ✴ ❇ BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
other-symbol-2:
- "© ® ™ 🫟 0 0 0"
- "© ® ™ 0 0 0 0"
- "other-symbol-backwards 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
@ -772,70 +772,70 @@ views:
country-flag-3:
- "🇧🇼 🇧🇾 🇧🇿 🇨🇦 🇨🇨 🇨🇩 🇨🇫"
- "country-flag-2-backwards 🇨🇬 🇨🇭 🇨🇮 🇨🇰 🇨🇱 country-flag-4"
- "preferences 🇨🇲 🇨🇳 🇨🇴 🇨🇵 🇨🇶 BackSpace"
- "preferences 🇨🇲 🇨🇳 🇨🇴 🇨🇵 🇨🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-4:
- "🇨🇷 🇨🇺 🇨🇻 🇨🇼 🇨🇽 🇨🇾 🇨🇿 "
- "country-flag-3-backwards 🇩🇪 🇩🇬 🇩🇯 🇩🇰 🇩🇲 country-flag-5"
- "preferences 🇩🇴 🇩🇿 🇪🇦 🇪🇨 🇪🇪 BackSpace"
- "🇨🇺 🇨🇻 🇨🇼 🇨🇽 🇨🇾 🇨🇿 🇩🇪"
- "country-flag-3-backwards 🇩🇬 🇩🇯 🇩🇰 🇩🇲 🇩🇴 country-flag-5"
- "preferences 🇩🇿 🇪🇦 🇪🇨 🇪🇪 🇪🇬 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-5:
- "🇪🇬 🇪🇭 🇪🇷 🇪🇸 🇪🇹 🇪🇺 🇫🇮"
- "country-flag-4-backwards 🇫🇯 🇫🇰 🇫🇲 🇫🇴 🇫🇷 country-flag-6"
- "preferences 🇬🇦 🇬🇧 🇬🇩 🇬🇪 🇬🇫 BackSpace"
- "🇪🇭 🇪🇷 🇪🇸 🇪🇹 🇪🇺 🇫🇮 🇫🇯"
- "country-flag-4-backwards 🇫🇰 🇫🇲 🇫🇴 🇫🇷 🇬🇦 country-flag-6"
- "preferences 🇬🇧 🇬🇩 🇬🇪 🇬🇫 🇬🇬 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-6:
- "🇬🇬 🇬🇭 🇬🇮 🇬🇱 🇬🇲 🇬🇳 🇬🇵"
- "country-flag-5-backwards 🇬🇶 🇬🇷 🇬🇸 🇬🇹 🇬🇺 country-flag-7"
- "preferences 🇬🇼 🇬🇾 🇭🇰 🇭🇲 🇭🇳 BackSpace"
- "🇬🇭 🇬🇮 🇬🇱 🇬🇲 🇬🇳 🇬🇵 🇬🇶"
- "country-flag-5-backwards 🇬🇷 🇬🇸 🇬🇹 🇬🇺 🇬🇼 country-flag-7"
- "preferences 🇬🇾 🇭🇰 🇭🇲 🇭🇳 🇭🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-7:
- "🇭🇷 🇭🇹 🇭🇺 🇮🇨 🇮🇩 🇮🇪 🇮🇱"
- "country-flag-6-backwards 🇮🇲 🇮🇳 🇮🇴 🇮🇶 🇮🇷 country-flag-8"
- "preferences 🇮🇸 🇮🇹 🇯🇪 🇯🇲 🇯🇴 BackSpace"
- "🇭🇹 🇭🇺 🇮🇨 🇮🇩 🇮🇪 🇮🇱 🇮🇲"
- "country-flag-6-backwards 🇮🇳 🇮🇴 🇮🇶 🇮🇷 🇮🇸 country-flag-8"
- "preferences 🇮🇹 🇯🇪 🇯🇲 🇯🇴 🇯🇵 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-8:
- "🇯🇵 🇰🇪 🇰🇬 🇰🇭 🇰🇮 🇰🇲 🇰🇳"
- "country-flag-7-backwards 🇰🇵 🇰🇷 🇰🇼 🇰🇾 🇰🇿 country-flag-9"
- "preferences 🇱🇦 🇱🇧 🇱🇨 🇱🇮 🇱🇰 BackSpace"
- "🇰🇪 🇰🇬 🇰🇭 🇰🇮 🇰🇲 🇰🇳 🇰🇵"
- "country-flag-7-backwards 🇰🇷 🇰🇼 🇰🇾 🇰🇿 🇱🇦 country-flag-9"
- "preferences 🇱🇧 🇱🇨 🇱🇮 🇱🇰 🇱🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-9:
- "🇱🇷 🇱🇸 🇱🇹 🇱🇺 🇱🇻 🇱🇾 🇲🇦"
- "country-flag-8-backwards 🇲🇨 🇲🇩 🇲🇪 🇲🇫 🇲🇬 country-flag-10"
- "preferences 🇲🇭 🇲🇰 🇲🇱 🇲🇲 🇲🇳 BackSpace"
- "🇱🇸 🇱🇹 🇱🇺 🇱🇻 🇱🇾 🇲🇦 🇲🇨"
- "country-flag-8-backwards 🇲🇩 🇲🇪 🇲🇫 🇲🇬 🇲🇭 country-flag-10"
- "preferences 🇲🇰 🇲🇱 🇲🇲 🇲🇳 🇲🇴 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-10:
- "🇲🇴 🇲🇵 🇲🇶 🇲🇷 🇲🇸 🇲🇹 🇲🇺"
- "country-flag-9-backwards 🇲🇻 🇲🇼 🇲🇽 🇲🇾 🇲🇿 country-flag-11"
- "preferences 🇳🇦 🇳🇨 🇳🇪 🇳🇫 🇳🇬 BackSpace"
- "🇲🇵 🇲🇶 🇲🇷 🇲🇸 🇲🇹 🇲🇺 🇲🇻"
- "country-flag-9-backwards 🇲🇼 🇲🇽 🇲🇾 🇲🇿 🇳🇦 country-flag-11"
- "preferences 🇳🇨 🇳🇪 🇳🇫 🇳🇬 🇳🇮 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-11:
- "🇳🇮 🇳🇱 🇳🇴 🇳🇵 🇳🇷 🇳🇺 🇳🇿"
- "country-flag-10-backwards 🇴🇲 🇵🇦 🇵🇪 🇵🇫 🇵🇬 country-flag-12"
- "preferences 🇵🇭 🇵🇰 🇵🇱 🇵🇲 🇵🇳 BackSpace"
- "🇳🇱 🇳🇴 🇳🇵 🇳🇷 🇳🇺 🇳🇿 🇴🇲"
- "country-flag-10-backwards 🇵🇦 🇵🇪 🇵🇫 🇵🇬 🇵🇭 country-flag-12"
- "preferences 🇵🇰 🇵🇱 🇵🇲 🇵🇳 🇵🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-12:
- "🇵🇷 🇵🇸 🇵🇹 🇵🇼 🇵🇾 🇶🇦 🇷🇪"
- "country-flag-11-backwards 🇷🇴 🇷🇸 🇷🇺 🇷🇼 🇸🇦 country-flag-13"
- "preferences 🇸🇧 🇸🇨 🇸🇩 🇸🇪 🇸🇬 BackSpace"
- "🇵🇸 🇵🇹 🇵🇼 🇵🇾 🇶🇦 🇷🇪 🇷🇴"
- "country-flag-11-backwards 🇷🇸 🇷🇺 🇷🇼 🇸🇦 🇸🇧 country-flag-13"
- "preferences 🇸🇨 🇸🇩 🇸🇪 🇸🇬 🇸🇭 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-13:
- "🇸🇭 🇸🇮 🇸🇯 🇸🇰 🇸🇱 🇸🇲 🇸🇳"
- "country-flag-12-backwards 🇸🇴 🇸🇷 🇸🇸 🇸🇹 🇸🇻 country-flag-14"
- "preferences 🇸🇽 🇸🇾 🇸🇿 🇹🇦 🇹🇨 BackSpace"
- "🇸🇮 🇸🇯 🇸🇰 🇸🇱 🇸🇲 🇸🇳 🇸🇴"
- "country-flag-12-backwards 🇸🇷 🇸🇸 🇸🇹 🇸🇻 🇸🇽 country-flag-14"
- "preferences 🇸🇾 🇸🇿 🇹🇦 🇹🇨 🇹🇩 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-14:
- "🇹🇩 🇹🇫 🇹🇬 🇹🇭 🇹🇯 🇹🇰 🇹🇱"
- "country-flag-13-backwards 🇹🇲 🇹🇳 🇹🇴 🇹🇷 🇹🇹 country-flag-15"
- "preferences 🇹🇻 🇹🇼 🇹🇿 🇺🇦 🇺🇬 BackSpace"
- "🇹🇫 🇹🇬 🇹🇭 🇹🇯 🇹🇰 🇹🇱 🇹🇲"
- "country-flag-13-backwards 🇹🇳 🇹🇴 🇹🇷 🇹🇹 🇹🇻 country-flag-15"
- "preferences 🇹🇼 🇹🇿 🇺🇦 🇺🇬 🇺🇲 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-15:
- "🇺🇲 🇺🇳 🇺🇸 🇺🇾 🇺🇿 🇻🇦 🇻🇨"
- "country-flag-14-backwards 🇻🇪 🇻🇬 🇻🇮 🇻🇳 🇻🇺 country-flag-16"
- "preferences 🇼🇫 🇼🇸 🇽🇰 🇾🇪 🇾🇹 BackSpace"
- "🇺🇳 🇺🇸 🇺🇾 🇺🇿 🇻🇦 🇻🇨 🇻🇪"
- "country-flag-14-backwards 🇻🇬 🇻🇮 🇻🇳 🇻🇺 🇼🇫 country-flag-16"
- "preferences 🇼🇸 🇽🇰 🇾🇪 🇾🇹 🇿🇦 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-16:
- "🇿🇦 🇿🇲 🇿🇼 0 0 0 0"
- "🇿🇲 🇿🇼 0 0 0 0 0"
- "country-flag-15-backwards 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"

View File

@ -1,12 +1,12 @@
---
outlines:
default: { width: 78.628, height: 42 }
change-view: { width: 78.628, height: 42 }
change-view-2: { width: 55.039, height: 46 }
emoji-group: { width: 78.628, height: 42 }
placeholder: { width: 78.628, height: 42 }
placeholder-2: { width: 393.14, height: 42 }
special: { width: 78.628, height: 42 }
default: { width: 97.07, height: 52 }
placeholder: { width: 97.07, height: 52 }
special: { width: 97.07, height: 52 }
change-view: { width: 97.07, height: 52 }
change-view-2: { width: 67.95, height: 56 }
emoji-group: { width: 97.07, height: 52 }
placeholder-2: { width: 485.33, height: 52 }
views:
base:
@ -40,7 +40,7 @@ views:
- "preferences 🙂‍↔️ 🙂‍↕️ 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
face-sleepy:
- "😌 😔 😪 🤤 😴 🫩 0"
- "😌 😔 😪 🤤 😴 0 0"
- "0 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
@ -256,7 +256,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
person-symbol:
- "🗣 👤 👥 🫂 👪 🧑‍🧑‍🧒 🧑‍🧑‍🧒‍🧒"
- "🧑‍🧒 🧑‍🧒‍🧒 👣 🫆 0 0 0"
- "🧑‍🧒 🧑‍🧒‍🧒 👣 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
component:
@ -327,7 +327,7 @@ views:
plant-other:
- "🌱 🪴 🌲 🌳 🌴 🌵 🌾"
- "🌿 ☘ 🍀 🍁 🍂 🍃 🪹"
- "preferences 🪺 🍄 🪾 0 0 BackSpace"
- "preferences 🪺 🍄 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
food-and-drink:
- "🍒+ 🥕+ 🥐+ 🍱+ 🦐+ 🍰+ 🍵+"
@ -347,7 +347,7 @@ views:
food-vegetable:
- "🥑 🍆 🥔 🥕 🌽 🌶 🫑"
- "🥒 🥬 🥦 🧄 🧅 🥜 🫘"
- "preferences 🌰 🫚 🫛 🍄‍🟫 🫜 BackSpace"
- "preferences 🌰 🫚 🫛 🍄‍🟫 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
food-prepared:
- "🍞 🥐 🥖 🫓 🥨 🥯 🥞"
@ -556,7 +556,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
musical-instrument:
- "🎷 🪗 🎸 🎹 🎺 🎻 🪕"
- "🥁 🪘 🪇 🪈 🪉 0 0"
- "🥁 🪘 🪇 🪈 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
phone:
@ -616,7 +616,7 @@ views:
- "1 2 3 4 5 6 7 8 9 10"
tool-2:
- "🦯 🔗 ⛓️‍💥 ⛓ 🪝 🧰 🧲"
- "tool-backwards 🪜 🪏 0 0 0 0"
- "tool-backwards 🪜 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
science:
@ -715,7 +715,7 @@ views:
- "preferences ➿ 〽 ✳ ✴ ❇ BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
other-symbol-2:
- "© ® ™ 🫟 0 0 0"
- "© ® ™ 0 0 0 0"
- "other-symbol-backwards 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
@ -772,70 +772,70 @@ views:
country-flag-3:
- "🇧🇼 🇧🇾 🇧🇿 🇨🇦 🇨🇨 🇨🇩 🇨🇫"
- "country-flag-2-backwards 🇨🇬 🇨🇭 🇨🇮 🇨🇰 🇨🇱 country-flag-4"
- "preferences 🇨🇲 🇨🇳 🇨🇴 🇨🇵 🇨🇶 BackSpace"
- "preferences 🇨🇲 🇨🇳 🇨🇴 🇨🇵 🇨🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-4:
- "🇨🇷 🇨🇺 🇨🇻 🇨🇼 🇨🇽 🇨🇾 🇨🇿 "
- "country-flag-3-backwards 🇩🇪 🇩🇬 🇩🇯 🇩🇰 🇩🇲 country-flag-5"
- "preferences 🇩🇴 🇩🇿 🇪🇦 🇪🇨 🇪🇪 BackSpace"
- "🇨🇺 🇨🇻 🇨🇼 🇨🇽 🇨🇾 🇨🇿 🇩🇪"
- "country-flag-3-backwards 🇩🇬 🇩🇯 🇩🇰 🇩🇲 🇩🇴 country-flag-5"
- "preferences 🇩🇿 🇪🇦 🇪🇨 🇪🇪 🇪🇬 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-5:
- "🇪🇬 🇪🇭 🇪🇷 🇪🇸 🇪🇹 🇪🇺 🇫🇮"
- "country-flag-4-backwards 🇫🇯 🇫🇰 🇫🇲 🇫🇴 🇫🇷 country-flag-6"
- "preferences 🇬🇦 🇬🇧 🇬🇩 🇬🇪 🇬🇫 BackSpace"
- "🇪🇭 🇪🇷 🇪🇸 🇪🇹 🇪🇺 🇫🇮 🇫🇯"
- "country-flag-4-backwards 🇫🇰 🇫🇲 🇫🇴 🇫🇷 🇬🇦 country-flag-6"
- "preferences 🇬🇧 🇬🇩 🇬🇪 🇬🇫 🇬🇬 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-6:
- "🇬🇬 🇬🇭 🇬🇮 🇬🇱 🇬🇲 🇬🇳 🇬🇵"
- "country-flag-5-backwards 🇬🇶 🇬🇷 🇬🇸 🇬🇹 🇬🇺 country-flag-7"
- "preferences 🇬🇼 🇬🇾 🇭🇰 🇭🇲 🇭🇳 BackSpace"
- "🇬🇭 🇬🇮 🇬🇱 🇬🇲 🇬🇳 🇬🇵 🇬🇶"
- "country-flag-5-backwards 🇬🇷 🇬🇸 🇬🇹 🇬🇺 🇬🇼 country-flag-7"
- "preferences 🇬🇾 🇭🇰 🇭🇲 🇭🇳 🇭🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-7:
- "🇭🇷 🇭🇹 🇭🇺 🇮🇨 🇮🇩 🇮🇪 🇮🇱"
- "country-flag-6-backwards 🇮🇲 🇮🇳 🇮🇴 🇮🇶 🇮🇷 country-flag-8"
- "preferences 🇮🇸 🇮🇹 🇯🇪 🇯🇲 🇯🇴 BackSpace"
- "🇭🇹 🇭🇺 🇮🇨 🇮🇩 🇮🇪 🇮🇱 🇮🇲"
- "country-flag-6-backwards 🇮🇳 🇮🇴 🇮🇶 🇮🇷 🇮🇸 country-flag-8"
- "preferences 🇮🇹 🇯🇪 🇯🇲 🇯🇴 🇯🇵 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-8:
- "🇯🇵 🇰🇪 🇰🇬 🇰🇭 🇰🇮 🇰🇲 🇰🇳"
- "country-flag-7-backwards 🇰🇵 🇰🇷 🇰🇼 🇰🇾 🇰🇿 country-flag-9"
- "preferences 🇱🇦 🇱🇧 🇱🇨 🇱🇮 🇱🇰 BackSpace"
- "🇰🇪 🇰🇬 🇰🇭 🇰🇮 🇰🇲 🇰🇳 🇰🇵"
- "country-flag-7-backwards 🇰🇷 🇰🇼 🇰🇾 🇰🇿 🇱🇦 country-flag-9"
- "preferences 🇱🇧 🇱🇨 🇱🇮 🇱🇰 🇱🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-9:
- "🇱🇷 🇱🇸 🇱🇹 🇱🇺 🇱🇻 🇱🇾 🇲🇦"
- "country-flag-8-backwards 🇲🇨 🇲🇩 🇲🇪 🇲🇫 🇲🇬 country-flag-10"
- "preferences 🇲🇭 🇲🇰 🇲🇱 🇲🇲 🇲🇳 BackSpace"
- "🇱🇸 🇱🇹 🇱🇺 🇱🇻 🇱🇾 🇲🇦 🇲🇨"
- "country-flag-8-backwards 🇲🇩 🇲🇪 🇲🇫 🇲🇬 🇲🇭 country-flag-10"
- "preferences 🇲🇰 🇲🇱 🇲🇲 🇲🇳 🇲🇴 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-10:
- "🇲🇴 🇲🇵 🇲🇶 🇲🇷 🇲🇸 🇲🇹 🇲🇺"
- "country-flag-9-backwards 🇲🇻 🇲🇼 🇲🇽 🇲🇾 🇲🇿 country-flag-11"
- "preferences 🇳🇦 🇳🇨 🇳🇪 🇳🇫 🇳🇬 BackSpace"
- "🇲🇵 🇲🇶 🇲🇷 🇲🇸 🇲🇹 🇲🇺 🇲🇻"
- "country-flag-9-backwards 🇲🇼 🇲🇽 🇲🇾 🇲🇿 🇳🇦 country-flag-11"
- "preferences 🇳🇨 🇳🇪 🇳🇫 🇳🇬 🇳🇮 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-11:
- "🇳🇮 🇳🇱 🇳🇴 🇳🇵 🇳🇷 🇳🇺 🇳🇿"
- "country-flag-10-backwards 🇴🇲 🇵🇦 🇵🇪 🇵🇫 🇵🇬 country-flag-12"
- "preferences 🇵🇭 🇵🇰 🇵🇱 🇵🇲 🇵🇳 BackSpace"
- "🇳🇱 🇳🇴 🇳🇵 🇳🇷 🇳🇺 🇳🇿 🇴🇲"
- "country-flag-10-backwards 🇵🇦 🇵🇪 🇵🇫 🇵🇬 🇵🇭 country-flag-12"
- "preferences 🇵🇰 🇵🇱 🇵🇲 🇵🇳 🇵🇷 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-12:
- "🇵🇷 🇵🇸 🇵🇹 🇵🇼 🇵🇾 🇶🇦 🇷🇪"
- "country-flag-11-backwards 🇷🇴 🇷🇸 🇷🇺 🇷🇼 🇸🇦 country-flag-13"
- "preferences 🇸🇧 🇸🇨 🇸🇩 🇸🇪 🇸🇬 BackSpace"
- "🇵🇸 🇵🇹 🇵🇼 🇵🇾 🇶🇦 🇷🇪 🇷🇴"
- "country-flag-11-backwards 🇷🇸 🇷🇺 🇷🇼 🇸🇦 🇸🇧 country-flag-13"
- "preferences 🇸🇨 🇸🇩 🇸🇪 🇸🇬 🇸🇭 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-13:
- "🇸🇭 🇸🇮 🇸🇯 🇸🇰 🇸🇱 🇸🇲 🇸🇳"
- "country-flag-12-backwards 🇸🇴 🇸🇷 🇸🇸 🇸🇹 🇸🇻 country-flag-14"
- "preferences 🇸🇽 🇸🇾 🇸🇿 🇹🇦 🇹🇨 BackSpace"
- "🇸🇮 🇸🇯 🇸🇰 🇸🇱 🇸🇲 🇸🇳 🇸🇴"
- "country-flag-12-backwards 🇸🇷 🇸🇸 🇸🇹 🇸🇻 🇸🇽 country-flag-14"
- "preferences 🇸🇾 🇸🇿 🇹🇦 🇹🇨 🇹🇩 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-14:
- "🇹🇩 🇹🇫 🇹🇬 🇹🇭 🇹🇯 🇹🇰 🇹🇱"
- "country-flag-13-backwards 🇹🇲 🇹🇳 🇹🇴 🇹🇷 🇹🇹 country-flag-15"
- "preferences 🇹🇻 🇹🇼 🇹🇿 🇺🇦 🇺🇬 BackSpace"
- "🇹🇫 🇹🇬 🇹🇭 🇹🇯 🇹🇰 🇹🇱 🇹🇲"
- "country-flag-13-backwards 🇹🇳 🇹🇴 🇹🇷 🇹🇹 🇹🇻 country-flag-15"
- "preferences 🇹🇼 🇹🇿 🇺🇦 🇺🇬 🇺🇲 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-15:
- "🇺🇲 🇺🇳 🇺🇸 🇺🇾 🇺🇿 🇻🇦 🇻🇨"
- "country-flag-14-backwards 🇻🇪 🇻🇬 🇻🇮 🇻🇳 🇻🇺 country-flag-16"
- "preferences 🇼🇫 🇼🇸 🇽🇰 🇾🇪 🇾🇹 BackSpace"
- "🇺🇳 🇺🇸 🇺🇾 🇺🇿 🇻🇦 🇻🇨 🇻🇪"
- "country-flag-14-backwards 🇻🇬 🇻🇮 🇻🇳 🇻🇺 🇼🇫 country-flag-16"
- "preferences 🇼🇸 🇽🇰 🇾🇪 🇾🇹 🇿🇦 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"
country-flag-16:
- "🇿🇦 🇿🇲 🇿🇼 0 0 0 0"
- "🇿🇲 🇿🇼 0 0 0 0 0"
- "country-flag-15-backwards 0 0 0 0 0 0"
- "preferences 0 0 0 0 0 BackSpace"
- "1 2 3 4 5 6 7 8 9 10"

View File

@ -1,24 +1,26 @@
# Language: Esperanto
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
large: { width: 71.314, height: 52 }
placeholder: { width: 35.657, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 54, height: 52 }
wide: { width: 54, height: 52 }
change-view: { width: 54, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 88.75, height: 52 }
special: { width: 35.67, height: 52 }
placeholder: { width: 35.67, height: 52 }
large: { width: 71.34, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -37,7 +39,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,25 +1,27 @@
# Language: Esperanto
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
large: { width: 80.64, height: 42 }
placeholder: { width: 53.76, height: 42 }
spaceline: { width: 161.28, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
thin: { width: 40.32, height: 42 }
default: { width: 53.75, height: 42 }
thin: { width: 40, height: 42 }
altline: { width: 80.5, height: 42 }
wide: { width: 91.25, height: 42 }
change-view: { width: 80.5, height: 42 }
change-view-2: { width: 91.25, height: 42 }
spaceline: { width: 164, height: 42 }
special: { width: 52, height: 42 }
placeholder: { width: 53.75, height: 42 }
large: { width: 80, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_eschars preferences space !-thin ?-thin Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -38,7 +40,7 @@ views:
- "show_letters show_eschars preferences space „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +48,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +81,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,22 +1,24 @@
# Language: Catalan (Spain, with middle-dot L)
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 52.67, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 52.67, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 90, height: 52 }
special: { width: 35.67, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "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 Ç"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -35,7 +37,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -76,6 +78,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"

View File

@ -1,22 +1,24 @@
# Language: Catalan (Spain, with middle-dot L)
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 134.4, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 53.75, height: 42 }
altline: { width: 80, height: 42 }
wide: { width: 92, height: 42 }
change-view: { width: 80, height: 42 }
change-view-2: { width: 92, height: 42 }
spaceline: { width: 135, height: 42 }
special: { width: 53.75, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "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 Ç"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -35,7 +37,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -76,6 +78,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"

View File

@ -1,22 +1,23 @@
# Language: Spanish
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 52.67, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 52.67, height: 52 }
spaceline: { width: 90, height: 52 }
special: { width: 35.67, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ñ"
- "show_upper z x c v b n m BackSpace"
- "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 Ñ"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -35,7 +36,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +44,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -76,6 +77,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"

View File

@ -1,22 +1,23 @@
# Language: Spanish
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 134.4, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 53.75, height: 42 }
altline: { width: 80, height: 42 }
wide: { width: 92, height: 42 }
change-view: { width: 80, height: 42 }
spaceline: { width: 135, height: 42 }
special: { width: 53.75, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ñ"
- "show_upper z x c v b n m BackSpace"
- "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 Ñ"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -35,7 +36,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +44,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -76,6 +77,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"

View File

@ -1,39 +1,41 @@
# Language: Finnish
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
large: { width: 48.622, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.869, height: 52 }
special: { width: 48.622, height: 52 }
special-2: { width: 56.726, height: 52 }
default: { width: 32.4, height: 52 }
altline: { width: 48.39, height: 52 }
large: { width: 48.39, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 48.39, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 136.39, height: 52 }
special: { width: 48, height: 52 }
placeholder: { width: 32, height: 52 }
fill: { width: 64, height: 52 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ö ä"
- "show_upper z x c v b n m , BackSpace"
- "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 Ö Ä"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -74,9 +76,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,39 +1,39 @@
# Language: Finnish
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
change-view-2: { width: 85.526, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 268.796, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 85.526, height: 42 }
default: { width: 48.87, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 92.99, height: 42 }
change-view: { width: 73.5, height: 42 }
spaceline: { width: 273.5, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
fill: { width: 97.74, height: 42 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ö ä"
- "show_upper z x c v b n m , BackSpace"
- "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 Ö Ä"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -49,11 +49,6 @@ buttons:
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
set_view: "numbers"
outline: "change-view-2"
label: "123"
show_numbers_from_symbols:
action:
set_view: "numbers"
outline: "change-view"
@ -61,7 +56,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view-2"
outline: "change-view"
label: "ABC"
show_symbols:
action:
@ -72,9 +67,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,36 +1,36 @@
# Language: French (BEPO)
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 35.657, height: 52 }
change-view-2: { width: 53.485, height: 52 }
change-view-3: { width: 62.399, height: 52 }
placeholder: { width: 35.657, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 37.0, height: 52 }
wide: { width: 50, height: 52 }
change-view: { width: 37.0, height: 52 }
change-view-2: { width: 50, height: 52 }
spaceline: { width: 171, height: 52 }
special: { width: 35.33, height: 52 }
large: { width: 35.33, height: 52 }
placeholder: { width: 35.33, height: 52 }
views:
base:
- "b é p o w v d l j z"
- "a u i e c t s r n m"
- "show_upper y x k q g h f . BackSpace"
- "Shift_L y x k q g h f . BackSpace"
- "show_numbers preferences space show_eschars Return"
upper:
- "B É P O W V D L J Z"
- "A U I E C T S R N M"
- "show_upper Y X K Q G H F - BackSpace"
- "Shift_L Y X K Q G H F - BackSpace"
- "show_numbers preferences space show_eschars Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
- "@ # € % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? -- BackSpace"
- "show_symbols -- , \" ' : ; ! ? BackSpace"
- "show_letters preferences space show_eschars Return"
symbols:
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers_from_symbols \\ / < > = [ ] -- BackSpace"
- "show_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space show_eschars Return"
eschars:
- "à â ç é è ê î ô ù û"
@ -39,7 +39,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,17 +47,17 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
action: "show_prefs"
outline: "special-2"
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
set_view: "numbers"
outline: "change-view-3"
outline: "change-view-2"
label: "123"
show_numbers_from_symbols:
action:
@ -67,7 +67,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view-3"
outline: "change-view-2"
label: "ABC"
show_symbols:
action:
@ -85,9 +85,11 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:
outline: "large"
--:
outline: "placeholder"
text: ""

View File

@ -1,34 +1,35 @@
# Language: French (BEPO)
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 53.76, height: 42 }
change-view-2: { width: 80.64, height: 42 }
placeholder: { width: 53.76, height: 42 }
spaceline: { width: 241.92, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 54, height: 42 }
wide: { width: 80, height: 42 }
change-view: { width: 54, height: 42 }
change-view-2: { width: 80, height: 42 }
spaceline: { width: 246, height: 42 }
special: { width: 54, height: 42 }
placeholder: { width: 54, height: 42 }
views:
base:
- "b é p o w v d l j z"
- "a u i e c t s r n m"
- "show_upper y x k q g h f . BackSpace"
- "Shift_L y x k q g h f . BackSpace"
- "show_numbers preferences space show_eschars Return"
upper:
- "B É P O W V D L J Z"
- "A U I E C T S R N M"
- "show_upper Y X K Q G H F - BackSpace"
- "Shift_L Y X K Q G H F - BackSpace"
- "show_numbers preferences space show_eschars Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
- "@ # € % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? -- BackSpace"
- "show_symbols -- , \" ' : ; ! ? BackSpace"
- "show_letters preferences space show_eschars Return"
symbols:
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ $ ¥ ^ ° * { }"
- "show_numbers_from_symbols \\ / < > = [ ] -- BackSpace"
- "show_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space show_eschars Return"
eschars:
- "à â ç é è ê î ô ù û"
@ -37,7 +38,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -83,7 +84,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,23 +1,24 @@
# Language: French
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 53.485, height: 52 }
special-2: { width: 62.399, height: 52 }
default: { width: 35.33, height: 52 }
altline: { width: 52.67, height: 52 }
wide: { width: 59, height: 52 }
change-view: { width: 52.67, height: 52 }
change-view-2: { 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"
- "show_upper w x c v b n . BackSpace"
- "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"
- "show_upper W X C V B N , BackSpace"
- "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"
@ -36,7 +37,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -44,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -82,6 +83,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,22 +1,24 @@
# Language: French
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 241.92, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 100, height: 42 }
change-view: { width: 81, height: 42 }
change-view-2: { 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"
- "show_upper w x c v b n . BackSpace"
- "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"
- "show_upper W X C V B N , BackSpace"
- "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"
@ -35,7 +37,7 @@ views:
- "show_letters preferences space show_eschars Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -53,7 +55,7 @@ buttons:
show_numbers:
action:
set_view: "numbers"
outline: "change-view"
outline: "change-view-2"
label: "123"
show_numbers_from_symbols:
action:
@ -63,7 +65,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view"
outline: "change-view-2"
label: "ABC"
show_symbols:
action:
@ -81,6 +83,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,24 +1,25 @@
# Language: Georgian
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
large: { width: 53.485, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 53.485, height: 52 }
special-2: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 53, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 142, height: 52 }
special: { width: 44, height: 52 }
large: { width: 44, height: 52 }
views:
base:
- "ქ წ ე რ ტ უ ი ო პ"
- "ა ს დ ფ გ ჰ ჯ კ ლ"
- "show_upper ზ ხ ც ვ ბ ნ მ BackSpace"
- "Shift_L ზ ხ ც ვ ბ ნ მ BackSpace"
- "show_numbers preferences space . Return"
upper:
- "ქ ჭ ე ღ თ უ ი ო პ"
- "ა შ დ ფ გ ჰ ჟ კ ლ"
- "show_upper ძ ხ ჩ ვ ბ ნ მ BackSpace"
- "Shift_L ძ ხ ჩ ვ ბ ნ მ BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,7 +33,7 @@ views:
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -40,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -73,6 +74,6 @@ buttons:
.:
outline: "large"
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,24 +1,24 @@
# Language: Georgian
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
change-view-2: { width: 94.08, height: 42 }
spaceline: { width: 241.92, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
default: { width: 53.5, height: 42 }
altline: { width: 80.25, height: 42 }
wide: { width: 91.26, height: 42 }
change-view: { width: 80.25, height: 42 }
change-view-2: { width: 91.26, height: 42 }
spaceline: { width: 245, height: 42 }
special: { width: 53.5, height: 42 }
views:
base:
- "ქ წ ე რ ტ უ ი ო პ"
- "ა ს დ ფ გ ჰ ჯ კ ლ"
- "show_upper ზ ხ ც ვ ბ ნ მ BackSpace"
- "Shift_L ზ ხ ც ვ ბ ნ მ BackSpace"
- "show_numbers preferences space . Return"
upper:
- "ქ ჭ ე ღ თ უ ი ო პ"
- "ა შ დ ფ გ ჰ ჟ კ ლ"
- "show_upper ძ ხ ჩ ვ ბ ნ მ BackSpace"
- "Shift_L ძ ხ ჩ ვ ბ ნ მ BackSpace"
- "show_numbers preferences space . Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -32,7 +32,7 @@ views:
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -40,7 +40,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -71,7 +71,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -5,31 +5,31 @@
#
---
outlines:
default: { width: 34.336, height: 52 }
change-view: { width: 47.547, height: 52 }
change-view-2: { width: 68.672, height: 52 }
character-group: { width: 61.804, height: 52 }
fill: { width: 47.547, height: 52 }
large: { width: 47.547, height: 52 }
placeholder: { width: 34.336, height: 52 }
placeholder-2: { width: 61.804, height: 52 }
spaceline: { width: 124.133, height: 52 }
spaceline-2: { width: 192.805, height: 52 }
special: { width: 47.547, height: 52 }
special-2: { width: 47.547, height: 52 }
special-3: { width: 47.547, height: 52 }
subtle-highlight: { width: 34.336, height: 52 }
default: { width: 40, height: 60 }
subtle-highlight: { width: 40, height: 60 }
placeholder: { width: 40, height: 60 }
special: { width: 52.67, height: 60 }
fill: { width: 57.5, height: 60 }
altline: { width: 57.5, height: 60 }
large: { width: 57.5, height: 60 }
change-view: { width: 57.5, height: 60 }
wide: { width: 62, height: 60 }
change-view-2: { width: 81, height: 60 }
character-group: { width: 72, height: 60 }
placeholder-2: { width: 72, height: 60 }
spaceline: { width: 143, height: 60 }
spaceline-2: { width: 223, height: 60 }
views:
base:
- "; ς ε ρ τ υ θ ι ο π-fill"
- "α σ δ φ γ η ξ κ λ show_accents"
- "show_upper ζ χ ψ ω β ν μ BackSpace"
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
- "show_numbers preferences space . ,-subtle-highlight Return"
upper:
- ": € Ε Ρ Τ Υ Θ Ι Ο Π"
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accents"
- "show_upper Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "show_numbers preferences space ! ·-subtle-highlight Return"
accents:
- "show_psiliordasiaandvaria show_psiliordasiaandoxia show_psiliordasia show_bariaorperispomeni show_oxia ᾿"
@ -108,7 +108,7 @@ views:
- "show_letters preferences space . ,-subtle-highlight Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -116,7 +116,7 @@ buttons:
outline: "change-view-2"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -214,7 +214,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:

View File

@ -5,31 +5,31 @@
#
---
outlines:
default: { width: 51.968, height: 42 }
change-view: { width: 69.888, height: 42 }
change-view-2: { width: 103.936, height: 42 }
character-group: { width: 93.542, height: 42 }
fill: { width: 69.888, height: 42 }
large: { width: 69.888, height: 42 }
placeholder: { width: 51.968, height: 42 }
placeholder-2: { width: 93.542, height: 42 }
spaceline: { width: 199.808, height: 42 }
spaceline-2: { width: 303.744, height: 42 }
special: { width: 51.968, height: 42 }
special-2: { width: 69.888, height: 42 }
special-3: { width: 77.952, height: 42 }
subtle-highlight: { width: 51.968, height: 42 }
default: { width: 74, height: 60 }
special: { width: 74, height: 60 }
placeholder: { width: 74, height: 60 }
subtle-highlight: { width: 74, height: 60 }
fill: { width: 97.44, height: 60 }
altline: { width: 97.44, height: 60 }
large: { width: 97.44, height: 60 }
change-view: { width: 97.44, height: 60 }
wide: { width: 114.7, height: 60 }
character-group: { width: 133.2, height: 60 }
placeholder-2: { width: 133.2, height: 60 }
change-view-2: { width: 148, height: 60 }
spaceline: { width: 279, height: 60 }
spaceline-2: { width: 427, height: 60 }
views:
base:
- "; ς ε ρ τ υ θ ι ο π-fill"
- "α σ δ φ γ η ξ κ λ show_accents"
- "show_upper ζ χ ψ ω β ν μ BackSpace"
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
- "show_numbers preferences space . ,-subtle-highlight Return"
upper:
- ": € Ε Ρ Τ Υ Θ Ι Ο Π"
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accents"
- "show_upper Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "show_numbers preferences space ! ·-subtle-highlight Return"
accents:
- "show_psiliordasiaandvaria show_psiliordasiaandoxia show_psiliordasia show_bariaorperispomeni show_oxia ᾿"
@ -108,7 +108,7 @@ views:
- "show_letters preferences space . ,-subtle-highlight Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -116,7 +116,7 @@ buttons:
outline: "change-view-2"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -214,7 +214,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:

View File

@ -5,25 +5,25 @@
# Edited by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
---
outlines:
default: { width: 34.336, height: 52 }
change-view: { width: 47.547, height: 52 }
change-view-2: { width: 68.672, height: 52 }
fill: { width: 47.547, height: 52 }
spaceline: { width: 103.008, height: 52 }
special-2: { width: 47.547, height: 52 }
special-3: { width: 68.672, height: 52 }
subtle-highlight: { width: 34.336, height: 52 }
default: { width: 40, height: 60 }
subtle-highlight: { width: 40, height: 60 }
fill: { width: 52.67, height: 60 }
altline: { width: 52.67, height: 60 }
change-view: { width: 52.67, height: 60 }
wide: { width: 80, height: 60 }
change-view-2: { width: 80, height: 60 }
spaceline: { width: 120, height: 60 }
views:
base:
- "; ς ε ρ τ υ θ ι ο π-fill"
- "α σ δ φ γ η ξ κ λ show_accented"
- "show_upper ζ χ ψ ω β ν μ BackSpace"
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
- "show_numbers preferences space . ,-subtle-highlight Return"
upper:
- ": ! Ε Ρ Τ Υ Θ Ι Ο Π"
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
- "show_upper Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "show_numbers preferences space ·-subtle-highlight ᾿ Return"
accented:
- "ά έ ή ί ϊ ΐ ό ύ ϋ ώ"
@ -41,7 +41,7 @@ views:
- "show_numbers \\ / < > = [ ] BackSpace"
- "show_letters preferences space . ,-subtle-highlight Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -49,12 +49,12 @@ buttons:
outline: "change-view-2"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
action: "show_prefs"
outline: "special-2"
outline: "altline"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
@ -82,7 +82,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:

View File

@ -2,26 +2,26 @@
# Created by Sotiris Papadopoulos, sotirios.papadopoulos@inserm.fr
---
outlines:
default: { width: 51.768, height: 42 }
fill: { width: 77.652, height: 42 }
change-view: { width: 77.652, height: 42 }
change-view-2: { width: 103.536, height: 42 }
spaceline: { width: 181.188, height: 42 }
special: { width: 51.768, height: 42 }
special-2: { width: 77.652, height: 42 }
special-3: { width: 103.536, height: 42 }
subtle-highlight: { width: 51.768, height: 42 }
default: { width: 73, height: 60 }
special: { width: 73, height: 60 }
subtle-highlight: { width: 73, height: 60 }
fill: { width: 110, height: 60 }
altline: { width: 110, height: 60 }
change-view: { width: 110, height: 60 }
wide: { width: 146, height: 60 }
change-view-2: { width: 146, height: 60 }
spaceline: { width: 256, height: 60 }
views:
base:
- "; ς ε ρ τ υ θ ι ο π-fill"
- "α σ δ φ γ η ξ κ λ show_accented"
- "show_upper ζ χ ψ ω β ν μ BackSpace"
- "Shift_L ζ χ ψ ω β ν μ BackSpace"
- "show_numbers preferences space . ,-subtle-highlight Return"
upper:
- ": ! Ε Ρ Τ Υ Θ Ι Ο Π"
- "Α Σ Δ Φ Γ Η Ξ Κ Λ show_accented"
- "show_upper Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "Shift_L Ζ Χ Ψ Ω Β Ν Μ BackSpace"
- "show_numbers preferences space ·-subtle-highlight ᾿ Return"
accented:
- "ά έ ή ί ϊ ΐ ό ύ ϋ ώ"
@ -39,7 +39,7 @@ views:
- "show_numbers \\ / < > = [ ] BackSpace"
- "show_letters preferences space . ,-subtle-highlight Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +47,7 @@ buttons:
outline: "change-view-2"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -80,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:

View File

@ -2,25 +2,25 @@
# Based on work by: soyer <soyer@irl.hu>
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
placeholder: { width: 35.657, height: 52 }
placeholder-2: { width: 17.828, height: 52 }
spaceline: { width: 53.487, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53, height: 52 }
change-view: { width: 53, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 53.5, height: 52 }
special: { width: 35.67, height: 52 }
placeholder: { width: 35.67, height: 52 }
placeholder-2: { width: 17.83, height: 52 }
views:
base:
- "q w e r t z u i o p"
- "a s d f g h j k l"
- "show_upper y x c v b n m BackSpace"
- "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"
- "show_upper Y X C V B N M BackSpace"
- "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"
@ -39,7 +39,7 @@ views:
- "show_letters show_eschars preferences space , „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -80,7 +80,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -2,33 +2,33 @@
# Based on work by: soyer <soyer@irl.hu>
---
outlines:
default: { width: 44.8, height: 42 }
change-view: { width: 89.6, height: 42 }
change-view-2: { width: 67.2, height: 42 }
placeholder: { width: 44.8, height: 42 }
spaceline: { width: 112, height: 42 }
special: { width: 44.8, height: 42 }
special-2: { width: 89.6, height: 42 }
default: { width: 44.75, height: 42 }
altline: { width: 89.5, height: 42 }
change-view: { width: 89.5, height: 42 }
change-view-2: { width: 67.125, height: 42 }
spaceline: { width: 111.875, height: 42 }
special: { width: 44.75, height: 42 }
placeholder: { width: 44.75, height: 42 }
views:
base:
- "q w e r t z u i o p ő ú"
- "a s d f g h j k l é á ű"
- "show_upper í y x c v b n m BackSpace"
- "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 É Á Ű"
- "show_upper Í Y X C V B N M BackSpace"
- "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 ²"
- "-- @ # € % & - _ + ( ) ³"
- "-- 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:
@ -38,7 +38,7 @@ views:
- "show_letters show_eschars preferences space , „ “ Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -46,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -79,7 +79,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,11 +1,12 @@
# Language: Hebrew
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 71.314, height: 52 }
spaceline: { width: 106.971, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 71.314, height: 52 }
default: { width: 41, height: 60 }
altline: { width: 41, height: 60 }
wide: { width: 82, height: 60 }
change-view: { width: 82, height: 60 }
spaceline: { width: 122, height: 60 }
special: { width: 41, height: 60 }
views:
base:
@ -26,7 +27,7 @@ views:
buttons:
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -52,6 +53,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -1,11 +1,12 @@
# Language: Hebrew
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 107.52, height: 42 }
spaceline: { width: 161.28, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 107.52, height: 42 }
default: { width: 53.75, height: 42 }
altline: { width: 53.75, height: 42 }
wide: { width: 107, height: 42 }
change-view: { width: 107, height: 42 }
spaceline: { width: 162, height: 42 }
special: { width: 53.5, height: 42 }
views:
base:
@ -26,7 +27,7 @@ views:
buttons:
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -52,6 +53,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,41 +1,41 @@
# Language: Malayalam
---
outlines:
default: { width: 34.285, height: 52 }
change-view: { width: 68.57, height: 52 }
placeholder: { width: 34.285, height: 52 }
spaceline: { width: 274.28, height: 52 }
special: { width: 34.285, height: 52 }
special-2: { width: 68.57, height: 52 }
default: { width: 29.44, height: 44.5 }
altline: { width: 58.88, height: 44.5 }
change-view: { width: 58.88, height: 44.5 }
spaceline: { width: 235.52, height: 44.5 }
special: { width: 29.44, height: 44.5 }
placeholder: { width: 29.44, height: 44.5 }
views:
base:
- " ൊ ൧ ൨ ൩ ൪ ൫ ൬ ൮ ൯ - ൃ "
- " ൗ ൈ ാ ീ ൂ ബ ഹ ഗ ദ ജ ഡ zwj zwnj "
- " -- ോ േ ് ി ു പ ര ക ത ച ട zwsp "
- "show_upper മ ന വ ല സ യ -- BackSpace"
- "Shift_L മ ന വ ല സ യ -- BackSpace"
- "show_numbers preferences space Return"
upper:
- " ഒ ! @ # ₹ % ^ & ൾ ( ) ഃ ഋ "
- " ഔ ഐ ആ ഈ ഊ ഭ ങ ഘ ധ ഝ ഢ ഞ ർ "
- " -- ഓ ഏ അ ഇ ഉ ഫ റ ഖ ഥ ഛ -- "
- "show_upper എ ൺ ണ ൻ ഴ ള ശ ഷ ൽ BackSpace"
- "Shift_L എ ൺ ണ ൻ ഴ ള ശ ഷ ൽ BackSpace"
- "show_numbers preferences space Return"
numbers:
- " -- ൧ ൨ ൩ ൪ ൫ ൬ ൮ ൯ -- -- "
- "-- 1 2 3 4 5 6 7 8 9 0 ² --"
- "-- @ # $ % & - _ + ( ) ³ --"
- "-- 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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -69,7 +69,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,41 +1,41 @@
# Language: Malayalam
---
outlines:
default: { width: 51.692, height: 42 }
change-view: { width: 103.384, height: 42 }
placeholder: { width: 51.692, height: 42 }
spaceline: { width: 413.536, height: 42 }
special: { width: 51.692, height: 42 }
special-2: { width: 103.384, height: 42 }
default: { width: 45.11, height: 36.65 }
altline: { width: 90.22, height: 36.65 }
change-view: { width: 90.22, height: 36.65 }
spaceline: { width: 360.88, height: 36.65 }
special: { width: 45.11, height: 36.65 }
placeholder: { width: 45.11, height: 36.65 }
views:
base:
- " ൊ ൧ ൨ ൩ ൪ ൫ ൬ ൮ ൯ - ൃ "
- " ൗ ൈ ാ ീ ൂ ബ ഹ ഗ ദ ജ ഡ zwj zwnj "
- " -- ോ േ ് ി ു പ ര ക ത ച ട zwsp "
- "show_upper മ ന വ ല സ യ -- BackSpace"
- "Shift_L മ ന വ ല സ യ -- BackSpace"
- "show_numbers preferences space Return"
upper:
- " ഒ ! @ # ₹ % ^ & ൾ ( ) ഃ ഋ "
- " ഔ ഐ ആ ഈ ഊ ഭ ങ ഘ ധ ഝ ഢ ഞ ർ "
- " -- ഓ ഏ അ ഇ ഉ ഫ റ ഖ ഥ ഛ -- "
- "show_upper എ ൺ ണ ൻ ഴ ള ശ ഷ ൽ BackSpace"
- "Shift_L എ ൺ ണ ൻ ഴ ള ശ ഷ ൽ BackSpace"
- "show_numbers preferences space Return"
numbers:
- " -- ൧ ൨ ൩ ൪ ൫ ൬ ൮ ൯ -- -- "
- "-- 1 2 3 4 5 6 7 8 9 0 ² --"
- "-- @ # $ % & - _ + ( ) ³ --"
- "-- 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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -69,7 +69,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -1,25 +1,25 @@
# Language: Azerbaijani (Iran)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 64.83, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 129.66, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 64.83, height: 52 }
default: { width: 32.75, height: 52 }
altline: { width: 48.99, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 48.99, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 135, height: 52 }
special: { width: 35.66, height: 52 }
placeholder: { width: 32.75, height: 52 }
views:
base:
- "ض ص ث ق ف غ ع ه خ ح ج"
- "ش س ی ب ل ا ت ن م ک گ"
- "show_upper ظ ط ز ر ذ د پ و BackSpace"
- "Shift_L ظ ط ز ر ذ د پ و BackSpace"
- "show_numbers preferences space zwnj . Return"
upper:
- " ْ ٌ ٍ ً ُ ِ َ ّ # @ چ"
- "_ ئ ي إ أ آ ة » « : ؛"
- "show_upper ك ٓ ژ ٔ ء > < ؟ BackSpace"
- "Shift_L ك ٓ ژ ٔ ء > < ؟ BackSpace"
- "show_numbers preferences space ، ! Return"
numbers:
- "۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ |"
@ -33,7 +33,7 @@ views:
- "show_letters preferences space ، . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -72,7 +72,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
zwnj:

View File

@ -1,26 +1,26 @@
# Language: Azerbaijani (Iran)
---
outlines:
default: { width: 44.8, height: 42 }
change-view: { width: 67.2, height: 42 }
change-view-2: { width: 78.4, height: 42 }
fill: { width: 89.6, height: 42 }
placeholder: { width: 44.8, height: 42 }
spaceline: { width: 201.6, height: 42 }
special: { width: 44.8, height: 42 }
special-2: { width: 67.2, height: 42 }
special-3: { width: 78.4, height: 42 }
default: { width: 44.75, height: 42 }
altline: { width: 67.25, height: 42 }
wide: { width: 80, height: 42 }
change-view: { width: 67.25, height: 42 }
change-view-2: { width: 80, height: 42 }
spaceline: { width: 198, height: 42 }
special: { width: 44.75, height: 42 }
placeholder: { width: 44.75, height: 42 }
fill: { width: 89.5, height: 42 }
views:
base:
- "ض ص ث ق ف غ ع ه خ ح ج چ"
- "ش س ی ب ل ا ت ن م ک گ /"
- "show_upper ظ ط ز ر ذ د پ و ، BackSpace"
- "Shift_L ظ ط ز ر ذ د پ و ، BackSpace"
- "show_numbers preferences space zwnj ؟ . Return"
upper:
- " ْ ٌ ٍ ً ُ ِ َ ّ ] [ @ #"
- "ؤ ئ ي إ أ آ ة » « : ؛ \\"
- "show_upper ك ٓ ژ ٰ ٔ ء > < BackSpace"
- "Shift_L ك ٓ ژ ٰ ٔ ء > < BackSpace"
- "show_numbers preferences space ، ؟ ! Return"
numbers:
- "-- ۱ ۲ ۳ ۴ ۵ ۶ ۷ ۸ ۹ ۰ |"
@ -34,7 +34,7 @@ views:
- "show_letters preferences space ، ! . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -42,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -73,7 +73,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
zwnj:

View File

@ -3,24 +3,25 @@
# 14 october 2020
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 52.75, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 52.75, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 91.08, height: 52 }
special: { width: 35.67, height: 52 }
placeholder: { width: 35.67, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -39,7 +40,7 @@ views:
- "show_letters show_eschars preferences space ᶠ . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +48,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -80,6 +81,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -3,22 +3,25 @@
# 14 october 2020
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 134.4, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 53.5, height: 42 }
altline: { width: 80.25, height: 42 }
wide: { width: 91.26, height: 42 }
change-view: { width: 80.25, height: 42 }
change-view-2: { width: 91.26, height: 42 }
spaceline: { width: 134, height: 42 }
special: { width: 53.5, height: 42 }
placeholder: { width: 53.5, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -37,7 +40,7 @@ views:
- "show_letters show_eschars preferences space ᶠ . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +48,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,6 +81,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -3,24 +3,25 @@
# 03 october 2019
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 52.75, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 52.75, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 91.08, height: 52 }
special: { width: 35.67, height: 52 }
placeholder: { width: 35.67, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -39,7 +40,7 @@ views:
- "show_letters show_eschars preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +48,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -80,6 +81,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -3,22 +3,25 @@
# 03 october 2019
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 134.4, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
default: { width: 53.5, height: 42 }
altline: { width: 80.25, height: 42 }
wide: { width: 91.26, height: 42 }
change-view: { width: 80.25, height: 42 }
change-view-2: { width: 91.26, height: 42 }
spaceline: { width: 134, height: 42 }
special: { width: 53.5, height: 42 }
placeholder: { width: 53.5, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -37,7 +40,7 @@ views:
- "show_letters show_eschars preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +48,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,6 +81,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "altline"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -2,11 +2,12 @@
# Based on work by: Mark Müller <markmueller86@gmail.com>
---
outlines:
default: { width: 71.314, height: 52 }
change-view: { width: 71.314, height: 52 }
character-group: { width: 71.314, height: 52 }
placeholder: { width: 71.314, height: 52 }
special: { width: 71.314, height: 52 }
default: { width: 71.33, height: 52 }
wide: { width: 71.33, height: 52 }
character-group: { width: 71.33, height: 52 }
change-view: { width: 71.33, height: 52 }
special: { width: 71.33, height: 52 }
placeholder: { width: 71.33, height: 52 }
views:
base: # hiragana
@ -229,19 +230,19 @@ views:
buttons:
# following 4 buttons use the corresponding xkb name as keysym
BackSpace:
outline: "special"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
Return:
outline: "special"
outline: "wide"
icon: "key-enter"
keysym: "Return"
Left:
outline: "special"
outline: "wide"
label: "←"
keysym: "Left"
Right:
outline: "special"
outline: "wide"
label: "→"
keysym: "Right"
# special button "preferences" is handled in the code

View File

@ -3,10 +3,11 @@
---
outlines:
default: { width: 84, height: 42 }
change-view: { width: 84, height: 42 }
wide: { width: 84, height: 42 }
character-group: { width: 84, height: 42 }
placeholder: { width: 84, height: 42 }
change-view: { width: 84, height: 42 }
special: { width: 84, height: 42 }
placeholder: { width: 84, height: 42 }
views:
base: # hiragana
@ -229,19 +230,19 @@ views:
buttons:
# following 4 buttons use the corresponding xkb name as keysym
BackSpace:
outline: "special"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
Return:
outline: "special"
outline: "wide"
icon: "key-enter"
keysym: "Return"
Left:
outline: "special"
outline: "wide"
label: "←"
keysym: "Left"
Right:
outline: "special"
outline: "wide"
label: "→"
keysym: "Right"
# special button "preferences" is handled in the code

View File

@ -1,18 +1,19 @@
# Language: Japanese
---
outlines:
default: { width: 37.142, height: 52 }
default-2: { width: 44.570, height: 52 }
change-view: { width: 34.284, height: 52 }
change-view-2: { width: 66.855, height: 52 }
change-view-3: { width: 74.284, height: 52 }
placeholder: { width: 44.570, height: 52 }
placeholder-2: { width: 74.284, height: 52 }
spaceline: { width: 74.284, height: 52 }
special: { width: 34.284, height: 52 }
special-2: { width: 37.142, height: 52 }
special-3: { width: 66.855, height: 52 }
thin: { width: 34.284, height: 52 }
default: { width: 40, height: 56 }
default-2: { width: 48, height: 56 }
thin: { width: 36.92, height: 56 }
change-view: { width: 36.92, height: 56 }
change-view-2: { width: 72, height: 56 }
change-view-3: { width: 80, height: 56 }
spaceline: { width: 80, height: 56 }
special: { width: 36.92, height: 56 }
special-2: { width: 40, height: 56 }
special-3: { width: 72, height: 56 }
placeholder: { width: 48, height: 56 }
placeholder-2: { width: 80, height: 56 }
views:
base:
@ -52,52 +53,52 @@ views:
- "show_katakana_halfwidth_upper ッ サ ソ ヒ コ ミ モ 、 。 ・ ー BackSpace"
- "show_numbers show_romaji preferences space katakana_halfwidth_width_toggle_full show_hiragana Return"
numbers:
- " … -- -- -- -- -- -- -- ² ³"
- " … -- -- -- -- -- -- -- -- --"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # ¥ % & - _ + ( )"
- "show_symbols ; \" ' : = < > BackSpace-wide"
- "show_symbols ; \" ' : = < > BackSpace-special-3"
- "show_hiragana show_romaji preferences space numbers_width_toggle_full , . Return"
numbers_fullwidth:
- " -- -- -- -- -- -- -- -- --"
- " "
- " _ "
- "show_symbols_fullwidth BackSpace-wide"
- "show_symbols_fullwidth BackSpace-special-3"
- "show_hiragana show_romaji_fullwidth preferences fullwidth-space numbers_fullwidth_width_toggle_half Return"
symbols:
- "ヽ ♪ -- -- -- -- -- ヿ 【 】"
- "~ ` ´ | · √ µ ÷ × ¶"
- "© ® £ $ € ^ ° * { }"
- "show_numbers_from_symbols \\ / § π τ [ ] BackSpace-wide"
- "show_numbers_from_symbols \\ / § π τ [ ] BackSpace-special-3"
- "show_hiragana show_romaji preferences space symbols_width_toggle_full ! ? Return"
symbols_fullwidth:
- " ̄ ¦ -- -- -- -- -- ¬ ⦅ ⦆"
- " -- -- -- -- -- -- --"
- "-- -- £ -- -- "
- "show_numbers_fullwidth_from_symbols -- -- -- BackSpace-wide"
- "show_numbers_fullwidth_from_symbols -- -- -- BackSpace-special-3"
- "show_hiragana show_romaji_fullwidth preferences fullwidth-space symbols_fullwidth_width_toggle_half Return"
romaji:
- "1 2 3 4 5 6 7 8 9 0"
- "q w e r t y u i o p"
- "a s d f g h j k l --"
- "show_romaji_upper z x c v b n m BackSpace-wide"
- "show_romaji_upper z x c v b n m BackSpace-special-3"
- "show_numbers show_hiragana preferences space romaji_width_toggle_full , . Return"
romaji_upper:
- "1 2 3 4 5 6 7 8 9 0"
- "Q W E R T Y U I O P"
- "A S D F G H J K L --"
- "show_romaji_upper Z X C V B N M BackSpace-wide"
- "show_romaji_upper Z X C V B N M BackSpace-special-3"
- "show_numbers show_hiragana preferences space romaji_width_toggle_full ! ? Return"
romaji_fullwidth:
- " "
- " "
- " --"
- "show_romaji_fullwidth_upper BackSpace-wide"
- "show_romaji_fullwidth_upper BackSpace-special-3"
- "show_numbers_fullwidth show_hiragana preferences fullwidth-space romaji_fullwidth_width_toggle_half Return"
romaji_fullwidth_upper:
- " "
- " "
- " --"
- "show_romaji_fullwidth_upper BackSpace-wide"
- "show_romaji_fullwidth_upper BackSpace-special-3"
- "show_numbers_fullwidth show_hiragana preferences fullwidth-space romaji_fullwidth_width_toggle_half Return"
@ -121,7 +122,7 @@ buttons:
outline: "special"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
BackSpace-special-3:
outline: "special-3"
icon: "edit-clear-symbolic"
action: "erase"
@ -386,10 +387,6 @@ buttons:
outline: "default-2"
0:
outline: "default-2"
²:
outline: "default-2"
³:
outline: "default-2"
"@":
outline: "default-2"
"#":

View File

@ -1,18 +1,19 @@
# Language: Japanese
---
outlines:
default: { width: 56, height: 42 }
default-2: { width: 67.2, height: 42 }
change-view: { width: 51.692, height: 42 }
change-view-2: { width: 100.8, height: 42 }
change-view-3: { width: 112, height: 42 }
placeholder: { width: 67.2, height: 42 }
placeholder-2: { width: 112, height: 42 }
spaceline: { width: 112, height: 42 }
special: { width: 51.692, height: 42 }
special-2: { width: 56, height: 42 }
special-3: { width: 100.8, height: 42 }
thin: { width: 51.692, height: 42 }
default: { width: 40, height: 30 }
default-2: { width: 48, height: 30 }
thin: { width: 36.92, height: 30 }
change-view: { width: 36.92, height: 30 }
change-view-2: { width: 72, height: 30 }
change-view-3: { width: 80, height: 30 }
spaceline: { width: 80, height: 30 }
special: { width: 36.92, height: 30 }
special-2: { width: 40, height: 30 }
special-3: { width: 72, height: 30 }
placeholder: { width: 48, height: 30 }
placeholder-2: { width: 80, height: 30 }
views:
base:
@ -52,52 +53,52 @@ views:
- "show_katakana_halfwidth_upper ッ サ ソ ヒ コ ミ モ 、 。 ・ ー BackSpace"
- "show_numbers show_romaji preferences space katakana_halfwidth_width_toggle_full show_hiragana Return"
numbers:
- " … -- -- -- -- -- -- -- ² ³"
- " … -- -- -- -- -- -- -- -- --"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # ¥ % & - _ + ( )"
- "show_symbols ; \" ' : = < > BackSpace-wide"
- "show_symbols ; \" ' : = < > BackSpace-special-3"
- "show_hiragana show_romaji preferences space numbers_width_toggle_full , . Return"
numbers_fullwidth:
- " -- -- -- -- -- -- -- -- --"
- " "
- " _ "
- "show_symbols_fullwidth BackSpace-wide"
- "show_symbols_fullwidth BackSpace-special-3"
- "show_hiragana show_romaji_fullwidth preferences fullwidth-space numbers_fullwidth_width_toggle_half Return"
symbols:
- "ヽ ♪ -- -- -- -- -- ヿ 【 】"
- "~ ` ´ | · √ µ ÷ × ¶"
- "© ® £ $ € ^ ° * { }"
- "show_numbers_from_symbols \\ / § π τ [ ] BackSpace-wide"
- "show_numbers_from_symbols \\ / § π τ [ ] BackSpace-special-3"
- "show_hiragana show_romaji preferences space symbols_width_toggle_full ! ? Return"
symbols_fullwidth:
- " ̄ ¦ -- -- -- -- -- ¬ ⦅ ⦆"
- " -- -- -- -- -- -- --"
- "-- -- £ -- -- "
- "show_numbers_fullwidth_from_symbols -- -- -- BackSpace-wide"
- "show_numbers_fullwidth_from_symbols -- -- -- BackSpace-special-3"
- "show_hiragana show_romaji_fullwidth preferences fullwidth-space symbols_fullwidth_width_toggle_half Return"
romaji:
- "1 2 3 4 5 6 7 8 9 0"
- "q w e r t y u i o p"
- "a s d f g h j k l --"
- "show_romaji_upper z x c v b n m BackSpace-wide"
- "show_romaji_upper z x c v b n m BackSpace-special-3"
- "show_numbers show_hiragana preferences space romaji_width_toggle_full , . Return"
romaji_upper:
- "1 2 3 4 5 6 7 8 9 0"
- "Q W E R T Y U I O P"
- "A S D F G H J K L --"
- "show_romaji_upper Z X C V B N M BackSpace-wide"
- "show_romaji_upper Z X C V B N M BackSpace-special-3"
- "show_numbers show_hiragana preferences space romaji_width_toggle_full ! ? Return"
romaji_fullwidth:
- " "
- " "
- " --"
- "show_romaji_fullwidth_upper BackSpace-wide"
- "show_romaji_fullwidth_upper BackSpace-special-3"
- "show_numbers_fullwidth show_hiragana preferences fullwidth-space romaji_fullwidth_width_toggle_half Return"
romaji_fullwidth_upper:
- " "
- " "
- " --"
- "show_romaji_fullwidth_upper BackSpace-wide"
- "show_romaji_fullwidth_upper BackSpace-special-3"
- "show_numbers_fullwidth show_hiragana preferences fullwidth-space romaji_fullwidth_width_toggle_half Return"
@ -121,7 +122,7 @@ buttons:
outline: "special"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
BackSpace-special-3:
outline: "special-3"
icon: "edit-clear-symbolic"
action: "erase"
@ -386,10 +387,6 @@ buttons:
outline: "default-2"
0:
outline: "default-2"
²:
outline: "default-2"
³:
outline: "default-2"
"@":
outline: "default-2"
"#":

View File

@ -1,39 +1,41 @@
# Language: Norwegian
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 64.83, height: 52 }
large: { width: 48.622, height: 52 }
default: { width: 32.4, height: 52 }
altline: { width: 48.39, height: 52 }
large: { width: 48.39, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 48.39, height: 52 }
change-view-2: { width: 62, height: 52 }
spaceline: { width: 136.39, height: 52 }
special: { width: 48, height: 52 }
placeholder: { width: 32, height: 52 }
spaceline: { width: 129.661, height: 52 }
special: { width: 48.622, height: 52 }
special-2: { width: 64.83, height: 52 }
fill: { width: 64, height: 52 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ø æ"
- "show_upper z x c v b n m , BackSpace"
- "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 Ø Æ"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers_from_symbols -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +43,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -74,9 +76,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,39 +1,39 @@
# Language: Norwegian
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
change-view-2: { width: 85.526, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 268.796, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 85.526, height: 42 }
default: { width: 48.87, height: 42 }
altline: { width: 73.5, height: 42 }
wide: { width: 92.99, height: 42 }
change-view: { width: 73.5, height: 42 }
spaceline: { width: 273.5, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
fill: { width: 97.74, height: 42 }
views:
base:
- "q w e r t y u i o p å"
- "a s d f g h j k l ø æ"
- "show_upper z x c v b n m , BackSpace"
- "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 Ø Æ"
- "show_upper Z X C V B N M , BackSpace"
- "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"
- "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_numbers -- \\ / < > = [ ] BackSpace"
- "show_letters preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -49,11 +49,6 @@ buttons:
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
set_view: "numbers"
outline: "change-view-2"
label: "123"
show_numbers_from_symbols:
action:
set_view: "numbers"
outline: "change-view"
@ -61,7 +56,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view-2"
outline: "change-view"
label: "ABC"
show_symbols:
action:
@ -72,9 +67,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,26 +1,26 @@
---
outlines:
default: { width: 71.314, height: 52 }
spaceline: { width: 142.628, height: 52 }
special: { width: 71.314, height: 52 }
default: { width: 37.46, height: 52 }
altline: { width: 48.39, height: 52 }
wide: { width: 88.98, height: 52 }
spaceline: { width: 120.58, height: 52 }
views:
base:
- "( 1 2 3 )"
- "# 4 5 6 +"
- "* 7 8 9 -"
- "1 2 3 ( )"
- "4 5 6 # *"
- "7 8 9 + -"
- "BackSpace 0 space Return"
buttons:
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
space:
outline: "spaceline"
text: " "
label: "␣"
Return:
outline: "special"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,26 +1,26 @@
---
outlines:
default: { width: 73.5, height: 42 }
spaceline: { width: 147, height: 42 }
special: { width: 73.5, height: 42 }
default: { width: 37.46, height: 42 }
altline: { width: 48.39, height: 42 }
wide: { width: 88.98, height: 42 }
spaceline: { width: 120.58, height: 42 }
views:
base:
- "( 1 2 3 )"
- "# 4 5 6 +"
- "* 7 8 9 -"
- "1 2 3 ( )"
- "4 5 6 # *"
- "7 8 9 + -"
- "BackSpace 0 space Return"
buttons:
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
space:
outline: "spaceline"
text: " "
label: "␣"
Return:
outline: "special"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,8 +1,7 @@
---
margins: { top: 4, side: 0, bottom: 4 }
outlines:
default: { width: 123.428, height: 52 }
special: { width: 123.428, height: 52 }
default: { width: 120, height: 52 }
views:
base:
@ -13,10 +12,9 @@ views:
buttons:
BackSpace:
outline: "special"
icon: "edit-clear-symbolic"
action: "erase"
Return:
outline: "special"
icon: "key-enter"
keysym: "Return"

View File

@ -1,8 +1,7 @@
---
margins: { top: 4, side: 0, bottom: 4 }
outlines:
default: { width: 123.428, height: 52 }
special: { width: 123.428, height: 52 }
default: { width: 120, height: 52 }
views:
base:
@ -13,10 +12,9 @@ views:
buttons:
BackSpace:
outline: "special"
icon: "edit-clear-symbolic"
action: "erase"
Return:
outline: "special"
icon: "key-enter"
keysym: "Return"

View File

@ -1,24 +1,26 @@
# Language: Polish
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
change-view-2: { width: 62.399, height: 52 }
large: { width: 53.485, height: 52 }
spaceline: { width: 124.802, height: 52 }
special: { width: 53.485, height: 52 }
special-2: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 52.67, height: 52 }
large: { width: 52.67, height: 52 }
wide: { width: 59, height: 52 }
change-view: { width: 52.67, height: 52 }
change-view-2: { width: 59, height: 52 }
spaceline: { width: 141, height: 52 }
special: { width: 44, height: 52 }
placeholder: { width: 35.67, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -33,23 +35,23 @@ views:
accents:
- "q w ę r t y u i ó p"
- "ą ś d f g h j k ł"
- "show_upper_accents_from_accents ż ź ć v b ń m BackSpace"
- "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 Ł"
- "show_upper_accents_from_accents Ż Ź Ć V B Ń M BackSpace"
- "accents_show_upper Ż Ź Ć V B Ń M BackSpace"
- "show_numbers preferences space show_upper_accents Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
unlock_view: "base"
outline: "change-view"
icon: "key-shift"
show_upper_accents_from_accents:
accents_show_upper:
action:
locking:
lock_view: "upper_accents"
@ -59,7 +61,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
keysym: "BackSpace"
preferences:
@ -109,6 +111,9 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""

View File

@ -1,26 +1,26 @@
# Language: Polish
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
change-view-2: { width: 94.08, height: 42 }
large: { width: 80.64, height: 42 }
placeholder: { width: 53.76, height: 42 }
spaceline: { width: 215.04, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
large: { width: 81, height: 42 }
wide: { width: 100, height: 42 }
change-view: { width: 81, height: 42 }
change-view-2: { width: 100, height: 42 }
spaceline: { width: 206, height: 42 }
special: { width: 54, height: 42 }
placeholder: { 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"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -44,7 +44,7 @@ views:
- "show_numbers preferences space show_upper_accents Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -61,7 +61,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
keysym: "BackSpace"
preferences:
@ -111,7 +111,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:

View File

@ -2,23 +2,24 @@
# This layout-file is a copy of "br.yaml"
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
large: { width: 71.314, height: 52 }
spaceline: { width: 89.144, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53, height: 52 }
wide: { width: 53, height: 52 }
change-view: { width: 53, height: 52 }
spaceline: { width: 90, height: 52 }
special: { width: 35.67, height: 52 }
large: { width: 71.34, height: 52 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L Ç"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ,-large Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -37,7 +38,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +46,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -84,6 +85,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -2,25 +2,25 @@
# This layout-file is a copy of "br_wide.yaml"
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
large: { width: 80.64, height: 42 }
spaceline: { width: 147.84, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 94.08, height: 42 }
thin: { width: 40.32, height: 42 }
default: { width: 53.75, height: 42 }
thin: { width: 40.5, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 92, height: 42 }
change-view: { width: 81, height: 42 }
spaceline: { width: 149.5, height: 42 }
special: { width: 53.75, height: 42 }
large: { width: 81, height: 42 }
views:
base:
- "q w e r t y u i o p"
- "a s d f g h j k l ç"
- "show_upper z x c v b n m BackSpace"
- "Shift_L z x c v b n m BackSpace"
- "show_numbers show_eschars preferences space .-large Return"
upper:
- "Q W E R T Y U I O P"
- "A S D F G H J K L Ç"
- "show_upper Z X C V B N M BackSpace"
- "Shift_L Z X C V B N M BackSpace"
- "show_numbers show_eschars preferences space ,-large Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0"
@ -39,7 +39,7 @@ views:
- "show_letters show_eschars preferences space « » Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -47,7 +47,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -86,7 +86,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
«:

View File

@ -1,24 +1,24 @@
# Language: Romanian
---
outlines:
default: { width: 35.657, height: 52 }
change-view: { width: 53.485, height: 52 }
large: { width: 44.571, height: 52 }
spaceline: { width: 106.973, height: 52 }
special: { width: 35.657, height: 52 }
special-2: { width: 53.485, height: 52 }
special-3: { width: 62.399, height: 52 }
default: { width: 35.67, height: 52 }
altline: { width: 53.5, height: 52 }
wide: { width: 62, height: 52 }
change-view: { width: 53.5, height: 52 }
spaceline: { width: 107.67, height: 52 }
special: { width: 35.67, height: 52 }
large: { 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"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -37,7 +37,7 @@ views:
- "show_letters show_eschars preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -45,7 +45,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -78,7 +78,7 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
.:

View File

@ -1,23 +1,23 @@
# Language: Romanian
---
outlines:
default: { width: 53.76, height: 42 }
change-view: { width: 80.64, height: 42 }
spaceline: { width: 188.16, height: 42 }
special: { width: 53.76, height: 42 }
special-2: { width: 80.64, height: 42 }
special-3: { width: 80.64, height: 42 }
default: { width: 54, height: 42 }
altline: { width: 81, height: 42 }
wide: { width: 81, height: 42 }
change-view: { width: 81, height: 42 }
spaceline: { width: 189.25, 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"
- "show_upper z x c v b n m BackSpace"
- "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"
- "show_upper Z X C V B N M BackSpace"
- "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"
@ -36,7 +36,7 @@ views:
- "show_letters show_eschars preferences space . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -44,7 +44,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -77,6 +77,6 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"

View File

@ -1,40 +1,40 @@
# Language: Serbian (Latin)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 32.415, height: 52 }
change-view-2: { width: 48.622, height: 52 }
change-view-3: { width: 56.726, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.868, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 32.42, height: 52 }
fill: { width: 64.84, height: 52 }
altline: { width: 32.42, height: 52 }
wide: { width: 48.63, height: 52 }
change-view: { width: 32.42, height: 52 }
change-view-2: { width: 48.63, height: 52 }
spaceline: { width: 162.1, height: 52 }
special: { width: 32.42, height: 52 }
placeholder: { width: 32.42, height: 52 }
views:
base:
- "q w e r t z u i o p š"
- "a s d f g h j k l č ć"
- "show_upper y x c v b n m đ ž BackSpace"
- "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 Č Ć"
- "show_upper Y X C V B N M Đ Ž BackSpace"
- "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 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? -- BackSpace-wide"
- "show_letters preferences space , . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "show_numbers_from_symbols \\ / < > = [ ] -- BackSpace-wide"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] -- BackSpace-wide"
- "show_letters preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -42,11 +42,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-2"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -54,11 +54,6 @@ buttons:
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
set_view: "numbers"
outline: "change-view-3"
label: "123"
show_numbers_from_symbols:
action:
set_view: "numbers"
outline: "change-view-2"
@ -66,7 +61,7 @@ buttons:
show_letters:
action:
set_view: "base"
outline: "change-view-3"
outline: "change-view-2"
label: "ABC"
show_symbols:
action:
@ -77,9 +72,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,39 +1,40 @@
# Language: Serbian (Latin)
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 48.872, height: 42 }
change-view-2: { width: 73.308, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 244.36, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 48.872, height: 42 }
special-3: { width: 73.308, height: 42 }
default: { width: 48.87, height: 42 }
fill: { width: 73.31, height: 42 }
altline: { width: 48.87, height: 42 }
wide: { width: 73.31, height: 42 }
change-view: { width: 48.87, height: 42 }
change-view-2: { width: 73.31, height: 42 }
spaceline: { width: 244.34, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
views:
base:
- "q w e r t z u i o p š"
- "a s d f g h j k l č ć"
- "show_upper y x c v b n m đ ž BackSpace"
- "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 Č Ć"
- "show_upper Y X C V B N M Đ Ž BackSpace"
- "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 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? -- BackSpace-wide"
- "show_letters preferences space , . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] -- BackSpace-wide"
- "show_letters preferences space , . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,11 +42,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-3"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -71,9 +72,25 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
6:
outline: "fill"
"&":
outline: "fill"
-:
outline: "fill"
:
outline: "fill"
π:
outline: "fill"
¥:
outline: "fill"
^:
outline: "fill"

View File

@ -1,39 +1,40 @@
# Language: Serbian (Latin, Unicode)
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.868, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 32.42, height: 52 }
fill: { width: 64.84, height: 52 }
altline: { width: 48.63, height: 52 }
wide: { width: 64.84, height: 52 }
change-view: { width: 48.63, height: 52 }
change-view-2: { width: 64.84, height: 52 }
spaceline: { width: 129.68, height: 52 }
special: { width: 32.42, height: 52 }
placeholder: { width: 32.42, height: 52 }
views:
base:
- "lj nj e r t z u i o p š"
- "a s d f g h j k l č ć"
- "show_upper ž dž c v b n m đ BackSpace"
- "Shift_L ž dž c v b n m đ BackSpace"
- "show_numbers preferences space , . Return"
upper:
- "Lj Nj E R T Z U I O P Š"
- "A S D F G H J K L Č Ć"
- "show_upper Ž Dž C V B N M Đ BackSpace"
- "Shift_L Ž Dž C V B N M Đ BackSpace"
- "show_numbers preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -72,9 +73,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,37 +1,39 @@
# Language: Serbian (Latin, Unicode)
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 244.36, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
default: { width: 48.87, height: 42 }
fill: { width: 73.31, height: 42 }
altline: { width: 73.31, height: 42 }
wide: { width: 73.31, height: 42 }
change-view: { width: 73.31, height: 42 }
spaceline: { width: 244.34, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
views:
base:
- "lj nj e r t z u i o p š"
- "a s d f g h j k l č ć"
- "show_upper ž dž c v b n m đ BackSpace"
- "Shift_L ž dž c v b n m đ BackSpace"
- "show_numbers preferences space , . Return"
upper:
- "Lj Nj E R T Z U I O P Š"
- "A S D F G H J K L Č Ć"
- "show_upper Ž Dž C V B N M Đ BackSpace"
- "Shift_L Ž Dž C V B N M Đ BackSpace"
- "show_numbers preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -39,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -65,9 +67,25 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
6:
outline: "fill"
"&":
outline: "fill"
-:
outline: "fill"
:
outline: "fill"
π:
outline: "fill"
¥:
outline: "fill"
^:
outline: "fill"

View File

@ -1,39 +1,40 @@
# Language: Serbian
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 48.622, height: 52 }
change-view-2: { width: 56.726, height: 52 }
placeholder: { width: 32.415, height: 52 }
spaceline: { width: 145.868, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 48.622, height: 52 }
special-3: { width: 56.726, height: 52 }
default: { width: 32.12, height: 52 }
fill: { width: 64.24, height: 52 }
altline: { width: 48.18, height: 52 }
wide: { width: 64.24, height: 52 }
change-view: { width: 48.18, height: 52 }
change-view-2: { width: 64.24, height: 52 }
spaceline: { width: 128.48, height: 52 }
special: { width: 32.12, height: 52 }
placeholder: { width: 32.12, height: 52 }
views:
base:
- "љ њ е р т з у и о п ш"
- "а с д ф г х ј к л ч ћ"
- "show_upper џ ц в б н м ђ ж BackSpace"
- "Shift_L џ ц в б н м ђ ж BackSpace"
- "show_numbers preferences space , . Return"
upper:
- "Љ Њ Е Р Т З У И О П Ш"
- "А С Д Ф Г Х Ј К Л Ч Ћ"
- "show_upper Џ Ц В Б Н М Ђ Ж BackSpace"
- "Shift_L Џ Ц В Б Н М Ђ Ж BackSpace"
- "show_numbers preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,7 +42,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -72,9 +73,17 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
"&":
outline: "fill"
:
outline: "fill"
¥:
outline: "fill"

View File

@ -1,38 +1,39 @@
# Language: Serbian
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 73.308, height: 42 }
placeholder: { width: 48.872, height: 42 }
spaceline: { width: 244.36, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 73.308, height: 42 }
special-3: { width: 73.308, height: 42 }
default: { width: 48.87, height: 42 }
fill: { width: 73.31, height: 42 }
altline: { width: 73.31, height: 42 }
wide: { width: 73.31, height: 42 }
change-view: { width: 73.31, height: 42 }
spaceline: { width: 244.35, height: 42 }
special: { width: 48.87, height: 42 }
placeholder: { width: 48.87, height: 42 }
views:
base:
- "љ њ е р т з у и о п ш"
- "а с д ф г х ј к л ч ћ"
- "show_upper џ ц в б н м ђ ж BackSpace"
- "Shift_L џ ц в б н м ђ ж BackSpace"
- "show_numbers preferences space , . Return"
upper:
- "Љ Њ Е Р Т З У И О П Ш"
- "А С Д Ф Г Х Ј К Л Ч Ћ"
- "show_upper Џ Ц В Б Н М Ђ Ж BackSpace"
- "Shift_L Џ Ц В Б Н М Ђ Ж BackSpace"
- "show_numbers preferences space ! ? Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "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"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -40,7 +41,7 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special-2"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -66,9 +67,25 @@ buttons:
outline: "spaceline"
text: " "
Return:
outline: "special-3"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill"
6:
outline: "fill"
"&":
outline: "fill"
-:
outline: "fill"
:
outline: "fill"
π:
outline: "fill"
¥:
outline: "fill"
^:
outline: "fill"

View File

@ -1,41 +1,42 @@
# Language: Russian
---
outlines:
default: { width: 32.415, height: 52 }
change-view: { width: 32.415, height: 52 }
change-view-2: { width: 64.83, height: 52 }
fill: { width: 64.83, height: 52 }
large: { width: 35.656, height: 52 }
spaceline: { width: 90.763, height: 52 }
spaceline-fill: { width: 155.593, height: 52 }
special: { width: 32.415, height: 52 }
special-2: { width: 35.656, height: 52 }
special-3: { width: 64.83, height: 52 }
default: { width: 32.45, height: 52 }
altline: { width: 32, height: 52 }
wide: { width: 64.55, height: 52 }
change-view: { width: 32, height: 52 }
change-view-2: { width: 64.55, height: 52 }
spaceline: { width: 91.96, height: 52 }
fill: { width: 156.86, height: 52 }
fill-2: { width: 64.9, height: 52 }
special: { width: 35.67, height: 52 }
large: { width: 35.67, height: 52 }
placeholder: { width: 32.45, height: 52 }
views:
base:
- "й ц у к е н г ш щ з х"
- "ф ы в а п р о л д ж э"
- "show_upper я ч с м и т ь б ю BackSpace"
- "Shift_L я ч с м и т ь б ю BackSpace"
- "show_numbers preferences ё space ъ . Return"
upper:
- "Й Ц У К Е Н Г Ш Щ З Х"
- "Ф Ы В А П Р О Л Д Ж Э"
- "show_upper Я Ч С М И Т Ь Б Ю BackSpace"
- "Shift_L Я Ч С М И Т Ь Б Ю BackSpace"
- "show_numbers preferences Ё space Ъ ,-large Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? BackSpace-wide"
- "show_letters preferences space-fill . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] BackSpace-wide"
- "show_letters preferences space-fill . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -43,16 +44,16 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-3"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
action: "show_prefs"
outline: "special-2"
outline: "special"
icon: "keyboard-mode-symbolic"
show_numbers:
action:
@ -69,18 +70,29 @@ buttons:
set_view: "symbols"
outline: "change-view-2"
label: "*/="
space:
outline: "spaceline"
text: " "
space-fill:
outline: "spaceline-fill"
text: " "
Return:
outline: "special-3"
icon: "key-enter"
keysym: "Return"
.:
outline: "large"
",-large":
outline: "large"
text: ","
space:
outline: "spaceline"
text: " "
space-fill:
outline: "fill"
text: " "
Return:
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill-2"
"&":
outline: "fill-2"
:
outline: "fill-2"
¥:
outline: "fill-2"

View File

@ -1,39 +1,41 @@
# Language: Russian
---
outlines:
default: { width: 48.872, height: 42 }
change-view: { width: 48.872, height: 42 }
change-view-2: { width: 97.744, height: 42 }
fill: { width: 97.744, height: 42 }
spaceline: { width: 146.616, height: 42 }
spaceline-fill: { width: 244.36, height: 42 }
special: { width: 48.872, height: 42 }
special-2: { width: 97.744, height: 42 }
default: { width: 48.75, height: 42 }
altline: { width: 48.75, height: 42 }
wide: { width: 97.5, height: 42 }
change-view: { width: 48.75, height: 42 }
change-view-2: { width: 97.5, height: 42 }
spaceline: { width: 146.5, height: 42 }
fill: { width: 244, height: 42 }
fill-2: { width: 97.5, height: 42 }
special: { width: 48.75, height: 42 }
placeholder: { width: 48.75, height: 42 }
views:
base:
- "й ц у к е н г ш щ з х"
- "ф ы в а п р о л д ж э"
- "show_upper я ч с м и т ь б ю BackSpace"
- "Shift_L я ч с м и т ь б ю BackSpace"
- "show_numbers preferences ё space ъ . Return"
upper:
- "Й Ц У К Е Н Г Ш Щ З Х"
- "Ф Ы В А П Р О Л Д Ж Э"
- "show_upper Я Ч С М И Т Ь Б Ю BackSpace"
- "Shift_L Я Ч С М И Т Ь Б Ю BackSpace"
- "show_numbers preferences Ё space Ъ , Return"
numbers:
- "1 2 3 4 5 6 7 8 9 0 ²"
- "@ # $ % & - _ + ( ) ³"
- "1 2 3 4 5 6 7 8 9 0"
- "@ # $ % & - _ + ( )"
- "show_symbols , \" ' : ; ! ? BackSpace-wide"
- "show_letters preferences space-fill . Return"
symbols:
- "~ ` | · √ π τ ÷ × ²"
- "© ® £ € ¥ ^ ° * { } ³"
- "~ ` | · √ π τ ÷ × ¶"
- "© ® £ € ¥ ^ ° * { }"
- "show_numbers \\ / < > = [ ] BackSpace-wide"
- "show_letters preferences space-fill . Return"
buttons:
show_upper:
Shift_L:
action:
locking:
lock_view: "upper"
@ -41,11 +43,11 @@ buttons:
outline: "change-view"
icon: "key-shift"
BackSpace:
outline: "special"
outline: "altline"
icon: "edit-clear-symbolic"
action: "erase"
BackSpace-wide:
outline: "special-2"
outline: "wide"
icon: "edit-clear-symbolic"
action: "erase"
preferences:
@ -71,9 +73,20 @@ buttons:
outline: "spaceline"
text: " "
space-fill:
outline: "spaceline-fill"
outline: "fill"
text: " "
Return:
outline: "special-2"
outline: "wide"
icon: "key-enter"
keysym: "Return"
--:
outline: "placeholder"
text: ""
5:
outline: "fill-2"
"&":
outline: "fill-2"
:
outline: "fill-2"
¥:
outline: "fill-2"

Some files were not shown because too many files have changed in this diff Show More