mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-26 16:02:23 +03:00
much faster screencapturing with scrot instead
This commit is contained in:
parent
164cd7d757
commit
2f35ca5dc1
@ -112,13 +112,13 @@ pub fn run<T, G: GUI<T>>(mut gui: G, window_title: &str) {
|
||||
"Grabbing {} (of {}, {} total)",
|
||||
filename, cap.num_tiles_x, cap.num_tiles_y
|
||||
);
|
||||
if !process::Command::new("gnome-screenshot")
|
||||
.args(&["--window", "--remove-border", "-f", &filename])
|
||||
if !process::Command::new("scrot")
|
||||
.args(&["--quality", "100", "--focused", "--silent", &filename])
|
||||
.status()
|
||||
.unwrap()
|
||||
.success()
|
||||
{
|
||||
println!("gnome-screenshot failed; aborting");
|
||||
println!("scrot failed; aborting");
|
||||
screen_cap = None;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user