forked from alrra/dotfiles
-
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.
✨ Add Mac App Store command line utility support
Extended the functionality of the utilities shell script, utils.sh, to support commands from the Mac App Store using the 'mas' command line interface. New functions 'mas_install' and 'mas_install_with_confirmation' help automate the installation of MacOS apps. As a part of the change, certain apps which were previously noted to be manually installed from the Mac App Store are now automated in their respective scripts. This includes apps like "Kindle", "GoPro Player + ReelSteady", "Bandwidth+", "Be Focused - Pomodoro Timer", "Presentify - Screen Annotation", "EasyRes", "Magnet", "Itemido: Manage Home Inventory" and "Telephone - VoIP SIP softphone". This update helps the script manage a broader range of applications. Additionally, references to manual installation steps for these apps are removed from 'print_optional_manual_items.sh'. Aliases have been introduced to shorten commonly used 'mas' commands, included in the 'bash_aliases' file. Finally, included 'mas-cli.sh' in 'main.sh' for the installation of 'mas' itself.
- Loading branch information
Showing
9 changed files
with
107 additions
and
9 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
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ main() { | |
./xcode.sh | ||
./rosetta_2.sh | ||
./homebrew.sh | ||
./mas-cli.sh | ||
./../bash.sh | ||
|
||
./git.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,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd "$(dirname "${BASH_SOURCE[0]}")" \ | ||
&& . "../../utils.sh" \ | ||
&& . "./utils.sh" | ||
|
||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
|
||
print_in_purple "\n Mac App Store command line interface\n\n" | ||
|
||
brew_install "mas-cli" "mas" |
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
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
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
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
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
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