The SXMO (sway) environment expects that the on-screen keyboard does not handle visibility by itself. Add a new target that ignores the program's own show/hide requests and shows the keyboard on startup.
38 lines
989 B
TOML
38 lines
989 B
TOML
[package]
|
|
name = "rusted-fetter"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
fontconfig = "0.9.0"
|
|
# Disable freetype-sys, as it vendors libfreetype2 while fontconfig dynamically
|
|
# links to it. Large dependencies should not be duplicated.
|
|
freetype = { version = "0.7.2", default-features = false }
|
|
imgref = "1.10.1"
|
|
libc = "0.2.155"
|
|
memmap2 = "0.9.4"
|
|
polling = "3.7.2"
|
|
rgb = "0.8.44"
|
|
tokio = { version = "1.38.1", features = ["macros", "rt"] }
|
|
wayland-backend = "0.3.5"
|
|
wayland-client = "0.31.4"
|
|
wayland-protocols = { version = "0.32.2", features = ["client", "staging", "unstable"] }
|
|
wayland-protocols-wlr = { version = "0.3.2", features = ["client"] }
|
|
wayland-scanner = "0.31.3"
|
|
xkeysym = "0.2.0"
|
|
zbus = { version = "4.4.0", default-features = false, features = ["tokio"] }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.69.4"
|
|
|
|
[[bin]]
|
|
name = "ufkbd-gnome"
|
|
path = "src/ufkbd_gnome.rs"
|
|
|
|
[[bin]]
|
|
name = "ufkbd-sxmo"
|
|
path = "src/ufkbd_sxmo.rs"
|
|
|
|
[[bin]]
|
|
name = "ufkbd-wl"
|
|
path = "src/ufkbd_wl.rs"
|