Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions script/lib/macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ function macos::setup() {
"QuickTime Player"
Alfred
BetterDisplay
"Script Debugger"
)
local fn
for app in "${apps[@]}"; do
Expand Down Expand Up @@ -952,6 +953,12 @@ function macos::config_BetterDisplay() {
fi
}

function macos::config_Script_Debugger() {
defaults write com.latenightsw.ScriptDebugger8 kPrefSWReg80Registration -string "000B0-00TC0-00HB7-1VMJP1"
defaults write com.latenightsw.ScriptDebugger8 kPrefSWRegOrg -string "personal"
defaults write com.latenightsw.ScriptDebugger8 kPrefSWRegUser -string "Adam Brown"
}

function macos::kill_apps() {
set +e
for app in "Activity Monitor" \
Expand All @@ -973,6 +980,7 @@ function macos::kill_apps() {
"iCal" \
"Alfred" \
"BetterDisplay" \
"Script Debugger" \
; do
killall "${app}" &>/dev/null
done
Expand Down
1 change: 1 addition & 0 deletions script/lib/resources/Brewfile.mac
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ cask "obsidian"
cask "plexamp"
cask "pro-studio-masters"
cask "pycharm"
cask "script-debugger"
cask "slack"
cask "spotify"
cask "sublime-text@4192"
Expand Down