Skip to content

Instantly share code, notes, and snippets.

@hatappo
Last active August 14, 2025 12:27
Show Gist options
  • Select an option

  • Save hatappo/9c7e0681f469f2a83d8ea4f968b46022 to your computer and use it in GitHub Desktop.

Select an option

Save hatappo/9c7e0681f469f2a83d8ea4f968b46022 to your computer and use it in GitHub Desktop.
apps with dmg on Mac
cd ~/git
git clone https://gist.github.com/9c7e0681f469f2a83d8ea4f968b46022.git
cd ./9c7e0681f469f2a83d8ea4f968b46022
sh ./main.sh
## appstore
Xcode
Slack
CotEditor
# Image Tools
# Microsoft Remote Desktop
# Pomodoro One # 開発停止
## utility
https://evernote.com/intl/jp/skitch/ Skitch
https://rectangleapp.com/
# https://www.spectacleapp.com/ Spectacle
# https://freemacsoft.net/appcleaner/ AppCleaner
## browser
https://www.google.co.jp/chrome/browser/desktop/ Google Chrome
https://www.microsoft.com/ja-jp/edge/download Microsoft Edge
# https://www.mozilla.org/ja/firefox/new/ Firefox
# https://vivaldi.com/?lang=ja_JP Vivaldi
## communication
# https://www.skype.com/ja/download-skype/skype-for-computer/ Skype
# http://limechat.net/mac/ja.html LimeChat
## editor & IDE
https://www.google.co.jp/ime/ Google japanese ime
# https://code.visualstudio.com/ Visual Studio Code
# https://www.jetbrains.com/idea/ IntelliJ IDEA
# https://developer.android.com/studio/index.html Android Studio
# https://www.xamarin.com/download Xamarin
# http://lighttable.com/ Light Table
# http://pad.haroopress.com/ Haroopad
## application development
# https://www.iterm2.com/ iterm
https://docs.docker.com/docker-for-mac/
# https://dotnet.microsoft.com/download/dotnet-core .NET Core
# http://www.oracle.com/technetwork/java/javase/downloads/index.html Java SE
# https://dev.mysql.com/downloads/workbench/ MySQL Workbench
# https://www.charlesproxy.com/ Charles
# https://kapeli.com/dash Dash
# https://ja.atlassian.com/software/sourcetree SourceTree
# https://www.gitkraken.com/ GitKraken
# https://www.virtualbox.org/ VirtualBox
# https://www.vagrantup.com/ Vagrant
## biz
# https://clients.amazonworkspaces.com/ Amazon WorkSpaces Client
# https://chime.aws/download/ Amazon Chime
# https://quip.com/download Quip
# https://support.vitalsource.com/hc/en-us vitalsource Bookshelf
apps_file="apps.conf.sh"
dmg_app_urls=`cat apps_file | grep -E '^https?://[^ ]+' | cut -d' ' -f1`
url_cnt=`echo $dmg_app_urls | wc -w`
read -p "$url_cnt url will be opend. Continue? (Y/n) " r; if [ "$r" != "Y" ]; then exit 1; fi
for url in $dmg_app_urls; do
echo $url
open $url
done
echo
echo "Install the following apps from *App Store*"
cat apps_file | grep -v -E '^(\s*#|\s*$|https?://[^ ]+)'

Comments are disabled for this gist.