* Initial commit for wayland support * Improvements to Wayland backend, structs and enums * gtk-layer-shell-rs imported * Eww compiles with wayland backend * Full layershell support * Compatibility with x11 backend * updated docs and better compatibily with X config * error in example * "screen" in config works * Updated documentation * bar example for wayland * eww follow focus when screen is undefined * NumWithUnit * Removed SurfaceDefinition for StrutDefinition again... * cargo fmt * fix match statement for screen number * fix focusable / kb interactivity * revision #2 * fix: compile error and example * feat: I fixed the deps X11 doesn't compile because of some x11 fuckery * fix: x11 fuckery PR NOW REEEEEEEEEEEEEEEEEEEEEEEEE * fix conflics and cargo fmt * i can't read * conflicts: a never ending loop... * dammit ptr * conflicts: Cargo.lock * Expression language (#124) * Add AST * add make-shift testing parser, and make stuff ocmpile * add proper expression parser * make string format use ' * Add empty doc page for expressions * add tests * Clean up file structure and add unary operators * Write documentation * make multiple daemons possible and make commands time out * Add EwwPaths struct and refactor path handling in general * Update docs to include <reserve> * Improve handling of paths and daemon-ids * Add elvis operator * Allow literal-tag content to use user-defined widgets * Add support for overriding monitor in CLI * change formatting config * Improve error messages for non-existant config dir * Added tooltips (#127) * update dependencies * Explicetely states where to look for installing eww (#131) I think this should be added, because we already had a couple of people opening issues because they didn't read the docs on how to install eww. * (Very) Rudimentry gif support (#143) * rudimentry gif support * revert main.rs * Fix variable reference detection, should fix #144 * cleanup TextPos in eww debug * Manually resolve escaped symbols in xml. This shouldn't be necesary. Fixes #154 and fixes #147 * Add JSON support for exprs (fixes #146) * Add docs for json values and make value related names shorter * Add animated icon * Initial commit for wayland support * Improvements to Wayland backend, structs and enums * gtk-layer-shell-rs imported * Eww compiles with wayland backend * Full layershell support * Compatibility with x11 backend * updated docs and better compatibily with X config * "screen" in config works * Updated documentation * eww follow focus when screen is undefined * Removed SurfaceDefinition for StrutDefinition again... * cargo fmt * fix match statement for screen number * fix focusable / kb interactivity * revision #2 * fix: compile error and example * feat: I fixed the deps X11 doesn't compile because of some x11 fuckery * fix conflics and cargo fmt * i can't read * conflicts: a never ending loop... * dammit ptr * conflicts: Cargo.lock * yeeting git syntax * trying to resolve conflicts * yeeting Cargo.lock... * i try * revision: removing duplicates * fix geometry, example and improving docs * clearing up the documentation * I forgot the scss file. I also edited the bar to take advantage of eww expressions. * more yeeting and moved exclusive to window Co-authored-by: Bryan Ndjeutcha <ndjeutcha@gmail.com> Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> Co-authored-by: undefinedDarkness <38278035+undefinedDarkness@users.noreply.github.com> Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
74 lines
1.6 KiB
TOML
74 lines
1.6 KiB
TOML
[package]
|
|
name = "eww"
|
|
version = "0.1.0"
|
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
description= "Widget system for everyone!"
|
|
license = "MIT"
|
|
repository = "https://github.com/elkowar/eww"
|
|
homepage = "https://github.com/elkowar/eww"
|
|
|
|
|
|
[features]
|
|
default = ["x11"]
|
|
x11 = ["gdkx11", "x11rb"]
|
|
wayland = ["gtk-layer-shell", "gtk-layer-shell-sys"]
|
|
no-x11-wayland = []
|
|
[dependencies.cairo-sys-rs]
|
|
version = "0.10.0"
|
|
|
|
[dependencies]
|
|
gtk = { version = "0.9", features = [ "v3_16" ] }
|
|
gdk = { version = "", features = ["v3_16"] }
|
|
gio = { version = "", features = ["v2_44"] }
|
|
glib = { version = "", features = ["v2_44"] }
|
|
|
|
gdk-pixbuf = "0.9"
|
|
|
|
gtk-layer-shell = { version="0.2.0", optional=true }
|
|
gtk-layer-shell-sys = { version="0.2.0", optional=true }
|
|
gdkx11 = { version = "0.9", optional = true }
|
|
x11rb = { version = "0.8", features = ["randr"], optional = true }
|
|
|
|
regex = "1"
|
|
bincode = "1.3"
|
|
anyhow = "1.0"
|
|
derive_more = "0.99"
|
|
maplit = "1"
|
|
structopt = "0.3"
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
extend = "1"
|
|
grass = "0.10"
|
|
num = "0.4"
|
|
roxmltree = "0.14"
|
|
itertools = "0.10"
|
|
debug_stub_derive = "0.3"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2"
|
|
nix = "0.20"
|
|
smart-default = "0.6"
|
|
simple-signal = "1.1"
|
|
unescape = "0.1"
|
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
async-stream = "0.3"
|
|
futures-core = "0.3"
|
|
futures-util = "0.3"
|
|
tokio-util = "0.6"
|
|
|
|
|
|
nom = "6.1"
|
|
dyn-clone = "1.0"
|
|
base64 = "0.13"
|
|
wait-timeout = "0.2"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
inotify = "0.9"
|
|
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.7.1"
|