diff --git a/README.md b/README.md index c851eb0..13ef6e9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # Aylur's Gtk Shell -~~The goal of this project is to be something like [EWW](https://github.com/elkowar/eww), but offer predifined components instead of barebone widgets, so that you don't have to build your desktop from scratch, but still have the option to build custom components without any constraints.~~ +This program is essentially a library for gjs which allows defining GTK widgets in a declarative way in JavaScript. It also provides services to interact with the system so that these widgets can have functionality. It was heavily inspired by [EWW](https://github.com/elkowar/eww). + +Currently only Wayland is supported, but there are plans for X11. ## Get started To get started read the [wiki](https://github.com/Aylur/ags/wiki). -Everything is still WIP and subject to change. diff --git a/flake.nix b/flake.nix index bd3fe9b..5a1f1e1 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "A customizable and extensible shell for Hyprland"; + description = "A customizable and extensible shell"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; dongsu8142-nur = { diff --git a/nix/default.nix b/nix/default.nix index 6535456..202fd88 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -15,7 +15,6 @@ }: let - custom = ./custom; gvc-src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "GNOME"; @@ -75,7 +74,7 @@ stdenv.mkDerivation { ]; meta = with lib; { - description = "A customizable and extensible shell for Hyprland"; + description = "A customizable and extensible shell"; homepage = "https://github.com/Aylur/ags"; platforms = [ "x86_64-linux" "aarch64-linux" ]; license = licenses.gpl3;