559 B
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.
'';
};
}