We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 464429d commit c1a7c34Copy full SHA for c1a7c34
apps/plumeimpactor/src/main.rs
@@ -9,8 +9,8 @@ mod appearance;
9
mod defaults;
10
mod refresh;
11
mod screen;
12
-mod subscriptions;
13
mod startup;
+mod subscriptions;
14
mod tray;
15
16
pub const APP_NAME: &str = "Impactor";
@@ -34,6 +34,9 @@ fn main() -> iced::Result {
34
None
35
}
36
};
37
+ // set this to low so it tries to use the iGPU instead
38
+ // https://github.com/iced-rs/iced/issues/3143
39
+ unsafe { std::env::set_var("WGPU_POWER_PREF", "low") };
40
41
#[cfg(target_os = "linux")]
42
{
0 commit comments