add session detection

This commit is contained in:
Ferdinand Schober
2023-02-12 22:37:18 +01:00
parent 20cf6d450a
commit d4d8ebbaeb
4 changed files with 50 additions and 11 deletions

View File

@@ -1,3 +1,9 @@
pub mod windows;
pub mod wayland;
pub mod x11;
#[derive(Clone, Copy, Debug)]
pub enum Backend {
X11,
WAYLAND,
}