Thanks to visit codestin.com
Credit goes to github.com

Skip to content

xhos/aard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aard

WIP astal shell

install

add this to your flake inputs:

aard.url = "github:xhos/aard";

and add this somewhere in your config:

home.packages = with pkgs; [
  inputs.aard.packages.${system}.default
];

tip

you can install it as a systemd serivice, so it runs on startup, and restars on crashes

systemd.user.services.aard = {
  Unit.Description = "Astal Shell";
  Install.WantedBy = ["graphical-session.target"];
  Service = {
    ExecStart = "${inputs.aard.packages.${pkgs.system}.default}/bin/aard";
    Restart = "always";
    RestartSec = "5s";
  };
};

development

to enter the development enviroment with all requirements installed

nix develop

getting type defenitions

ags types Astal* --ignore Gtk3 --ignore Astal3 -p -d .

running the shell

ags run app.ts --gtk4

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published