diff options
author | tcmal <me@aria.rip> | 2024-08-06 14:39:55 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-13 17:07:19 +0100 |
commit | 89b5f3f87c8022f2d32c422c3516fca2f1538d69 (patch) | |
tree | 231457b673cafbfdaea32a8f6a9d8c0aba08a7d3 /src/main.rs | |
parent | 5359062bf58a5ff57dfa48492db57f9340ecfbee (diff) |
Add tags/workspaces
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 122f735..02f83c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,6 +33,7 @@ use xcb::{ Connection as RawConnection, Event, Extension, Xid, }; +pub mod buttons; pub mod clients; pub mod config; pub mod conn_info; @@ -143,7 +144,7 @@ impl<'a> WM<'a> { return; } - if dbg!(e.r#type()) == dbg!(self.conn.atoms.net_wm_state) { + if e.r#type() == self.conn.atoms.net_wm_state { let x::ClientMessageData::Data32(data) = e.data() else { unreachable!(); }; |