Refactor is_x11

This commit is contained in:
asur4s
2022-09-04 04:25:34 -04:00
parent 7a1b1d87e9
commit 9f80202c79
4 changed files with 11 additions and 6 deletions

View File

@@ -1,10 +1,6 @@
use crate::ResultType;
use std::sync::Mutex;
lazy_static::lazy_static! {
pub static ref IS_X11: Mutex<bool> = Mutex::new("x11" == get_display_server());
}
pub fn get_display_server() -> String {
let session = get_value_of_seat0(0);
get_display_server_of_session(&session)