Enable wlr_data_control protocol (#101)

This commit is contained in:
xDarksome 2023-11-14 00:47:43 +04:00 committed by GitHub
parent d051d14197
commit 72ee1c4d5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 1 deletions

View file

@ -51,6 +51,7 @@ pub struct Config {
pub struct StaticConfig {
pub key_bindings: HashMap<key_bindings::KeyPattern, key_bindings::Action>,
pub tiling_enabled: bool,
pub data_control_enabled: bool,
}
#[derive(Debug)]
@ -191,6 +192,7 @@ impl Config {
StaticConfig {
key_bindings: HashMap::new(),
tiling_enabled: false,
data_control_enabled: false,
}
}