Skip to content

Commit

Permalink
Daemon: always send Jpeg images
Browse files Browse the repository at this point in the history
This is much more efficient than raw BMP files. I don't really care about quality of the image
  • Loading branch information
xarantolus committed Jan 12, 2024
1 parent 28aab0c commit 4ba868d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async fn main() {

let config = common::client_config::find_parse_config().expect("Failed to parse config");

let mut client = MystiClient::new(config, ImageOutputFormat::Bmp);
let mut client = MystiClient::new(config, ImageOutputFormat::Jpeg(100));

client.run().await.expect("Failed to run client");
}

0 comments on commit 4ba868d

Please sign in to comment.