Skip to content

Commit 32f93e1

Browse files
committed
remove experimental hyprland support
See #19 for more info. Closes #19.
1 parent c9d1d2f commit 32f93e1

File tree

4 files changed

+0
-514
lines changed

4 files changed

+0
-514
lines changed

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ edition = "2021"
88
license = "GPL-3.0-only"
99
authors = ["MaxVerevkin <maxxverrr@gmail.com>"]
1010

11-
[features]
12-
hyprland = []
13-
1411
[dependencies]
1512
anyhow = "1"
1613
memchr = "2"

protocols/ext-workspace-unstable-v1.xml

Lines changed: 0 additions & 306 deletions
This file was deleted.

src/wm_info_provider.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ use crate::pointer_btn::PointerBtn;
88
use crate::protocol::*;
99
use crate::state::State;
1010

11-
#[cfg(feature = "hyprland")]
12-
mod ext_workspace_unstable;
13-
#[cfg(feature = "hyprland")]
14-
pub use ext_workspace_unstable::*;
15-
1611
mod river;
1712
pub use river::*;
1813

@@ -45,11 +40,6 @@ pub fn bind(
4540
return Some(Box::new(river));
4641
}
4742

48-
#[cfg(feature = "hyprland")]
49-
if let Some(ext_wp_u) = ExtWorkspaceUnstable::bind(conn, globals) {
50-
return Some(Box::new(ext_wp_u));
51-
}
52-
5343
None
5444
}
5545

0 commit comments

Comments
 (0)