Update default settings

This commit is contained in:
Ian Douglas Scott 2024-10-30 09:30:42 -07:00
parent b0b2ccd680
commit f682e19f21

View file

@ -14,9 +14,9 @@ pub struct CosmicIdleConfig {
impl Default for CosmicIdleConfig {
fn default() -> Self {
Self {
screen_off_time: Some(10 * 60 * 1000),
suspend_on_battery_time: Some(20 * 60 * 1000),
suspend_on_ac_time: Some(20 * 60 * 1000),
screen_off_time: Some(15 * 60 * 1000),
suspend_on_battery_time: Some(15 * 60 * 1000),
suspend_on_ac_time: Some(30 * 60 * 1000),
}
}
}