xremap 0.14.3

Dynamic key remapp for X and Wayland
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::client::Client;

pub struct NullClient;

impl Client for NullClient {
    fn supported(&mut self) -> bool {
        false
    }
    fn current_window(&mut self) -> Option<String> {
        None
    }

    fn current_application(&mut self) -> Option<String> {
        None
    }
}