1
0
Fork 0
forked from wry/wry

Add clean-logs-older-than option

This commit is contained in:
khyperia 2026-03-27 07:44:34 +01:00 committed by Julian Orth
parent 4c7d108e09
commit 880c98ecfb
17 changed files with 360 additions and 10 deletions

View file

@ -21,7 +21,7 @@ use {
xwayland::XScalingMode,
},
serde::{Deserialize, Serialize},
std::time::Duration,
std::time::{Duration, SystemTime},
};
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq)]
@ -861,6 +861,9 @@ pub enum ClientMessage<'a> {
SeatWarpMouseToFocus {
seat: Seat,
},
CleanLogsOlderThan {
time: SystemTime,
},
}
#[derive(Serialize, Deserialize, Debug)]