Quitter icon

Quitter 1.0

Automatically hides or quits apps after periods of inactivity

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    quitter # Quitter
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    quitter # Quitter
  ];
}

Package Definition

{
  "pname": "quitter",
  "version": "1.0",
  "src": {
    "url": "https://marco.org/appcasts/Quitter.zip",
    "sha256": "no_check"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"Quitter.app\" \"$out/Applications/Quitter.app\""
  ],
  "meta": {
    "description": "Automatically hides or quits apps after periods of inactivity",
    "homepage": "https://marco.org/apps#quitter"
  }
}