CLI tool that sets a wallpaper with awww, generates a pywal colour palette, and reloads bread-theme to recolour all running bread GTK apps. Includes CI workflows, bakery metadata, and Arch PKGBUILD.
17 lines
390 B
Rust
17 lines
390 B
Rust
use std::path::Path;
|
|
use std::process::Command;
|
|
|
|
use anyhow::{Context, Result, bail};
|
|
|
|
pub fn apply(path: &Path) -> Result<()> {
|
|
let status = Command::new("awww")
|
|
.arg("set")
|
|
.arg(path)
|
|
.status()
|
|
.context("failed to run awww — is awww-daemon running?")?;
|
|
|
|
if !status.success() {
|
|
bail!("awww set exited with {}", status);
|
|
}
|
|
Ok(())
|
|
}
|