Compare commits

..

2 Commits

Author SHA1 Message Date
8e66dc234e Set minimum screen brightness level to 1, not 0 2024-10-06 22:23:56 -07:00
2239788f86 Update all dependencies 2024-10-06 22:23:56 -07:00

View File

@ -119,6 +119,7 @@ fn main() -> anyhow::Result<()> {
}
let conn_fd = borrow_raw_fd(conn_fd);
let mut pfds = Vec::new();
pfds.push(PollFd::new(borrow_raw_fd(signal_fd.as_raw_fd()), PollFlags::POLLIN));
pfds.push(PollFd::new(conn_fd.as_fd(), PollFlags::POLLIN));