Merge remote-tracking branch 'origin/master' into feat/multi-window-support
This commit is contained in:
commit
fa068b904a
6 changed files with 25 additions and 7 deletions
|
|
@ -66,5 +66,5 @@ version = "0.3"
|
|||
features = ["Document", "Window"]
|
||||
|
||||
[dependencies.sysinfo]
|
||||
version = "0.23"
|
||||
version = "0.28"
|
||||
optional = true
|
||||
|
|
|
|||
|
|
@ -767,7 +767,7 @@ pub fn run_command<A, E>(
|
|||
window::Action::ChangeMode(mode) => {
|
||||
window.set_visible(conversion::visible(mode));
|
||||
window.set_fullscreen(conversion::fullscreen(
|
||||
window.primary_monitor(),
|
||||
window.current_monitor(),
|
||||
mode,
|
||||
));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@ pub fn fetch_information<Message>(
|
|||
pub(crate) fn information(
|
||||
graphics_info: compositor::Information,
|
||||
) -> Information {
|
||||
use sysinfo::{ProcessExt, ProcessorExt, System, SystemExt};
|
||||
use sysinfo::{CpuExt, ProcessExt, System, SystemExt};
|
||||
let mut system = System::new_all();
|
||||
system.refresh_all();
|
||||
|
||||
let cpu = system.global_processor_info();
|
||||
let cpu = system.global_cpu_info();
|
||||
|
||||
let memory_used = sysinfo::get_current_pid()
|
||||
.and_then(|pid| system.process(pid).ok_or("Process not found"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue