-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit with script, README, LICENSE, and CI workflow
- Loading branch information
nmosisi1
committed
Sep 26, 2024
0 parents
commit a931db4
Showing
4 changed files
with
351 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Homebrew | ||
run: | | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $GITHUB_ENV | ||
eval "$(/opt/homebrew/bin/brew shellenv)" | ||
- name: Install jq | ||
run: brew install jq | ||
|
||
- name: Make script executable | ||
run: chmod +x ./application_size_checker.sh | ||
|
||
- name: Run script | ||
run: ./application_size_checker.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Narek Mosisian | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
|
||
# Step-by-Step Guide to Determining Application Sizes on Mac via Terminal (zsh) | ||
|
||
This guide helps you determine the size of all installed applications, programs, and packages on your Mac. You will create a shell script that searches various sources and compiles the results into a sorted file. | ||
|
||
**Important:** This process can take up to 1 hour, as it first calculates all sizes and then sorts them. | ||
|
||
## Table of Contents | ||
- Step 1: Create the Script with nano | ||
- Step 2: Add Script Content | ||
- Step 3: Make the Script Executable | ||
- Step 4: Install Necessary Dependencies | ||
- Step 5: Run the Script | ||
- Step 6: Verify the Results | ||
- License | ||
|
||
## Step 1: Create the Script with nano | ||
Open the Terminal and create a new script file using nano: | ||
|
||
```zsh | ||
nano ~/application_size_checker.sh | ||
``` | ||
|
||
## Step 2: Add Script Content | ||
Copy the following content and paste it into the nano editor: | ||
|
||
```zsh | ||
#!/bin/zsh | ||
|
||
# Define output file | ||
OUTPUT=~/Desktop/application_size_sorted.txt | ||
echo "Determining application sizes on your Mac" > $OUTPUT | ||
echo "Created on: $(date)" >> $OUTPUT | ||
echo "--------------------------------------------" >> $OUTPUT | ||
|
||
# Function to add sections | ||
add_section() { | ||
echo -e " | ||
$1" >> $OUTPUT | ||
echo "--------------------------------------------" >> $OUTPUT | ||
shift | ||
for line in "$@"; do | ||
echo "$line" >> $OUTPUT | ||
done | ||
} | ||
|
||
# 1. Homebrew Formulas | ||
brew list --formula | parallel -j4 ' | ||
formula_path=$(brew --prefix {}) | ||
if [ -d "$formula_path" ]; then | ||
size=$(du -sh "$formula_path" 2>/dev/null | awk "{print "{}: "$1}") | ||
else | ||
size="{}: Path not found" | ||
fi | ||
echo "$size" | ||
' | sort -hr > brew_formula_sizes.txt | ||
|
||
brew_formula_sizes=$(cat brew_formula_sizes.txt) | ||
add_section "Homebrew Formulas:" "${(@f)brew_formula_sizes}" | ||
|
||
# 2. Homebrew Casks | ||
brew list --cask | parallel -j4 ' | ||
app_path="/Applications/{}.app" | ||
if [ -d "$app_path" ]; then | ||
size=$(du -sh "$app_path" 2>/dev/null | awk "{print "{}: "$1}") | ||
else | ||
# Alternative paths for Casks | ||
app_path="$(brew --prefix)/Caskroom/{}/latest/{}.app" | ||
if [ -d "$app_path" ]; then | ||
size=$(du -sh "$app_path" 2>/dev/null | awk "{print "{}: "$1}") | ||
else | ||
size="{}: Application not found" | ||
fi | ||
fi | ||
echo "$size" | ||
' | sort -hr > brew_cask_sizes.txt | ||
|
||
brew_cask_sizes=$(cat brew_cask_sizes.txt) | ||
add_section "Homebrew Casks:" "${(@f)brew_cask_sizes}" | ||
|
||
# 3. Applications in /Applications Folder | ||
ls /Applications | grep ".app" | parallel -j4 ' | ||
size=$(du -sh "/Applications/{}" 2>/dev/null | awk "{print "{}: "$1}") | ||
echo "$size" | ||
' | sort -hr > applications_sizes.txt | ||
|
||
applications_sizes=$(cat applications_sizes.txt) | ||
add_section "Applications in /Applications Folder:" "${(@f)applications_sizes}" | ||
|
||
# 4. Applications in ~/Applications Folder | ||
if [ -d ~/Applications ]; then | ||
ls ~/Applications | grep ".app" | parallel -j4 ' | ||
size=$(du -sh "~/Applications/{}" 2>/dev/null | awk "{print "{}: "$1}") | ||
echo "$size" | ||
' | sort -hr > user_applications_sizes.txt | ||
user_applications_sizes=$(cat user_applications_sizes.txt) | ||
else | ||
user_applications_sizes="No user-specific applications found." | ||
fi | ||
|
||
add_section "Applications in ~/Applications Folder:" "${(@f)user_applications_sizes}" | ||
|
||
# 5. Applications Found via sudo find | ||
# Warning: This step can take a long time | ||
echo "Determining sizes of applications found via sudo find... (this may take some time)" >> $OUTPUT | ||
found_apps_sizes=$(sudo find / -iname "*.app" -type d 2>/dev/null | parallel -j4 ' | ||
app_name=$(basename "{}") | ||
size=$(du -sh "{}" 2>/dev/null | awk "{print "${app_name}: "$1}") | ||
echo "$size" | ||
' | sort -hr) | ||
|
||
add_section "Applications Found via sudo find:" "${(@f)found_apps_sizes}" | ||
|
||
# 6. Packages Installed via pkgutil | ||
pkgutil --pkgs | parallel -j4 ' | ||
pkg_info=$(pkgutil --pkg-info "{}" 2>/dev/null) | ||
if [ $? -eq 0 ]; then | ||
install_location=$(echo "$pkg_info" | grep "volume:" | awk "{print \$2}") | ||
if [ -d "$install_location" ]; then | ||
size=$(du -sh "$install_location" 2>/dev/null | awk "{print "{}: "$1}") | ||
else | ||
size="{}: Installation location not found" | ||
fi | ||
else | ||
size="{}: Information not available" | ||
fi | ||
echo "$size" | ||
' | sort -hr > pkgutil_pkgs_sizes.txt | ||
|
||
pkgutil_pkgs_sizes=$(cat pkgutil_pkgs_sizes.txt) | ||
add_section "Packages Installed via pkgutil:" "${(@f)pkgutil_pkgs_sizes}" | ||
|
||
# 7. Applications Listed via system_profiler | ||
system_profiler SPApplicationsDataType -json | jq -r '.SPApplicationsDataType[] | "\(.name): \(.size)"' | sort -hr > system_profiler_apps_sizes.txt | ||
system_profiler_apps_sizes=$(cat system_profiler_apps_sizes.txt) | ||
add_section "Applications Listed via system_profiler:" "${(@f)system_profiler_apps_sizes}" | ||
|
||
# Completion message | ||
echo "The sizes of the applications have been saved to $OUTPUT." | ||
``` | ||
|
||
Save and Exit the Editor: | ||
|
||
Press `Ctrl + O` and then `Enter` to save the file. | ||
Press `Ctrl + X` to exit the editor. | ||
|
||
## Step 3: Make the Script Executable | ||
|
||
Make the script executable by running the following command in the Terminal: | ||
|
||
```zsh | ||
chmod +x ~/application_size_checker.sh | ||
``` | ||
|
||
## Step 4: Install Necessary Dependencies | ||
|
||
For processing the JSON output from `system_profiler`, we use `jq`. Ensure it is installed by running: | ||
|
||
```zsh | ||
brew install jq | ||
``` | ||
|
||
Additionally, ensure that `parallel` is installed. If not, install it with: | ||
|
||
```zsh | ||
brew install parallel | ||
``` | ||
|
||
If you don't have Homebrew installed, you can install it by following the instructions at [https://brew.sh/](https://brew.sh/). | ||
|
||
## Step 5: Run the Script | ||
|
||
Execute the script by running: | ||
|
||
```zsh | ||
~/application_size_checker.sh | ||
``` | ||
|
||
## Step 6: Verify the Results | ||
|
||
After the script has finished running, you will find a file named `application_size_sorted.txt` on your Desktop. This file contains a complete list of all detected applications and packages with their respective sizes, sorted in descending order. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. See the LICENSE file for details. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
#!/bin/zsh | ||
|
||
# Define output file | ||
OUTPUT=~/Desktop/application_size_sorted.txt | ||
echo "Determining application sizes on your Mac" > $OUTPUT | ||
echo "Created on: $(date)" >> $OUTPUT | ||
echo "--------------------------------------------" >> $OUTPUT | ||
|
||
# Function to add sections | ||
add_section() { | ||
echo -e "\n$1" >> $OUTPUT | ||
echo "--------------------------------------------" >> $OUTPUT | ||
shift | ||
for line in "$@"; do | ||
echo "$line" >> $OUTPUT | ||
done | ||
} | ||
|
||
# 1. Homebrew Formulas | ||
brew list --formula | parallel -j4 ' | ||
formula_path=$(brew --prefix {}) | ||
if [ -d "$formula_path" ]; then | ||
size=$(du -sh "$formula_path" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
else | ||
size="{}: Path not found" | ||
fi | ||
echo "$size" | ||
' | sort -hr > brew_formula_sizes.txt | ||
|
||
brew_formula_sizes=$(cat brew_formula_sizes.txt) | ||
add_section "Homebrew Formulas:" "${(@f)brew_formula_sizes}" | ||
|
||
# 2. Homebrew Casks | ||
brew list --cask | parallel -j4 ' | ||
app_path="/Applications/{}.app" | ||
if [ -d "$app_path" ]; then | ||
size=$(du -sh "$app_path" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
else | ||
# Alternative paths for Casks | ||
app_path="$(brew --prefix)/Caskroom/{}/latest/{}.app" | ||
if [ -d "$app_path" ]; then | ||
size=$(du -sh "$app_path" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
else | ||
size="{}: Application not found" | ||
fi | ||
fi | ||
echo "$size" | ||
' | sort -hr > brew_cask_sizes.txt | ||
|
||
brew_cask_sizes=$(cat brew_cask_sizes.txt) | ||
add_section "Homebrew Casks:" "${(@f)brew_cask_sizes}" | ||
|
||
# 3. Applications in /Applications Folder | ||
ls /Applications | grep ".app" | parallel -j4 ' | ||
size=$(du -sh "/Applications/{}" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
echo "$size" | ||
' | sort -hr > applications_sizes.txt | ||
|
||
applications_sizes=$(cat applications_sizes.txt) | ||
add_section "Applications in /Applications Folder:" "${(@f)applications_sizes}" | ||
|
||
# 4. Applications in ~/Applications Folder | ||
if [ -d ~/Applications ]; then | ||
ls ~/Applications | grep ".app" | parallel -j4 ' | ||
size=$(du -sh "~/Applications/{}" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
echo "$size" | ||
' | sort -hr > user_applications_sizes.txt | ||
user_applications_sizes=$(cat user_applications_sizes.txt) | ||
else | ||
user_applications_sizes="No user-specific applications found." | ||
fi | ||
|
||
add_section "Applications in ~/Applications Folder:" "${(@f)user_applications_sizes}" | ||
|
||
# 5. Applications Found via sudo find | ||
# Warning: This step can take a long time | ||
echo "Determining sizes of applications found via sudo find... (this may take some time)" >> $OUTPUT | ||
found_apps_sizes=$(sudo find / -iname "*.app" -type d 2>/dev/null | parallel -j4 ' | ||
app_name=$(basename "{}") | ||
size=$(du -sh "{}" 2>/dev/null | awk "{print \"${app_name}: \"$1}") | ||
echo "$size" | ||
' | sort -hr) | ||
|
||
add_section "Applications Found via sudo find:" "${(@f)found_apps_sizes}" | ||
|
||
# 6. Packages Installed via pkgutil | ||
pkgutil --pkgs | parallel -j4 ' | ||
pkg_info=$(pkgutil --pkg-info "{}" 2>/dev/null) | ||
if [ $? -eq 0 ]; then | ||
install_location=$(echo "$pkg_info" | grep "volume:" | awk "{print \$2}") | ||
if [ -d "$install_location" ]; then | ||
size=$(du -sh "$install_location" 2>/dev/null | awk "{print \"{}: \"$1}") | ||
else | ||
size="{}: Installation location not found" | ||
fi | ||
else | ||
size="{}: Information not available" | ||
fi | ||
echo "$size" | ||
' | sort -hr > pkgutil_pkgs_sizes.txt | ||
|
||
pkgutil_pkgs_sizes=$(cat pkgutil_pkgs_sizes.txt) | ||
add_section "Packages Installed via pkgutil:" "${(@f)pkgutil_pkgs_sizes}" | ||
|
||
# 7. Applications Listed via system_profiler | ||
system_profiler SPApplicationsDataType -json | jq -r '.SPApplicationsDataType[] | "\(.name): \(.size)"' | sort -hr > system_profiler_apps_sizes.txt | ||
system_profiler_apps_sizes=$(cat system_profiler_apps_sizes.txt) | ||
add_section "Applications Listed via system_profiler:" "${(@f)system_profiler_apps_sizes}" | ||
|
||
# Completion message | ||
echo "The sizes of the applications have been saved to $OUTPUT." | ||
|