forked from mac-cleanup/mac-cleanup-sh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac-cleanup
executable file
·509 lines (446 loc) · 13.9 KB
/
mac-cleanup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#!/usr/bin/env bash
# vim: sw=2 sts=2 et
#
# mac-cleanup
#
# A Mac Cleaning up Utility by fwartner, modified by necrotech
# https://github.com/necrotech/mac-cleanup
set -E
trap cleanup SIGINT SIGTERM ERR EXIT
cleanup() {
trap - SIGINT SIGTERM ERR EXIT
}
# Default arguments
update=false
usage() {
cat <<EOF
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-u]
A Mac Cleaning up Utility by fwartner, modified by necrotech
https://github.com/necrotech/mac-cleanup
Available options:
-h, --help Print this help and exit
-d, --dry-run Print approx space to be cleaned
-v, --verbose Print script debug info
-u, --update Run brew update
EOF
exit
}
# shellcheck disable=SC2034 # Unused variables left for readability
setup_colors() {
if [[ -t 2 ]] && [[ -z "${NO_COLOR-}" ]] && [[ "${TERM-}" != "dumb" ]]; then
NOFORMAT='\033[0m' RED='\033[0;31m' GREEN='\033[0;32m' ORANGE='\033[0;33m' BLUE='\033[0;34m' PURPLE='\033[0;35m' CYAN='\033[0;36m' YELLOW='\033[1;33m'
else
NOFORMAT='' RED='' GREEN='' ORANGE='' BLUE='' PURPLE='' CYAN='' YELLOW=''
fi
}
msg() {
if [[ -z "$dry_run" ]]; then
echo >&2 -e "${1-}"
fi
}
die() {
local msg=$1
local code=${2-1} # default exit status 1
msg "$msg"
exit "$code"
}
parse_params() {
# default values of variables set from params
update=false
while :; do
case "${1-}" in
-h | --help) usage ;;
-v | --verbose) set -x ;;
-d | --dry-run) dry_run=true ;;
--no-color) NO_COLOR=1 ;;
-u | --update) update=true ;; # update flag
-n) true ;; # This is a legacy option, now default behaviour
-?*) die "Unknown option: $1" ;;
*) break ;;
esac
shift
done
return 0
}
parse_params "$@"
setup_colors
deleteCaches() {
local cacheName=$1
shift
local paths=("$@")
echo "Initiating cleanup ${cacheName} cache..."
for folderPath in "${paths[@]}"; do
if [[ -d ${folderPath} ]]; then
dirSize=$(du -hs "${folderPath}" | awk '{print $1}')
echo "Deleting ${folderPath} to free up ${dirSize}..."
rm -rfv "${folderPath}"
fi
done
}
bytesToHuman() {
b=${1:-0}
d=''
s=1
S=(Bytes {K,M,G,T,E,P,Y,Z}iB)
while ((b > 1024)); do
d="$(printf ".%02d" $((b % 1024 * 100 / 1024)))"
b=$((b / 1024))
((s++))
done
local act=was
[[ -z "$dry_results" ]] && act="will be"
msg "Approx $b$d ${S[$s]} of space $act cleaned up"
}
count_dry() {
(( ${#path_list[@]} == 0 )) && return
for path in "${path_list[@]}"; do
if [[ -d "$path" ]] || [[ -f "$path" ]]; then
temp_dry_results=$(sudo du -ck "$path" | tail -1 | awk '{ print $1 }')
dry_results="$((dry_results+temp_dry_results))"
fi
done
}
remove_paths() {
(( ${#path_list[@]} == 0 )) && return
if [[ -z "$dry_run" ]]; then
for path in "${path_list[@]}"; do
rm -rfv "$path" &>/dev/null
done
unset path_list
fi
}
collect_paths() {
(( ${#@[@]} == 0 )) && return
for path in $@; do
[[ -d "$path" ]] || [[ -f "$path" ]] && path_list+=("$path")
done
}
# Ask for the administrator password upfront, then keep-alive sudo until script
# has finished. sudo caches credentials for 5 minutes, so update every 4 to be
# safe.
sudo -v
while true; do
sudo -n true
sleep 240
kill -0 "$$" || exit
done 2>/dev/null &
# Enable extended regex
shopt -s extglob
# Save the amount of used space on the system volume for comparison later.
oldAvailable=$(df / | tail -1 | awk '{print $4}')
# Trash
collect_paths /Volumes/*/.Trashes/*
collect_paths "$HOME"/.Trash/*
msg 'Emptying the Trash 🗑 on all mounted volumes and the main HDD...'
remove_paths
# Caches
collect_paths /Library/Caches/*
collect_paths /System/Library/Caches/*
msg 'Clearing System Cache Files...'
remove_paths
collect_paths "$HOME"/Library/Caches/*
collect_paths /private/var/folders/bh/*/*/*/*
msg 'Clearing User Cache Files...'
remove_paths
collect_paths /private/var/log/asl/*.asl
collect_paths /Library/Logs/DiagnosticReports/*
collect_paths /Library/Logs/CreativeCloud/*
collect_paths /Library/Logs/Adobe/*
collect_paths /Library/Logs/adobegc.log
msg 'Clearing System Log Files...'
remove_paths
collect_paths "$HOME"/Library/Containers/com.apple.mail/Data/Library/Logs/Mail/*
collect_paths "$HOME"/Library/Logs/CoreSimulator/*
msg 'Clearing User Log Files...'
remove_paths
# Jetbrains PhpStorm
if [[ -d "$HOME/Library/Logs/JetBrains" ]]; then
collect_paths "$HOME"/Library/Logs/JetBrains/*
msg 'Clearing all application log files from JetBrains...'
remove_paths
fi
# Adobe apps
if [[ -d "$HOME/Library/Application Support/Adobe" ]]; then
collect_paths "$HOME/Library/Application Support/Adobe/Common/Media Cache Files/"*
msg 'Clearing Adobe Cache Files...'
remove_paths
fi
# Chrome
if [[ -d "$HOME/Library/Application Support/Google/Chrome" ]]; then
collect_paths "$HOME/Library/Application Support/Google/Chrome/Default/Application Cache/"*
msg 'Clearing Google Chrome Cache Files...'
remove_paths
fi
collect_paths "$HOME/Music/iTunes/iTunes Media/Mobile Applications/"*
msg 'Cleaning up iOS Applications...'
remove_paths
collect_paths "$HOME/Library/Application Support/MobileSync/Backup/"*
msg 'Removing iOS Device Backups...'
remove_paths
collect_paths "$HOME"/Library/Developer/Xcode/DerivedData/*
collect_paths "$HOME"/Library/Developer/Xcode/Archives/*
collect_paths "$HOME"/Library/Developer/Xcode/iOS Device Logs/*
msg 'Cleaning up XCode Derived Data and Archives...'
remove_paths
# IOS simulators
if type "xcrun" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up iOS Simulators...'
osascript -e 'tell application "com.apple.CoreSimulator.CoreSimulatorService" to quit' &>/dev/null
osascript -e 'tell application "iOS Simulator" to quit' &>/dev/null
osascript -e 'tell application "Simulator" to quit' &>/dev/null
xcrun simctl shutdown all &>/dev/null
xcrun simctl erase all &>/dev/null
else
collect_paths "$HOME"/Library/Developer/CoreSimulator/Devices/*/data/!(Library|var|tmp|Media)
collect_paths "$HOME"/Library/Developer/CoreSimulator/Devices/*/data/Library/!(PreferencesCaches|Caches|AddressBook)
collect_paths "$HOME"/Library/Developer/CoreSimulator/Devices/*/data/Library/Caches/*
collect_paths "$HOME"/Library/Developer/CoreSimulator/Devices/*/data/Library/AddressBook/AddressBook*
fi
fi
# Dropbox cache
if [[ -d "$HOME/Dropbox" ]]; then
collect_paths "$HOME"/Dropbox/.dropbox.cache/*
msg 'Clearing Dropbox 📦 Cache Files...'
remove_paths
fi
# Google Drive (not Backup and Sync)
if [[ -d "$HOME/Library/Application Support/Google/DriveFS" ]]; then
collect_paths "$HOME/Library/Application Support/Google/DriveFS/"[0-9a-zA-Z]*/content_cache
msg 'Clearing Google Drive File Stream Cache Files...'
killall "Google Drive File Stream"
remove_paths
fi
if type "composer" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up composer...'
composer clearcache --no-interaction &>/dev/null
else
collect_paths "$HOME/Library/Caches/composer"
fi
fi
# Deletes Steam caches, logs, and temp files
# -Astro
if [[ -d "$HOME/Library/Application Support/Steam" ]]; then
collect_paths "$HOME/Library/Application Support/Steam/appcache"
collect_paths "$HOME/Library/Application Support/Steam/depotcache"
collect_paths "$HOME/Library/Application Support/Steam/logs"
collect_paths "$HOME/Library/Application Support/Steam/steamapps/shadercache"
collect_paths "$HOME/Library/Application Support/Steam/steamapps/temp"
collect_paths "$HOME/Library/Application Support/Steam/steamapps/download"
msg 'Clearing Steam Cache, Log, and Temp Files...'
remove_paths
fi
# Deletes Minecraft logs
# -Astro
if [[ -d "$HOME/Library/Application Support/minecraft" ]]; then
collect_paths "$HOME/Library/Application Support/minecraft/logs"
collect_paths "$HOME/Library/Application Support/minecraft/crash-reports"
collect_paths "$HOME/Library/Application Support/minecraft/webcache"
collect_paths "$HOME/Library/Application Support/minecraft/webcache2"
collect_paths "$HOME/Library/Application Support/minecraft/crash-reports"
collect_paths "$HOME/Library/Application Support/minecraft/"*.log
collect_paths "$HOME/Library/Application Support/minecraft/launcher_cef_log.txt"
if [[ -d "$HOME/Library/Application Support/minecraft/.mixin.out" ]]; then
collect_paths "$HOME/Library/Application Support/minecraft/.mixin.out"
fi
msg 'Clearing Minecraft Cache and Log Files...'
remove_paths
fi
# Deletes Lunar Client logs (Minecraft alternate client)
# -Astro
if [[ -d "$HOME/.lunarclient" ]]; then
collect_paths "$HOME/.lunarclient/game-cache"
collect_paths "$HOME/.lunarclient/launcher-cache"
collect_paths "$HOME/.lunarclient/logs"
collect_paths "$HOME"/.lunarclient/offline/*/logs
collect_paths "$HOME"/.lunarclient/offline/files/*/logs
msg 'Deleting Lunar Client logs and caches...'
remove_paths
fi
# Deletes Wget logs
# -Astro
if [[ -d "$HOME/wget-log" ]]; then
collect_paths "$HOME/wget-log"
collect_paths "$HOME/.wget-hsts"
msg 'Deleting Wget log and hosts file...'
remove_paths
fi
# Deletes Cacher logs
# I dunno either
# -Astro
if [[ -d "$HOME/.cacher" ]]; then
collect_paths "$HOME/.cacher/logs"
msg 'Deleting Cacher logs...'
remove_paths
fi
# Deletes Android (studio?) cache
# -Astro
if [[ -d "$HOME/.android" ]]; then
collect_paths "$HOME/.android/cache"
msg 'Deleting Android cache...'
remove_paths
fi
# Clears Gradle caches
# -Astro
if [[ -d "$HOME/.gradle" ]]; then
collect_paths "$HOME/.gradle/caches"
msg 'Clearing Gradle caches...'
remove_paths
fi
# Deletes Kite Autocomplete logs
# -Astro
if [[ -d "$HOME/.kite" ]]; then
collect_paths "$HOME/.kite/logs"
msg 'Deleting Kite logs...'
remove_paths
fi
if type "brew" &>/dev/null; then
if [[ "$update" = true ]]; then
msg 'Updating Homebrew Recipes...'
brew update &>/dev/null
msg 'Upgrading and removing outdated formulae...'
brew upgrade &>/dev/null
fi
collect_paths "$(brew --cache)"
msg 'Cleaning up Homebrew Cache...'
if [[ -z "$dry_run" ]]; then
brew cleanup -s &>/dev/null
remove_paths
brew tap --repair &>/dev/null
else
remove_paths
fi
fi
# Ruby gems
if type "gem" &>/dev/null; then # TODO add count_dry
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up any old versions of gems'
gem cleanup &>/dev/null
fi
fi
# Docker
if type "docker" &>/dev/null; then # TODO add count_dry
if [[ -z "$dry_run" ]]; then
if ! docker ps >/dev/null 2>&1; then
close_docker=true
open --background -a Docker
fi
msg 'Cleaning up Docker'
docker system prune -af &>/dev/null
if [[ "$close_docker" = true ]]; then
killall Docker
fi
fi
fi
# Python virtual env
if [[ "$PYENV_VIRTUALENV_CACHE_PATH" ]]; then
collect_paths "$PYENV_VIRTUALENV_CACHE_PATH"
msg 'Removing Pyenv-VirtualEnv Cache...'
remove_paths
fi
if type "npm" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up npm cache...'
npm cache clean --force &>/dev/null
else
collect_paths "$HOME"/.npm/*
fi
fi
if type "yarn" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up Yarn Cache...'
yarn cache clean --force &>/dev/null
else
collect_paths "$HOME/Library/Caches/yarn"
fi
fi
if type "pnpm" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up pnpm Cache...'
pnpm store prune &>/dev/null
else
collect_paths "$HOME"/.pnpm-store/*
fi
fi
if type "pod" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up Pod Cache...'
pod cache clean --all &>/dev/null
else
collect_paths "$HOME/Library/Caches/CocoaPods"
fi
fi
if type "go" &>/dev/null; then
if [[ -z "$dry_run" ]]; then
msg 'Clearing Go module cache...'
go clean -modcache &>/dev/null
else
if [[ -n "$GOPATH" ]]; then
collect_paths "$GOPATH/pkg/mod"
else
collect_paths "$HOME/go/pkg/mod"
fi
fi
fi
# Deletes all Microsoft Teams Caches and resets it to default - can fix also some performance issues
# -Astro
if [[ -d "$HOME/Library/Application Support/Microsoft/Teams" ]]; then
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/IndexedDB"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/Cache"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/Application Cache"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/Code Cache"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/blob_storage"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/databases"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/gpucache"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/Local Storage"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/tmp"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/"*logs*.txt
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/watchdog"
collect_paths "$HOME/Library/Application Support/Microsoft/Teams/"*watchdog*.json
msg 'Deleting Microsoft Teams logs and caches...'
remove_paths
fi
# Deletes Poetry cache
if [[ -d "$HOME/Library/Caches/pypoetry" ]]; then
collect_paths "$HOME/Library/Caches/pypoetry"
msg 'Deleting Poetry cache...'
remove_paths
fi
# Removes Java heap dumps
collect_paths "$HOME"/*.hprof
msg 'Deleting Java heap dumps...'
remove_paths
if [[ -z "$dry_run" ]]; then
msg 'Cleaning up DNS cache...'
sudo dscacheutil -flushcache &>/dev/null
sudo killall -HUP mDNSResponder &>/dev/null
fi
if [[ -z "$dry_run" ]]; then
msg 'Purging inactive memory...'
sudo purge &>/dev/null
fi
# Disables extended regex
shopt -u extglob
if [[ -z "$dry_run" ]]; then
msg "${GREEN}Success!${NOFORMAT}"
# Calculate the change in available disk space
newAvailable=$(df / | tail -1 | awk '{print $4}')
count=$((newAvailable - oldAvailable))
bytesToHuman $count
cleanup
else
count_dry
unset dry_run
bytesToHuman "$dry_results"
msg "Continue? [enter]"
read -r -s -n 1 clean_dry_run
if [[ $clean_dry_run = "" ]]; then
if [[ "$update" = true ]]; then
exec "$0" --update
else
exec "$0"
fi
fi
cleanup
fi