feat: add display settings page

This commit is contained in:
Michael Aaron Murphy 2023-12-22 16:42:56 +01:00 committed by Michael Murphy
parent 5907e46555
commit c00b41a463
21 changed files with 2307 additions and 398 deletions

View file

@ -20,10 +20,11 @@ export RUSTFLAGS := linker-arg + env_var_or_default('RUSTFLAGS', '')
rootdir := ''
prefix := '/usr'
cargo-target-dir := env('CARGO_TARGET_DIR', 'target')
default-schema-target := clean(rootdir / prefix) / 'share' / 'cosmic'
# File paths
bin-src := 'target' / 'release' / name
bin-src := cargo-target-dir / 'release' / name
bin-dest := clean(rootdir / prefix) / 'bin' / name
desktop := appid + '.desktop'
@ -116,3 +117,6 @@ version:
# Show the current git commit
git-rev:
@git rev-parse --short HEAD
info:
echo ${RUSTFLAGS}