dotfiles/macos.local/.flake/home/scripts/remove-quarantine.nix.org
2024-12-16 23:28:56 -06:00

559 B

Remove Quarantine

macOS likes putting applications in quarantine without me wanting. This script removes an application from the quarantine.

    { config, pkgs, ... }:

    {
      home.file."./.local/bin/remove-quarantine" = {
        executable = true;
        text = ''

Remove the app from quarantine by recursively deleting the quarantine attribute on the application.

  #!/bin/sh
  /usr/bin/xattr -dr com.apple.quarantine "$@"

Close the block.

      '';
    };
  }