mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2026-05-21 11:35:24 +00:00
8 lines
303 B
Bash
Executable File
8 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Set Chromium on exit
|
|
FILE="$HOME/Library/Application Support/Chromium/Local State"
|
|
jq '.browser.enabled_labs_experiments //= [] | .browser.enabled_labs_experiments |= map(select(startswith("clear-data-on-exit") | not)) + ["clear-data-on-exit@1"]' "$FILE" | sponge "$FILE"
|