D
Size: a a a
D
𝙼
𝙼
𝙼
D
𝙼
D
D
𝙼
𝙼
D
for entry in glob("/proc/*/status").unwrap() {
let contents = fs::read_to_string(entry.unwrap());
let unwraped = contents.unwrap();
let list_of_wms = ["bspwm", "i3", "dwm", "sway", "xmonad"];
for wm in list_of_wms.iter() {
if unwraped.contains(wm) {
return Some(wm.to_string());
}
}
}
D
𝙼
𝙼
𝙼
I
for entry in glob("/proc/*/status").unwrap() {
let contents = fs::read_to_string(entry.unwrap());
let unwraped = contents.unwrap();
let list_of_wms = ["bspwm", "i3", "dwm", "sway", "xmonad"];
for wm in list_of_wms.iter() {
if unwraped.contains(wm) {
return Some(wm.to_string());
}
}
}
𝙼
D
I
D