Add privacy over security scripts for macOS #83

It adds scripts to:
  - Disable OS security modules.
  - Clean quarantine data.
  - Disable auto-updates.
This commit is contained in:
undergroundwires
2021-10-16 19:49:41 +02:00
parent 2492f2d814
commit 236a0f6c82
2 changed files with 269 additions and 2 deletions

View File

@@ -2,5 +2,5 @@ import { ILanguageSyntax } from '@/domain/ScriptCode';
export class ShellScriptSyntax implements ILanguageSyntax {
public readonly commentDelimiters = [ '#' ];
public readonly commonCodeParts = [ '(', ')', 'else' ];
public readonly commonCodeParts = [ '(', ')', 'else', 'fi' ];
}