Skip to content

Commit

Permalink
fix(session): remove unneeded wayland environment variables
Browse files Browse the repository at this point in the history
Signed-off-by: Schmarni <[email protected]>
  • Loading branch information
Schmarni-Dev authored and technobaboo committed Feb 1, 2025
1 parent 9d58fb3 commit a9ffd90
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,6 @@ pub fn connection_env() -> FxHashMap<String, String> {
.into_owned(),
);
env.insert("XDG_SESSION_TYPE".to_string(), "wayland".to_string());
env.insert("GDK_BACKEND".to_string(), "wayland".to_string());
env.insert("QT_QPA_PLATFORM".to_string(), "wayland".to_string());
env.insert("MOZ_ENABLE_WAYLAND".to_string(), "1".to_string());
env.insert("CLUTTER_BACKEND".to_string(), "wayland".to_string());
env.insert("SDL_VIDEODRIVER".to_string(), "wayland".to_string());
}
env
}

0 comments on commit a9ffd90

Please sign in to comment.