Two monitors can keep different wallpapers. `set --output` targets one awww output, writes that output's bread-theme files, and updates ~/.config/breadpaper/current.json without clobbering the other. Global set still runs wal + bread-theme reload and stamps every known output. `apply` and listen-on-monitor-connect restore the saved map. The library picker binds to its monitor and applies to that output.
16 lines
543 B
TOML
16 lines
543 B
TOML
[package]
|
|
name = "breadpaper"
|
|
version = "0.1.12"
|
|
edition = "2024"
|
|
description = "Wallpaper manager for the bread desktop"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
anyhow = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
gtk4 = { version = "0.11", features = ["v4_12"] }
|
|
bread-theme = { path = "../bread-ecosystem/bread-theme", features = ["gtk"] }
|
|
bread-utils = { git = "https://git.breadway.dev/Breadway/bread-ecosystem", tag = "v0.7.2", features = ["bread-client"] }
|