No description
Find a file
2020-10-18 23:25:00 +02:00
.vscode variables 2020-09-20 18:02:37 +02:00
src Basic implementation of XML parsing, doesn't quite work yet 2020-10-18 23:25:00 +02:00
.gitignore init 2020-09-19 11:12:24 +02:00
Cargo.lock Basic implementation of XML parsing, doesn't quite work yet 2020-10-18 23:25:00 +02:00
Cargo.toml Basic implementation of XML parsing, doesn't quite work yet 2020-10-18 23:25:00 +02:00
README.md Add readme with example configuration 2020-10-01 20:11:57 +02:00
rustfmt.toml cleanup widget definition code 2020-09-22 20:59:56 +02:00

EWW - Elkowar's Wacky Widgets

configuration

Eww's configuration should be placed in ~/.config/eww/eww.conf. any scss styles you want to add should be put into ~/.config/eww/eww.scss.

Example configuration

widgets: {
    some_widget: {
        structure: {
            layout: {
                class: "container",
                children: [
                    { layout: {
                        orientation: "v"
                        children: [
                            { button: "brah" }
                        ]
                    } }
                    { layout: {
                        children: [
                            "$$date"
                            { button: "Some button" }
                            { slider: { value: "$$some_value", min: 0, max: 100, onchange: "notify-send 'changed' {}" } }
                            { slider: { value: "$$some_value", orientation: "h" } }
                            "hu"
                        ]
                    } }
                ]
            }
        }
    },
    test: {
        structure: {
            some_widget: {
                some_value: "$$ooph"
            }
        }
    },
    bar: {
        structure: {
            layout: {
                children: [
                    { layout: { halign: left, children: "text" } }
                    { layout: { halign: center, hexpand: false, children: "$$date" }}
                    { layout: {
                        halign: end,
                        hexpand: false,
                        children: [
                            "$$date"
                            { slider: { value: "$$some_value", min: 0, max: 100, onchange: "notify-send 'changed' {}" } }
                            "$$date"
                        ]
                    } }
                    { label: { text: { run: "date", interval: 1s } } }
                ]
            }
        }
    },
}
default_vars: {
    foo: 12
    date: "neverrrr"
},
windows: {
    main_window: {
        pos.x: 0
        pos.y: 1080
        size.x: 2560
        size.y: 29
        widget: {
            bar: {
                some_value: "$$foo"
            }
        }
    }
}