shikane 1.0.1

dynamic output configuration tool focusing on accuracy and determinism
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[allow(unused_imports)]
use log::{debug, error, info, trace, warn};
use wayland_client::globals::GlobalListContents;
use wayland_client::{protocol::wl_registry, Connection, Dispatch, QueueHandle};

use super::WlrootsBackend;

impl Dispatch<wl_registry::WlRegistry, GlobalListContents> for WlrootsBackend {
    fn event(
        _: &mut Self,
        _: &wl_registry::WlRegistry,
        _: wl_registry::Event,
        _: &GlobalListContents,
        _: &Connection,
        _: &QueueHandle<Self>,
    ) {
    }
}