yofi 0.2.2

minimalistic menu for wayland
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use sctk::{
    output::OutputState,
    registry::{ProvidesRegistryState, RegistryState},
    registry_handlers,
    seat::SeatState,
};

use super::Window;

impl ProvidesRegistryState for Window {
    fn registry(&mut self) -> &mut RegistryState {
        &mut self.registry_state
    }

    registry_handlers![OutputState, SeatState];
}