⚙️ | Xinux gtk/libadwaita settings app [maintainer=@bahrom04]
  • Rust 87.6%
  • CSS 9.9%
  • Meson 1.5%
  • Nix 0.7%
  • Just 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
bahrom04 7154c98b81
All checks were successful
Test CI / flake-check (push) Successful in 16s
Test CI / build (push) Successful in 8m17s
fix: remove deprecated libs gtsreamer
2026-09-12 00:24:37 +05:00
.forgejo doc: PR template 2026-08-17 19:23:44 +05:00
.zed chore: exlude rust-analyzer files 2026-05-23 17:49:55 +05:00
data Merge branch 'appearance/background-chooser' 2026-06-03 19:14:00 +05:00
packages/xinux-settings fix: remove deprecated libs gtsreamer 2026-09-12 00:24:37 +05:00
po feat: wrap translatable texts to gettext function 2026-06-11 18:59:18 +05:00
s-helper chore: update deps 2026-06-11 12:21:24 +05:00
shells/xinux-settings fix: remove deprecated libs gtsreamer 2026-09-12 00:24:37 +05:00
src chore(main.rs): reorder code and remove wifi warning 2026-08-12 17:08:09 +05:00
.envrc chore: init 2025-12-11 13:56:45 +05:00
.gitignore remove all result 2026-06-14 00:52:56 +05:00
Cargo.lock feat: add optional cli args to open pages 2026-06-18 17:45:30 +05:00
Cargo.toml feat: add optional cli args to open pages 2026-06-18 17:45:30 +05:00
flake.lock chore: update deps 2026-06-11 12:24:26 +05:00
flake.nix add allow unfree 2026-06-14 01:03:28 +05:00
justfile fix: added missing display page 2026-06-06 15:18:29 +05:00
LICENSE chore: Create LICENSE 2026-01-15 11:18:48 +05:00
meson.build chore: update lock and meson version 2026-04-09 15:12:27 +05:00
meson_options.txt chore: init 2025-12-11 13:56:45 +05:00
README.md fix(readme): new forgejo domain link (#51) 2026-08-01 08:39:59 +00:00
rust-toolchain.toml chore: set stable rust channel 2026-01-15 11:20:59 +05:00

GNOME Settings Application written on Rust/GTK.

GN*ME Settings Demo

Test CI Most used Language

About

Rewritten version of GNOME Control Center for Xinux OS.

Development

Add nix-data to your flake.nix input and configuration.nix. ~/.config/nix-data/ your config locations via json here flake.nix input

nix-data = {
  url = "github:xinux-org/nix-data";
  inputs.nixpkgs.follows = "nixpkgs";
};

Change these to yours in configuration.nix.

programs.nix-data = {
  enable = true;
  systemconfig = "/home/bahrom/workplace/bahrom04/nix-config/systems/x86_64-linux/dell/default.nix";
  flake = "/home/bahrom/workplace/bahrom04/nix-config/flake.nix";
  flakearg = "dell"; # your hostname
};

Build & run

This application has Linux-only dependencies.

# download dependencies
nix develop

just install

cd ..
./settings/builddir/install/bin/settings

# or with nix when ready for release
nix build . --show-trace
./settings/result/bin/settings

# app run
just run

# Optional. Generate translation words from /po/POTFILES.in if needed.
cd ./po
xgettext --directory=.. --files-from=POTFILES.in --from-code=UTF-8 -kgettext -o translations.pot