mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-24 10:21:21 +01:00
11 lines
390 B
Rust
11 lines
390 B
Rust
fn main() {
|
|
if std::fs::metadata("applications.yaml").is_err() {
|
|
let applications_yaml = reqwest::blocking::get(
|
|
"https://raw.githubusercontent.com/LGUG2Z/komorebi-application-specific-configuration/master/applications.yaml"
|
|
).unwrap().text().unwrap();
|
|
std::fs::write("applications.yaml", applications_yaml).unwrap();
|
|
}
|
|
|
|
shadow_rs::new().unwrap();
|
|
}
|