lios 0.1.66

A gorgeous GTK4/VTE Linux terminal with live themes, glass backgrounds, session prompt profiles, Sixel images, and safe GPU controls.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    pkg_config::Config::new()
        .cargo_metadata(false)
        .atleast_version("4.0")
        .probe("gtk4")
        .expect(
            "Lios requires GTK4 4.0 or newer. On Debian, Ubuntu, or Jetson, use the crates.io installer documented in README.md",
        );
    pkg_config::Config::new()
        .cargo_metadata(false)
        .atleast_version("0.68")
        .probe("vte-2.91-gtk4")
        .expect(
            "Lios requires VTE for GTK4 0.68 or newer (upstream stable 0.70+). On Debian, Ubuntu, or Jetson, use the crates.io installer documented in README.md",
        );
}