feat: implement wallpaper settings page

This commit is contained in:
Michael Murphy 2023-06-23 17:18:05 +02:00 committed by GitHub
parent 3681a0987e
commit 900bb45758
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 1009 additions and 480 deletions

View file

@ -29,9 +29,7 @@ desktop-src := 'resources' / desktop
desktop-dest := clean(rootdir / prefix) / 'share' / 'applications' / desktop
[private]
help:
echo $RUSTFLAGS
@just -l
default: build-release
# Remove Cargo build artifacts
clean:
@ -74,7 +72,7 @@ install: (install-bin bin-src bin-dest) (install-file desktop-src desktop-dest)
# Run the application for testing purposes
run *args:
env RUST_BACKTRACE=full cargo run --release {{args}}
env RUST_LOG=debug RUST_BACKTRACE=full cargo run --release {{args}}
# Run `cargo test`
test: