├── .github └── FUNDING.yml ├── .gitignore ├── .markdownlint.json ├── .prettierrc ├── LICENSE ├── README.md ├── _config.yml ├── lychee.toml ├── media ├── 15878412922030.png ├── 15878421335213.jpg ├── 15878422056701.jpg ├── 15878423395361.png ├── 1password-alfred.jpg ├── adobe-creative-cloud.png ├── airmail.jpg ├── airmail.png ├── airy.png ├── altair-graphql.png ├── audiohijack.png ├── backup-sync-google.png ├── bartender-hide-personal.jpg ├── bartender-show-personal.jpg ├── bartender.png ├── better-touch-tool.png ├── carbonize.jpg ├── carbonize.png ├── cardhop.png ├── chrome-canary.png ├── chrome.png ├── clean-my-mac.png ├── cleanmymac.jpg ├── cleanshotx.png ├── codekit.png ├── color-snapper.png ├── contexts.png ├── core-shell.png ├── devonagent.jpg ├── devonagent.png ├── devonthink.jpg ├── devonthink.png ├── discord.png ├── dock-perso.jpg ├── docker.png ├── dropbox.png ├── eagle.png ├── ecammlive.png ├── edge.png ├── emojis-stream-deck.png ├── fantastical.png ├── figma.png ├── firefox-nightly.png ├── firefox.png ├── flume.png ├── flux.jpg ├── flux.png ├── forklift-preferences.jpg ├── forklift.png ├── gmail-filters.jpg ├── goodsync.png ├── gpg-suite.png ├── hammerspoon.png ├── hard-disk-manager.png ├── harddiskmanager.jpg ├── haskell.png ├── hazel.png ├── hue-sync.png ├── iconjar.jpg ├── iconjar.png ├── image-optim.png ├── iterm2.png ├── karabiner.png ├── keyboard-maestro.png ├── keykey.png ├── keynote.png ├── loopback.png ├── lungo.png ├── mac-setup-workflow.jpg ├── meetingbar.png ├── messenger.png ├── mindnode.jpg ├── mindnode.png ├── mockoon.png ├── moom.png ├── mouseless.jpg ├── mouseless.png ├── muzzle.png ├── mweb.jpg ├── mweb.png ├── next-meeting-sc.png ├── next-meeting.png ├── noizio.jpg ├── noizio.png ├── notion.png ├── paw.png ├── poedit.png ├── popclip.png ├── postman.png ├── power-prompter.png ├── proxyman.jpg ├── proxyman.png ├── raycast.png ├── reeder.jpg ├── reeder.png ├── rightfont-5.jpg ├── rightfont.png ├── scapple.jpg ├── scapple.png ├── screaming-frog-seo-spider.png ├── screenflow.png ├── scrivener.jpg ├── scrivener.png ├── signal.png ├── sip.png ├── sketch.png ├── sketchpacks.png ├── skype.png ├── slack.png ├── smart-json-editor.png ├── snippetlab-smart.jpg ├── snippetslab.png ├── streamdeck-slack.png ├── streamdeck.png ├── streamlabs-obs.png ├── switch-hosts.png ├── table-plus.png ├── team-viewer.png ├── telegram.png ├── text-sniper.png ├── the-unarchiver.png ├── things.png ├── timing.jpg ├── timing.png ├── tower.jpg ├── tower.png ├── trailer.png ├── twitch.png ├── typefu.png ├── typesy.png ├── unarchiver-options.jpg ├── virtual-box.png ├── visual-studio-code.png ├── vlc.png ├── whatsapp.png └── zeplin.png └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [thedaviddias] 4 | open_collective: thedaviddias 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .MWebMetaData 2 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false, 3 | "MD024": false, 4 | "MD033": false 5 | } 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "tabWidth": 2, 4 | "semi": true, 5 | "singleQuote": true, 6 | "printWidth": 150, 7 | "endOfLine": "lf", 8 | "overrides": [ 9 | { 10 | "files": "*.md", 11 | "options": { 12 | "htmlWhitespaceSensitivity": "ignore", 13 | "proseWrap": "preserve", 14 | "embeddedLanguageFormatting": "off" 15 | } 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-2024 David Dias 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 👾 My Mac OS setup and applications 2 | 3 | My Mac OS setup and the best applications I use as a Web Developer. This is a living document. I regularly update it with new tools and applications that I find useful. If you want to know more, I share more on [my blog](https://ddias.link/blog) and [my newsletter](https://ddias.link/newsletter). 4 | 5 | ## Table of content 6 | 7 | 8 | 9 | 10 | - [Disclaimer](#disclaimer) 11 | - [Usage](#usage) 12 | - [Where to find the right tool?](#where-to-find-the-right-tool) 13 | - [My Hardware](#my-hardware) 14 | - [Setup shell](#setup-shell) 15 | - [Command Line Apps](#command-line-apps) 16 | - [Applications](#applications) 17 | - [Bare minimum](#bare-minimum) 18 | - [Browsers](#browsers) 19 | - [Utilities](#utilities) 20 | - [Automation](#automation) 21 | - [Tasks & time management](#tasks--time-management) 22 | - [Storage & backup management](#storage--backup-management) 23 | - [Code](#code) 24 | - [Reading & Writing](#reading--writing) 25 | - [Communication](#communication) 26 | - [Social Media](#social-media) 27 | - [Design & Web Design](#design--web-design) 28 | - [Audio & Video production](#audio--video-production) 29 | - [Miscellaneous](#miscellaneous) 30 | - [Mac preferences](#mac-preferences) 31 | - [Dock](#dock) 32 | - [Web Applications](#web-applications) 33 | - [Inspiration](#inspiration) 34 | - [Icons and images](#icons-and-images) 35 | 36 | 37 | 38 | 39 | > [!IMPORTANT] 40 | > **Disclaimer:** I have been always passionate about tools. I always loved experimenting until I can find the right tool for the right task. Being a Front-End Developer requires to know the tools that exist and choose the one that will perform the task faster and better. Based on hours of research and testing, I'm sharing all the applications I believe suits the best my work and daily workflow. It's a living MacOS configuration that, I hope, will also save you time for you to enjoy life more!This is a living document. I regularly update it with new tools and applications that I find useful. 41 | 42 | ## Usage 43 | 44 | - I tried to keep the right order you should also follow to install packages and applications on your Mac (particularly the [setup shell](#setup-shell) part) 45 | - Some tools are free and some are not. I'm lucky to have the ability to pay for licences and subscriptions. But if you are not in that situation, 1) You will find free alternatives in the "Alternatives" section of most of the tools, 2) you don't need a paid tool to do an amazing work. Just choose the best tool that suits you and your situation. 46 | 47 | ### Where to find the right tool? 48 | - [Product Hunt](https://www.producthunt.com/?ref=thedaviddias) - By far the best and well-know website where you can find almost everything you need. You will sometimes find a badge ![Upvote on Product Hunt][product-hunt] that redirects to the Product Hunt page. Show some ❤️ to the makers! 49 | - [AlternativeTo](https://alternativeto.net/?ref=thedaviddias) - I regularly use AlternativeTo but find it limited and not always accurate. The "ups" are most of the time not relevant or doesn't reflect what people prefer the most. It's a great place to start if you are looking for a list of alternatives though. 50 | - [Slant](https://www.slant.co/?ref=thedaviddias) and [stackshare](https://stackshare.io/?ref=thedaviddias) - Slant and Stackshare are kind of similar but Stackshare is more developer tools focused. It's a nice source of information to compare apps / web apps. 51 | 52 | ## My Hardware 53 | 54 | I regularly update all [my hardware](https://ddias.link/kit) on a dedicated page on kit.co. Feel free to check it out! 55 | 56 | ## Setup shell 57 | 58 | #### [Xcode 16](https://developer.apple.com/xcode/) 59 | 60 | - Xcode is required for some applications to run. So having Xcode updated just remove the issue of not being able to install some apps. 61 | 62 | ```sh 63 | xcode-select --install 64 | ``` 65 | 66 | #### [Homebrew](https://brew.sh) - The Missing Package Manager for macOS 67 | 68 | ```sh 69 | $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 70 | ``` 71 | 72 | With Homebrew comes `brew-cask` which will allow to install applications with the command line. 73 | 74 | ##### Useful commands for Homebrew 75 | 76 | ```sh 77 | brew update # Fetch latest version of homebrew and formula. 78 | brew search {app name} # Searches all known Casks for a partial or exact match. 79 | brew install {package name} # Install a package 80 | brew info --cask {app name} # Displays information about a given Cask 81 | brew install --cask {app name} # Install the given cask. 82 | brew cleanup 83 | ``` 84 | 85 | ##### [Cakebrew](https://www.cakebrew.com/) (optional) - A GUI for Cask 86 | 87 | ```sh 88 | brew install --cask cakebrew 89 | ``` 90 | 91 | #### ZSH - An alternative shell to Bash 92 | 93 | ```sh 94 | brew install zsh 95 | ``` 96 | 97 | Add this to my `~/.zshrc` 98 | 99 | ```sh 100 | export HOMEBREW_CASK_OPTS="--appdir=/Applications" 101 | ``` 102 | 103 | #### [Oh My Zsh](https://ohmyz.sh/#install) - Framework for managing your Zsh configuration 104 | 105 | Verify that ZSH is correctly installed 106 | 107 | ```sh 108 | zsh --version 109 | ``` 110 | 111 | Additionally, Zsh should be set as the default shell. 112 | Run `echo $SHELL` from a new terminal to confirm. 113 | Expected result: `/usr/bin/zsh` or similar 114 | 115 | ```sh 116 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 117 | ``` 118 | 119 | Check if Oh My Zsh was correctly installed. 120 | 121 | ## Command Line Apps 122 | 123 | ⚠️ Some of the following packages are not essential but highly recommended. Some applications may depend on the installation of these packages. 124 | 125 | #### [GNU Coreutils](https://www.gnu.org/software/coreutils/) - An essential package with basic tools such as ls, rm... 126 | 127 | ```sh 128 | brew install coreutils 129 | ``` 130 | 131 | #### [Wget](https://www.gnu.org/software/wget/) - To download data from the web and ftp, easier than curl 132 | 133 | ```sh 134 | brew install wget 135 | ``` 136 | 137 | #### [Tree](http://mama.indstate.edu/users/ice/tree/) - To create beautiful indented listing of files 138 | 139 | ```sh 140 | brew install tree 141 | 142 | tree -L 1 # to output only the root directories and files 143 | ``` 144 | 145 | #### [Nmap](https://nmap.org/) - A powerful command line network discovery utility 146 | 147 | ```sh 148 | brew install nmap 149 | ``` 150 | 151 | #### [The Silver Searcher](https://github.com/ggreer/the_silver_searcher) - Really fast code searching tool 152 | 153 | ```sh 154 | brew install the_silver_searcher 155 | ``` 156 | 157 | #### [jq](https://stedolan.github.io/jq/) - Lightweight and flexible command-line JSON processor 158 | 159 | ```sh 160 | brew install jq 161 | ``` 162 | 163 | #### [Youtube-dl](https://youtube-dl.org/) - A command line alternative to Airy 164 | ```sh 165 | brew install youtube-dl 166 | 167 | youtube-dl -f best 'link-of-your-own-youtube-video' 168 | ``` 169 | 170 | #### [FFMPEG](https://www.ffmpeg.org/) - To convert videos in multiple formats 171 | 172 | ```sh 173 | brew install tesseract-lang && brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-fdk-aac --with-librsvg --with-libsoxr --with-libssh --with-tesseract --with-libvidstab --with-opencore-amr --with-openh264 --with-openjpeg --with-openssl --with-rubberband --with-webp --with-zeromq --with-zimg --with-srt --with-libvmaf --with-libxml2 --with-game-music-emu --with-libbluray --with-libbs2b --with-libcaca --with-libgsm --with-libmodplug --with-openssl@1.1 --with-rtmpdump --with-speex --with-two-lame --with-wavpack --with-xvid 174 | ``` 175 | 176 | More details [here](https://gist.github.com/clayton/6196167) 177 | 178 | #### [blueutil](https://github.com/toy/blueutil) - CLI for bluetooth on OSX 179 | 180 | ```sh 181 | brew install blueutil 182 | ``` 183 | 184 | #### [Speedtest-cli](https://github.com/sivel/speedtest-cli) - The command line version of Speedtest.net 185 | 186 | ```sh 187 | brew install speedtest-cli 188 | ``` 189 | 190 | #### [Imagemagick](https://imagemagick.org/index.php) - You can do almost everything to edit/convert images and pdfs 191 | 192 | ```sh 193 | brew install imagemagick 194 | ``` 195 | 196 | #### [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Programmatically reorganize your screens layout 197 | 198 | ```sh 199 | brew tap jakehilborn/jakehilborn && brew install displayplacer 200 | ``` 201 | 202 | #### Fonts - Installing some fonts 203 | 204 | ```sh 205 | brew tap homebrew/cask-fonts 206 | 207 | brew install --cask \ 208 | font-fira-code \ 209 | font-source-code-pro font-source-code-pro-for-powerline \ 210 | font-source-sans-pro 211 | ``` 212 | 213 | #### [MAS](https://github.com/mas-cli/mas) - Install App Store apps from the command line 214 | 215 | ```sh 216 | brew install mas 217 | 218 | mas search {app name} # To search for an app 219 | ``` 220 | 221 | #### [Ruby (rbenv)](https://github.com/rbenv/rbenv) - To manage multiple versions of Ruby 222 | 223 | ```sh 224 | brew install rbenv ruby-build rbenv-default-gems rbenv-gemset 225 | echo 'eval "$(rbenv init -)"' >> ~/.zshrc 226 | source ~/.zshrc # Apply changes 227 | 228 | rbenv install {version} 229 | ``` 230 | 231 | #### [nvm](https://github.com/nvm-sh/nvm) - Easily manage your node versions 232 | 233 | ⚠️ (never use brew to install nvm) 234 | 235 | ```sh 236 | wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash 237 | ``` 238 | 239 | Add these lines in the `$HOME/.zshrc` file: 240 | 241 | ```sh 242 | export NVM_DIR="$HOME/.nvm" 243 | [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm 244 | ``` 245 | 246 | And these lines to automatically switch your node version based on the `nvmrc` file. 247 | 248 | ```sh 249 | # place this after nvm initialization! 250 | autoload -U add-zsh-hook 251 | load-nvmrc() { 252 | local node_version="$(nvm version)" 253 | local nvmrc_path="$(nvm_find_nvmrc)" 254 | 255 | if [ -n "$nvmrc_path" ]; then 256 | local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")") 257 | 258 | if [ "$nvmrc_node_version" = "N/A" ]; then 259 | nvm install 260 | elif [ "$nvmrc_node_version" != "$node_version" ]; then 261 | nvm use 262 | fi 263 | elif [ "$node_version" != "$(nvm version default)" ]; then 264 | echo "Reverting to nvm default version" 265 | nvm use default 266 | fi 267 | } 268 | add-zsh-hook chpwd load-nvmrc 269 | load-nvmrc 270 | ``` 271 | 272 | To default a specific node version: `nvm alias default {version}` 273 | 274 | #### [yarn](https://github.com/yarnpkg/yarn) - Fast, reliable, and secure dependency management. 275 | 276 | ```sh 277 | brew install yarn 278 | ``` 279 | 280 | #### [Act](https://github.com/nektos/act) - Run Github Actions Locally 281 | 282 | ```sh 283 | brew install nektos/tap/act 284 | ``` 285 | 286 | #### [Git standup](https://github.com/kamranahmedse/git-standup) - Recall what you did on the last working day 287 | 288 | ```sh 289 | brew install git-standup 290 | ``` 291 | 292 | #### [Github CLI](https://cli.github.com/) - Github on the command line 293 | 294 | ```sh 295 | brew install github/gh/gh 296 | ``` 297 | 298 | #### [Quick Look plugins](https://github.com/sindresorhus/quick-look-plugins) 299 | 300 | ```sh 301 | brew install --cask \ 302 | qlcolorcode qlmarkdown qlprettypatch qlstephen \ 303 | qlimagesize \ 304 | quicklook-csv quicklook-json epubquicklook 305 | ``` 306 | 307 | ### Node packages to install globally 308 | 309 | List all NPM package installed globally: `npm list -g --depth 0` 310 | 311 | * [Netlify CLI]() - `npm install netlify-cli -g` 312 | * Gatsby CLI - `npm install -g gatsby-cli` 313 | * NPM-check - `npm install -g npm-check` 314 | * Yarn-check - `npm install -g yarn-check` 315 | * AWS Amplify CLI - `npm install -g @aws-amplify/cli` 316 | * Vercel CLI - `npm i -g vercel` 317 | * Create React App - `npx create-react-app my-app` 318 | * [dotenv-cli](https://www.npmjs.com/package/dotenv-cli) - `npm install -g dotenv-cli` 319 | * Gitmoji - `npm i -g gitmoji-cli` 320 | * Release-it - `npm install --global release-it` 321 | * Plop - `npm i -g plop` 322 | 323 | 324 | ## Applications 325 | 326 | This is a complete list of all the applications I have on my personal and professional Mac (some apps are only on my personal computer). 327 | 328 | > 🎁 Some applications can be bought individually or you can [subscribe Setapp](https://go.setapp.com/invite/yaychk0m) for a 7-day free trial to test multiple applications and decide the one you want to use! 329 | 330 | ### Bare minimum 331 | 332 | This is the list of the most essentials apps I would install if I was limited in the number of apps to have. 333 | 334 | 335 | 336 | #### [Little Snitch](https://www.obdev.at/products/littlesnitch/index.html) - Control incoming/outgoing network traffic 337 | ![Licence ~$30][licence-30] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/little-snitch-4) 338 | 339 |
340 | What for? - What I ❤️ - What I 👎 341 | 342 | ##### What for? 343 | 344 | * Little Snitch is perfect to block outgoing or incoming connections. 345 | * When **I'm on the go** and using my mobile data, I usually block some heavy connections so I limit the amount of data spent. 346 | 347 | ##### What I ❤️ 348 | 349 | * Easy to use and clean UI 350 | 351 | ##### What I 👎 352 | 353 | * I wish the confirmation window could save "my preferences", so I would not have to select "forever" every time. 354 | 355 |
356 | 357 | ##### CLI installation 358 | ```sh 359 | brew install --cask little-snitch 360 | ``` 361 | 362 | 363 | 364 | #### [1Password](https://1password.com) - Password manager 365 | ![Yearly subscription][subscription-yearly] ![High usage][usage-high] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/1password-7-for-mac-and-windows) 366 | 367 |
368 | What for? - What I ❤️ - What I 👎 369 | 370 | ##### What for? 371 | 372 | * **Generate all of my passwords** with it and keep everything in a secured and encrypted vault kept secure by my one master password. 373 | * No longer need to remember passwords and I now have a unique password for every website **[activating two factor authentication](https://support.1password.com/one-time-passwords/)** wherever possible. 374 | * All my **applications licences** are saved in 1Password 375 | 376 | ##### What I ❤️ 377 | 378 | * 1Password is a native MacOS app and it's probably one of the reason I choose to move away from [LastPass](https://www.lastpass.com/) in 2019. 379 | * Fast 380 | * I can save not just passwords but secure notes, bank accounts, licences... 381 | * Have a shared vault with my wife and being able to send her by Airdrop a new entry. 382 | 383 | ##### What I 👎 384 | 385 | * I loved that LastPass could recognize a form and automatically filled the inputs on a Website. 1Password requires you to 1) Click on the browser extension, 2) Click on "autofill" 386 | * Not sure if it will be one day possible, but unlocking 1Password with the Apple Watch would be awesome. 387 | 388 |
389 | 390 | ##### Extensions / plugins 391 | * [Chrome extension](https://chrome.google.com/webstore/detail/1password-x-%E2%80%93-password-ma/aeblfdkhhhdcdjpifhhbdiojplfjncoa?hl=en) - Update settings and set the shortcut to `⌃⇧P` 392 | * [Setting 1Password 1Click Bookmarks in Alfred](https://www.alfredapp.com/help/features/1password/) 393 | 394 | 395 | 396 | ##### CLI installation 397 | ```sh 398 | brew install --cask 1password 399 | 400 | mas install 1333542190 401 | ``` 402 | 403 | 404 | 405 | #### [Alfred 4](https://www.alfredapp.com) - Application Launcher, the best alternative for Spolight 406 | ![Free][licence-free-limit] ![Licence ~$30][licence-30] ![Backup Dropbox][backup-dropbox] ![High usage][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/alfred-3-3) 407 | 408 |
409 | What for? - What I ❤️ - What I 👎 410 | 411 | ##### What for? 412 | 413 | * **Open or switch quickly** to any application 414 | * **Text expansions**: previously using [TextExpander](https://textexpander.com/), I switched in using the snippet feature in Alfred. 415 | 416 | ##### What I ❤️ 417 | 418 | * Unlimited possibilities to develop any workflows 419 | * Integration with 1Password 420 | * Price 421 | * Tons of options 422 | 423 | ##### What I 👎 424 | 425 | * I wish some features like "Snippets", would be more advanced to compete with tools like TextExpander or [Typinator](https://www.ergonis.com/products/typinator/) 426 | 427 |
428 | 429 | ##### List of workflows I use 430 | 431 | This is the list of the workflows I used the most (files saved in Dropbox): 432 | 433 | - [caniuse](https://github.com/willfarrell/alfred-caniuse-workflow) 434 | - [DEVONThink Search](https://www.packal.org/workflow/devonthink-search) - To search on my DEVONThink databases 435 | - [F.lux](https://www.packal.org/workflow/flux-0) - Change the settings of F.lux 436 | - [Lorem Ipsum](https://www.packal.org/workflow/lorem-ipsum-0) - To generate random Lorem Ipsum text 437 | - [MDN Search](https://www.packal.org/workflow/mdn-search) - One of the best documentation 438 | - [Snippets Lab](http://www.packal.org/workflow/search-snippetslab) - Search code snippets 439 | - [Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Play, Pause, Next, the missing remote for Spotify 440 | - [Things](https://www.packal.org/workflow/things) - Access my tasks from Alfred 441 | - [Alfred Maestro](https://github.com/iansinnott/alfred-maestro) - Search on Keyboard Maestro using Alfred 442 | - [Terminal Finder](https://www.packal.org/workflow/terminalfinder) - Type a command in Alfred and append it directly in the terminal 443 | - [Copy URL](https://www.packal.org/workflow/copy-url) - Copy the current browser tab URL and deliver it in the markdown format 444 | 445 | ##### CLI installation 446 | ```sh 447 | brew install --cask alfred 448 | ``` 449 | 450 | 451 | 452 | #### [iTerm2](https://www.iterm2.com/downloads.html) - The replacement for terminal 453 | ![Free][licence-free] ![Usage high][usage-high] ![Backup Dropbox][backup-dropbox] [![Show your support][support]](https://www.iterm2.com/donate.html) [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/iterm2) 454 | 455 |
456 | What for? - What I ❤️ - What I 👎 457 | 458 | ##### What for? 459 | 460 | * Because the native MacOS terminal is ugly and limited in terms of personalization and functionalities. 461 | 462 | ##### What I ❤️ 463 | 464 | * The number of options 465 | * The possibility to create multiple profiles 466 | * Password manager 467 | 468 | ##### What I 👎 469 | 470 | * 0️⃣ 471 | 472 |
473 | 474 | ##### CLI installation 475 | ```sh 476 | brew install --cask iterm2 477 | ``` 478 | 479 | ### Browsers 480 | ![Free][licence-free] 481 | 482 | 483 | 484 | #### [Google Chrome](https://www.google.com/chrome/) 485 | ![Proprietary backup][backup-proprietary] 486 | 487 | Multiple profiles 488 | - Professional user 489 | - Personal user 490 | - Accessibility user 491 | 492 | ##### Chrome extensions 493 | * [Feedly Mini](https://chrome.google.com/webstore/detail/feedly-mini/ndhinffkekpekljifjkkkkkhopnjodja?hl=en) - Easily save the RSS feed of the current website 494 | * [Adblock Plus](https://chrome.google.com/webstore/detail/adblock-plus-free-ad-bloc/cfhdojbkjhnklbpkdaibdccddilifddb?hl=en) - Because I prefer to limit ads 495 | * [1Password](https://chrome.google.com/webstore/detail/1password-x-%E2%80%93-password-ma/aeblfdkhhhdcdjpifhhbdiojplfjncoa?hl=en) - 1Password companion 496 | * [Tabs Mania](https://chrome.google.com/webstore/detail/tabs-mania/kpehljmacelghfpbkoajiigcaijjdogf) - Extension I built to manage tabs 497 | * [Toolbar Spacer 1](https://chrome.google.com/webstore/detail/toolbar-spacer/golladjmjodbefcoombodcdhimkmgemd?hl=en) - I prefer to separate my extensions visually 498 | * [Clip to DEVONthink](https://chrome.google.com/webstore/detail/clip-to-devonthink/pjoafdokmbmkpolhcnmnkgaicbajigcc?hl=en) - Clip the URL, text or screenshot the page and save it in DEVONthink 499 | * [Save to Notion](https://chrome.google.com/webstore/detail/notion-web-clipper/knheggckgoiihginacbkhaalnibhilkk?hl=en) - Save a page, text or anything else to Notion 500 | * [Add to Things 3](https://chrome.google.com/webstore/detail/add-to-things-3/kakcfbhogeepoebcaidchmhphjeknpne?hl=en) - Add the current URL to Things 501 | * [Eagle](https://chrome.google.com/webstore/detail/eagle-save-images-faster/lieogkinebikhdchceieedcigeafdkid?hl=en) - Save images to Eagle (love the drag and drop functionality that works with any image) 502 | * [What Runs](https://chrome.google.com/webstore/detail/whatruns/cmkdbmfndkfgebldhnkbfhlneefdaaip?hl=en) - Discover what runs a website 503 | * [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) - The required tool that help to inspect any React component 504 | * [Grammarly](https://chrome.google.com/webstore/detail/grammarly-for-chrome/kbfnbcaeplbcioakkpcpgfkobkghlhen?hl=en) - The life saving tool that help to fix writing errors 505 | * CSS Scan 506 | * [Session Budy](https://chrome.google.com/webstore/detail/session-buddy/edacconmaakjimmfgnblocblbcdcpbko?hl=en) - 507 | * [Keepa](https://chrome.google.com/webstore/detail/keepa-amazon-price-tracke/neebplgakaahbhdphmkckjjcegoiijjo?hl=en) - Amazon price tracker: know when to buy and when to wait 508 | * [VisBug](https://chrome.google.com/webstore/detail/visbug/cdockenadnadldjbbgcallicgledbeoc?hl=en) - Open source web design debug tool for designers (and developers) 509 | * [JSONView](https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en) - To view JSON documents in your browser 510 | * [Momentum](https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en) - The classic and beautiful tab replacement 511 | 512 | ##### CLI installation 513 | ```sh 514 | brew install --cask google-chrome 515 | ``` 516 | 517 | 518 | 519 | #### [Google Chrome Canary](https://www.google.com/chrome/canary/) 520 | 521 | ##### CLI installation 522 | ```sh 523 | brew install --cask google-chrome-canary 524 | ``` 525 | 526 | 527 | 528 | #### [Firefox](https://www.mozilla.org/en-CA/firefox/new/) 529 | 530 | ##### CLI installation 531 | ```sh 532 | brew install --caskfirefox 533 | ``` 534 | 535 | 536 | 537 | #### [Firefox Nightly](https://www.mozilla.org/en-US/firefox/channel/desktop/) 538 | 539 | ##### CLI installation 540 | ```sh 541 | brew install --cask firefox-nightly 542 | ``` 543 | 544 | 545 | 546 | #### [Microsoft Edge](https://www.microsoft.com/en-us/edge) - The browser from Microsoft 547 | 548 | ##### CLI installation 549 | ```sh 550 | brew install --cask microsoft-edge 551 | ``` 552 | 553 | ### Utilities 554 | 555 | 556 | 557 | #### [Bartender 3](https://www.macbartender.com/) - Organize menu bar icons 558 | ![Licence ~$20][licence-20] ![High usage][usage-high] 559 | 560 | ##### Screenshots 561 | 562 | - Pro 563 | - Show view 564 | 565 | - Hide view 566 | 567 | - Personal 568 | - **Show view** 569 | 570 | ![bartender-show-personal](media/bartender-show-personal.jpg) 571 | 572 | (Trailer, Mouseless, SnippetsLabs, PopClip, Magnet, Timing) 573 | 574 | - **Hide view** 575 | 576 | ![bartender-hide-personal](media/bartender-hide-personal.jpg) 577 | 578 | (f.lux, Hammerspoon, Dropbox, Google Backup, Airplay, Wifi) 579 | 580 |    581 |
582 | What for? - What I ❤️ - What I 👎 583 | 584 | ##### What for? 585 | 586 | * Keep your bar icons organize 587 | * Hide some non-essentials icons but make them still available 588 | 589 | ##### What I ❤️ 590 | 591 | * Simple to use 592 | * Do the job 593 | 594 | ##### What I 👎 595 | 596 | * 0️⃣ 597 | 598 |
599 | 600 | ##### CLI installation 601 | ```sh 602 | brew install --cask bartender 603 | ``` 604 | 605 | 606 | 607 | #### [f.lux](https://justgetflux.com/) - Reduce eyes fatigue 608 | ![Free][licence-free] ![Usage high][usage-high] [![Show your support][support]](https://justgetflux.com/promo/paypal2.html) [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/f-lux) 609 | 610 |
611 | What for? - What I ❤️ - What I 👎 612 | 613 | ##### What for? 614 | 615 | * Makes it easy for my eyes 616 | 617 | ##### What I ❤️ 618 | 619 | * Free 620 | * It works! Can stay longer front of my screen without tiredness or headaches. 621 | 622 | ##### What I 👎 623 | 624 | * 0️⃣ 625 | 626 |
627 | 628 | 629 | 630 | ##### CLI installation 631 | ```sh 632 | brew install --cask flux 633 | ``` 634 | 635 | 636 | 637 | #### [PopClip](https://pilotmoon.com/popclip/) - Giving more power to my mouse 638 | ![Licence ~$10][licence-10] ![Usage high][usage-high] ![Backup Dropbox for the extensions][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/popclip) 639 | 640 |
641 | What for? - What I ❤️ - What I 👎 642 | 643 | ##### What for? 644 | 645 | * Gives more power to your mouse and save you few clicks. 646 | 647 | ##### What I ❤️ 648 | 649 | * Most of the apps I use in a daily basis have their extension 650 | * I can send any text I highlight in a page to DevonThink or Things 651 | 652 | ##### What I 👎 653 | 654 | * I wish I could disable it on some websites 655 | 656 |
657 | 658 | - List of the [extensions I use](https://pilotmoon.com/popclip/extensions/) (files saved on Dropbox) 659 | - [Past and Match Style](https://pilotmoon.com/popclip/extensions/ext/PasteAndMatch.popclipextz) 660 | - [Alfred](https://pilotmoon.com/popclip/extensions/ext/Alfred.popclipextz) 661 | - [Things 3](https://pilotmoon.com/popclip/extensions/ext/Things3.popclipextz) 662 | - [DEVONthink 3](https://pilotmoon.com/popclip/extensions/ext/DEVONthink3.popclipextz) 663 | - [Highlight](https://pilotmoon.com/popclip/extensions/ext/Highlight.popclipextz) 664 | - [SnippetLab](https://pilotmoon.com/popclip/extensions/ext/SnippetsLab.popclipextz) 665 | - [Slack](https://pilotmoon.com/popclip/extensions/ext/Slack.popclipextz) 666 | - [Bitly](https://pilotmoon.com/popclip/extensions/ext/Bitly.popclipextz) 667 | - [Terminal](https://pilotmoon.com/popclip/extensions/ext/RunCommand.popclipextz) 668 | - [Fantastical 3](https://pilotmoon.com/popclip/extensions/ext/Fantastical3.popclipextz) 669 | 670 | - Excluded apps 671 | 672 | ##### CLI installation 673 | ```sh 674 | brew install --cask popclip 675 | ``` 676 | 677 | 678 | 679 | #### [Contexts](https://contexts.co) - Window switcher 680 | ![Licence ~$10][licence-10] ![Usage high][usage-high] 681 | 682 | - Shortcut used: 683 | ctrl + space 684 | 685 | ##### CLI installation 686 | ```sh 687 | brew install --cask contexts 688 | ``` 689 | 690 | 691 | 692 | #### [CleanShot X](https://getcleanshot.com/?ref=thedaviddias) - Capture your Mac’s screen like a pro. 693 | ![Licence ~$30][licence-30] ![Usage high][usage-high] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/cleanshot-x) 694 | 695 |
696 | What for? - What I ❤️ - What I 👎 697 | 698 | ##### What for? 699 | 700 | * Doing screenshots and quickly send it to my colleagues 701 | 702 | ##### What I ❤️ 703 | 704 | * All the options you can imagine to have in a screenshot application. 705 | * Can easily rename a file before saving it 706 | * Scrolling capture 707 | * Ability to save as a GIF or a video format 708 | * The Quick Access that keeps the last screenshots as an overlay 709 | * The option to enable "Do Not Disturb" while recording 710 | 711 | ##### What I 👎 712 | 713 | * 0️⃣ 714 | 715 |
716 | 717 | ##### CLI installation 718 | ```sh 719 | brew install --cask cleanshot 720 | ``` 721 | 722 | #### Alternatives 723 | * Mac (free): [Kap](https://getkap.co/?ref=thedaviddias) 724 | * Windows (paid): [Snagit](https://www.techsmith.com/screen-capture.html) 725 | 726 | 727 | 728 | #### [TextSniper](https://textsniper.app/) - Extract text from images and videos 729 | ![Licence ~$10][licence-10] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/textsniper) 730 | 731 | 732 | 733 | #### [MeetingBar](https://apps.apple.com/us/app/meetingbar/id1532419400) - Never miss a meeting again 734 | ![Free][licence-free] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/meetingbar) 735 | 736 |
737 | What for? - What I ❤️ - What I 👎 738 | 739 | ##### What for? 740 | 741 | * Show you your next meeting in your icon bar 742 | 743 | ##### What I ❤️ 744 | 745 | * Free 746 | * Don't need to open an app or click anywhere to see my next meeting 747 | * Direct access to open Google meet, Zoom and most chat providers 748 | 749 | ##### What I 👎 750 | 751 | * 0️⃣ 752 | 753 |
754 | 755 | --- 756 | 757 | 758 | 759 | #### [Moom](https://manytricks.com/moom/) - Move and zoom windows 760 | ![Licence ~$10][licence-10] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/moom) 761 | 762 | 763 | 764 | #### [CleanMyMac X](https://macpaw.com/cleanmymac) - To maintain my Mac as he was new 765 | ![Licence ~$50][licence-50] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/cleanmymac-x) 766 | 767 |
768 | What for? - What I ❤️ - What I 👎 769 | 770 | ##### What for? 771 | 772 | * Keep your Mac clean, up-to-date and find any big file (and much more) 773 | 774 | ##### What I ❤️ 775 | 776 | * Uninstall properly applications, if you remove an app from the Application folder, it automatically suggest to remove app's dependency files 777 | * Many file management tools in one application 778 | * Space lens 779 | * Give me access to login items 780 | * Easily update apps 781 | 782 | ##### What I 👎 783 | 784 | * 0️⃣ 785 | 786 |
787 | 788 | 789 | 790 | ##### CLI installation 791 | ```sh 792 | brew install --cask cleanmymac 793 | ``` 794 | 795 | 796 | 797 | #### [Muzzle](http://muzzleapp.com) - Silence embarrassing notifications 798 | ![Free][licence-free] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/muzzle) 799 | 800 | 801 | 802 | #### [Lungo](https://sindresorhus.com/lungo) - Prevent your Mac from going to sleep 803 | ![Free][licence-free] ![Usage low][usage-low] [![Show your support][support]](https://sindresorhus.com/donate) [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/lungo) 804 | 805 | 806 | 807 | #### [Stream Deck](https://www.elgato.com/en/gaming/downloads) - Defining actions on buttons 808 | ![Free][licence-free] ![Usage medium][usage-medium] ![Backup iCloud][backup-icloud] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/elgato-stream-deck) 809 | 810 | * I have [few profiles]() 811 | 812 | ##### CLI installation 813 | ```sh 814 | brew install --cask elgato-stream-deck 815 | ``` 816 | 817 | 818 | 819 | #### [Noizio](https://noiz.io/) - I love birds 820 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/noizio) 821 | 822 | * I use to play different ambients when coding or working in general. 823 | * I also use [Portal](https://portal.app/) and [Thunderspace](https://apps.apple.com/us/app/thunderspace-rain-sleep-sounds/id636485814) on my iPhone. 824 | 825 | 826 | 827 | ##### CLI installation 828 | ```sh 829 | brew install --casknoizio 830 | 831 | mas install 928871589 832 | ``` 833 | 834 | 835 | 836 | #### [Mouseless](https://mouseless.app/) - Practice and learn new keyboard's shortcuts 837 | ![Licence ~$20][licence-20] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/mouseless) 838 | 839 |
840 | What for? - What I ❤️ - What I 👎 841 | 842 | ##### What for? 843 | 844 | * To learn new shortcuts and use less my mouse 845 | 846 | ##### What I ❤️ 847 | 848 | * Automatically suggest shortcuts based on the current app 849 | 850 | ##### What I 👎 851 | 852 | * I wish I could easily add my shortcuts 853 | * Personalize some shortcuts to work with my keyboard 854 | 855 |
856 | 857 | 858 | 859 | --- 860 | 861 | 862 | #### [TeamViewer](https://www.teamviewer.com/en/) - Remote control 863 | ![Free][licence-free] ![Usage low][usage-low] 864 | 865 | I only use TeamViewer when I need to debug my Mom's computer (which is located in France). 866 | 867 | 868 | 869 | #### [Cardhop](https://flexibits.com/cardhop) - Contacts lists management 870 | ![Licence ~$30][licence-30] ![Backup iCloud][backup-icloud] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/cardhop) 871 | 872 | - I use Cardhop occasionally to ensure my contact list is up to date or to easily add missing information or missing birthday dates. 873 | - I synchronise my list of Contacts on iCloud and [Gmail Contacts](https://contacts.google.com/) to avoid duplicates. 874 | 875 | ### Automation 876 | 877 | 878 | 879 | #### [Keyboard Maestro](https://www.keyboardmaestro.com/main/) - The most powerful option to automate EVERYTHING on Mac 880 | ![Licence ~$30][licence-30] ![Usage high][usage-high] ![Backup Dropbox][backup-dropbox] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/keyboard-maestro) 881 | 882 |
883 | What for? - What I ❤️ - What I 👎 884 | 885 | ##### What for? 886 | 887 | * Automate your Mac 888 | 889 | ##### What I ❤️ 890 | 891 | * Unlimited possibilities and automations 892 | * One of the reason I own Macs since few years 893 | 894 | ##### What I 👎 895 | 896 | * Not enough updates 897 | * You can find examples on Keyboard Maestro forum, but I wish to have more examples and content within the app. 898 | 899 |
900 | 901 | ##### Extensions 902 | 903 | * [Alfred Maestro](https://github.com/iansinnott/alfred-maestro) - Search on Keyboard Maestro using Alfred 904 | 905 | ##### CLI installation 906 | ```sh 907 | brew install --cask keyboard-maestro 908 | ``` 909 | 910 | 911 | 912 | #### [Hazel](https://www.noodlesoft.com/) - Automate repetitive tasks in a few clicks 913 | ![Licence ~$30][licence-30] ![Usage high][usage-high] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/hazel-4-0) 914 | 915 |
916 | What for? - What I ❤️ - What I 👎 917 | 918 | ##### What for? 919 | 920 | * Watch folders and create triggers to launch a specified action 921 | 922 | ##### What I ❤️ 923 | 924 | * Simpler and faster than Keyboard Maestro to configure 925 | * Hability to import / export rules 926 | 927 | ##### What I 👎 928 | 929 | * Delay when I cancel a task. Hazel continue running even I disabled one of the rules. Need to "hard cancel" Hazel sometimes. 930 | 931 |
932 | 933 | ##### CLI installation 934 | ```sh 935 | brew install --cask hazel 936 | ``` 937 | 938 | 939 | 940 | #### [Raycast](https://raycast.com/) - Control tools with few keystrokes 941 | ![Free][licence-free] ![Usage medium][usage-medium] 942 | 943 | 944 | ##### CLI installation 945 | ```sh 946 | brew install --cask raycast 947 | ``` 948 | 949 | 950 | 951 | #### [Karabiner](https://karabiner-elements.pqrs.org/) - Remapping my keyboards 952 | ![Free][licence-free] ![Usage medium][usage-medium] ![Backup Github][backup-github] [![Show your support][support]](https://karabiner-elements.pqrs.org/docs/pricing/#supporting-this-project) [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/karabiner) 953 | 954 | 955 | 956 | #### [BetterTouch Tool](https://folivora.ai/) - Customize multiple devices on the Mac 957 | ![Licence ~$30][licence-30] ![Usage medium][usage-medium] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/bettertouchtool) 958 | 959 | ##### CLI installation 960 | ```sh 961 | brew install --caskbettertouchtool 962 | ``` 963 | 964 | 965 | 966 | #### [Hammerspoon](https://www.hammerspoon.org/) - OSX automation using Lua 967 | ![Free][licence-free] ![Usage low][usage-low]![Backup Github][backup-github] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/hammerspoon-2) 968 | 969 | ##### CLI installation 970 | ```sh 971 | brew install --caskhammerspoon 972 | ``` 973 | 974 | ### Tasks & time management 975 | 976 | 977 | 978 | #### [Fantastical](https://flexibits.com/fantastical) - Calendar management 979 | ![Free with limits][licence-free-limit] ![High usage][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/fantastical-3-0) 980 | 981 | - I use Fantastical to manage personal and professional events. 982 | - I always view my events from `Week` view. And shows 5 days with 16h shown for all days. This lets me have a perspective over what I have to do now. 983 | 984 |
985 | What for? - What I ❤️ - What I 👎 986 | 987 | ##### What for? 988 | 989 | * An better alternative to the native calendar 990 | 991 | ##### What I ❤️ 992 | 993 | * Integration with Reminders and Meetup 994 | * Lightweight 995 | * Easy to use 996 | * Lot of personalization options 997 | 998 | ##### What I 👎 999 | 1000 | * I usually understand and don't bother too much with subscriptions, but $52 a year is too much in comparison with other apps I used. Around $35 would make more sense to me. I'm using the free version and it's enough for my needs. 1001 | * It's clearly a "trap": when I access the premium details in the preferences, my only option is to click on "Start trial" or Force quit the app... I'm not fan of that. 1002 | 1003 |
1004 | 1005 | ##### CLI installation 1006 | ```sh 1007 | brew install --caskfantastical 1008 | ``` 1009 | 1010 | 1011 | 1012 | #### [Things](https://culturedcode.com/things/) - Task manager 1013 | ![Licence ~$30][licence-30] ![High usage][usage-high] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/things-3-0) 1014 | 1015 | - I used [Todoist](https://todoist.com/) for few years but decided to try Things, and even I miss some options from Todoist, I'm loving using Things. 1016 | 1017 |
1018 | What for? - What I ❤️ - What I 👎 1019 | 1020 | ##### What for? 1021 | 1022 | * Organize my todos and projects 1023 | 1024 | ##### What I ❤️ 1025 | 1026 | * The UI 1027 | * The integration with Shortcuts (iPad OS and iOS) 1028 | * Integration with Reminders and a lot of other apps 1029 | * Organize by area and projects 1030 | 1031 | ##### What I 👎 1032 | 1033 | * Would be awesome to integrate things with other apps through Zapier 1034 | 1035 |
1036 | 1037 | ##### CLI installation 1038 | ```sh 1039 | brew install --caskthings 1040 | 1041 | mas install 904280696 1042 | ``` 1043 | 1044 | 1045 | 1046 | #### [Timing](https://timingapp.com/?lang=en) - To record everything I do without manual action 1047 | ![Yearly subscription][subscription-yearly] ![High usage][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/timing-2-3) 1048 | 1049 | 1050 | 1051 | ##### CLI installation 1052 | ```sh 1053 | brew install --casktiming 1054 | ``` 1055 | 1056 | ### Storage & backup management 1057 | 1058 | I've used Google One many years, but decide to use Dropbox instead. The two main reasons are: integration with most of the apps I used and the offline mode out of the box. 1059 | 1060 | 1061 | 1062 | #### [Dropbox](https://db.tt/4dn59Jv3od) - Online Cloud Backup 1063 | ![Monthly subscription][subscription-montly] ![Usage high][usage-high] 1064 | 1065 | I've used Google Drive storage few years but use now mainly Dropbox because of the integration with a lot of Mac OS, iOs and iPad OS apps. 1066 | 1067 | ##### To DO after install 1068 | - [ ] Select `Apps` and `Screenshots` folders to sync 1069 | 1070 |
1071 | What for? - What I ❤️ - What I 👎 1072 | 1073 | ##### What for? 1074 | 1075 | * Backup storage 1076 | 1077 | ##### What I ❤️ 1078 | 1079 | * Integration with a lot of apps 1080 | * Offline / online possibility 1081 | * Faster then Google Drive for the synchronization 1082 | 1083 | ##### What I 👎 1084 | 1085 | * I wish I could access the "Selective Sync" with fewer clicks 1086 | 1087 |
1088 | 1089 | ##### CLI installation 1090 | ```sh 1091 | brew install --caskdropbox 1092 | ``` 1093 | 1094 | 1095 | 1096 | #### [Google Backup Up & Sync](https://www.google.com/drive/download/backup-and-sync/) 1097 | ![Free][licence-free] ![Usage high][usage-high] 1098 | 1099 | ##### To DO after install 1100 | - [ ] Choose folders to sync 1101 | 1102 | 1103 | 1104 | #### [ForkLift](https://binarynights.com/) - Dual pane file manager and file transfer client for macOS 1105 | ![Licence ~$30][licence-30] ![Backup Dropbox][backup-dropbox] ![Usage medium][usage-medium] 1106 | 1107 |
1108 | What for? - What I ❤️ - What I 👎 1109 | 1110 | ##### What for? 1111 | 1112 | * Copy-paste with queue and access remote folders 1113 | 1114 | ##### What I ❤️ 1115 | 1116 | * The copy-paste queue that allow me to pause or resume 1117 | * Access remote folders (FTP, Dropbox, S3, Backblaze B2) 1118 | 1119 | ##### What I 👎 1120 | 1121 | * Sometime crashes or keep "copying" but is actually blocked. 1122 | 1123 |
1124 | 1125 | ##### To DO after install 1126 | - [ ] *Sync favorites* with Dropbox 1127 | 1128 | 1129 | 1130 | ##### CLI installation 1131 | ```sh 1132 | brew install --caskforklift 1133 | 1134 | mas install 412448059 1135 | ``` 1136 | 1137 | 1138 | 1139 | #### [The Unarchiver](https://theunarchiver.com/) - The missing RAR and Zip unarchiver 1140 | ![Free][licence-free] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/the-unarchiver-4-0) 1141 | 1142 | 1143 | ![unarchiver-options](media/unarchiver-options.jpg) 1144 | 1145 | ##### CLI installation 1146 | ```sh 1147 | brew install --caskthe-unarchiver 1148 | 1149 | mas install 425424353 1150 | ``` 1151 | 1152 | 1153 | 1154 | #### [Hard Disk Manager](https://www.paragon-software.com/hdm-mac/) - Maintain and manage my external hard drives 1155 | ![Licence ~$65][licence-50] ![Usage low][usage-low] 1156 | 1157 | Sometimes, some external hard drives can gave me tough times. Hard Disk Manager saved me multiple times and it's always good to check the health of your hard drives time to time. 1158 | 1159 | 1160 | 1161 | --- 1162 | 1163 | 1164 | 1165 | #### [GoodSync](https://www.goodsync.com/download) - Backup/sync and file organization 1166 | ![Licence ~$30][licence-30] 1167 | 1168 |
1169 | What for? - What I ❤️ - What I 👎 1170 | 1171 | ##### What for? 1172 | 1173 | * Synchronize files between local and remote storage 1174 | 1175 | ##### What I ❤️ 1176 | 1177 | * Can sync between various remote storage (ex Drive <> Dropbox) 1178 | 1179 | ##### What I 👎 1180 | 1181 | * Crashed some times 1182 | * Can take ages depending on how many files and where these are located (not really what I dislike, I just wishes things could be faster 😅) 1183 | 1184 |
1185 | 1186 | 1187 | 1188 | #### [Visual Studio Code](https://github.com/Microsoft/vscode) - My preferred code editor 1189 | ![Free][licence-free] ![Usage high][usage-high] ![Backup Github][backup-github] 1190 | 1191 | The best code editor (for my usage) 1192 | 1193 | ##### CLI installation 1194 | ```sh 1195 | brew install --caskvisual-studio-code 1196 | ``` 1197 | 1198 | 1199 | 1200 | #### [Tower](https://www.git-tower.com/) - GUI Git client 1201 | ![Yearly subscription][subscription-yearly] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/tower-3-0) 1202 | 1203 |
1204 | What for? - What I ❤️ - What I 👎 1205 | 1206 | ##### What for? 1207 | 1208 | * Manage Git projects 1209 | 1210 | ##### What I ❤️ 1211 | 1212 | * Tower gives me a more visual representation of all my Github repo. When I'm not using Tower, I use some aliases enabled in ZSH to speedup Git commands. 1213 | 1214 | ##### What I 👎 1215 | 1216 | * The last versions forced me to sometimes force quit the app, or had to face some crashes. This seems solved by now. 1217 | 1218 |
1219 | 1220 | 1221 | 1222 | ##### CLI installation 1223 | ```sh 1224 | brew install --casktower 1225 | ``` 1226 | 1227 | #### [Diffmerge](https://sourcegear.com/diffmerge/downloads.php) - Compare and merge files 1228 | ![Free][licence-free] ![Usage low][usage-low] 1229 | 1230 | ##### CLI installation 1231 | ```sh 1232 | brew install --caskdiffmerge 1233 | ``` 1234 | 1235 | 1236 | 1237 | #### [SnippetsLabs](https://www.renfei.org/snippets-lab/) - Code snippets manager 1238 | ![Licence ~$10][licence-10] ![Usage high][usage-high] ![Backup iCloud][backup-icloud] ![Backup Github][backup-github] 1239 | 1240 | 1241 | 1242 | - I store all my code snippets 1243 | 1244 |
1245 | What for? - What I ❤️ - What I 👎 1246 | 1247 | ##### What for? 1248 | 1249 | * Manage code snippets 1250 | 1251 | ##### What I ❤️ 1252 | 1253 | * No subscription, price 1254 | * Works with Alfred extension and Poplip extension 1255 | * Bar icon access 1256 | * iCloud synchronization 1257 | 1258 | ##### What I 👎 1259 | 1260 | * No recent updates 1261 | * Doesn't support syntax highlighting (huge issue for me) 1262 | 1263 |
1264 | 1265 | Other options 1266 | - [Alfred](https://www.alfredapp.com/extras/snippets/) 1267 | - [VSCode](https://code.visualstudio.com/docs/editor/userdefinedsnippets) 1268 | 1269 | ##### Extensions / plugins 1270 | * [Alfred extension](http://www.packal.org/workflow/search-snippetslab) 1271 | * [PopClip extension](https://pilotmoon.com/popclip/extensions/page/SnippetsLab) 1272 | 1273 | ##### Possible alternatives (to be tested) 1274 | * [Snipper](https://snipper.app/) 1275 | 1276 | ##### CLI installation 1277 | ```sh 1278 | mas install 1006087419 1279 | ``` 1280 | 1281 | 1282 | 1283 | #### [Trailer](http://ptsochantaris.github.io/trailer/) - Github Notifications 1284 | ![Free][licence-free] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/trailer) 1285 | 1286 | 1287 | 1288 | #### [Proxyman](https://proxyman.io/) - Best Web Debugging Proxy for MacOS 1289 | ![Free][licence-free-limit] ![Usage medium][usage-medium] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/proxyman) 1290 | 1291 | I found Proxyman when struggling making Charles working on my Mac. Proxyman make it really easy to replace any file by a local version. Useful sometimes to debug production. 1292 | 1293 | 1294 | 1295 | --- 1296 | 1297 | 1298 | 1299 | #### [Paw](https://paw.cloud/) - Beautiful HTTP client for Mac 1300 | ![Backup Dropbox][backup-dropbox] ![Usage medium][usage-medium] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/paw) 1301 | 1302 | https://paw.cloud/extensions/ 1303 | 1304 | ##### CLI installation 1305 | ```sh 1306 | brew install --caskpaw 1307 | ``` 1308 | 1309 | 1310 | 1311 | #### [TablePlus](https://tableplus.com/download) - The best GUI for relational databases 1312 | ![Licence ~$50][licence-50] ![Usage high][usage-high] 1313 | 1314 |
1315 | What for? - What I ❤️ - What I 👎 1316 | 1317 | ##### What for? 1318 | 1319 | * To manage relational databases 1320 | 1321 | ##### What I ❤️ 1322 | 1323 | * The number of databases supported 1324 | * The clean UI interface 1325 | * Support for MongoDB (more coming soon) 1326 | * Support for Mac and Windows 1327 | 1328 | ##### What I 👎 1329 | 1330 | * 0️⃣ 1331 | 1332 |
1333 | 1334 | ##### CLI installation 1335 | ```sh 1336 | brew install --casktableplus 1337 | ``` 1338 | 1339 | 1340 | 1341 | 1342 | #### [Postman](https://www.postman.com/downloads/) - A free alternative to Paw 1343 | ![Free][licence-free] ![Usage medium][usage-medium] ![Proprietary backup][backup-proprietary] 1344 | 1345 | 1346 | 1347 | #### [Mockoon](https://mockoon.com/) - Has never been so easy to create a mock server 1348 | ![Free][licence-free] ![Usage medium][usage-medium] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/mockoon) 1349 | 1350 | ##### CLI installation 1351 | ```sh 1352 | brew install --caskmockoon 1353 | ``` 1354 | 1355 | 1356 | 1357 | #### [Docker](https://www.docker.com/products/docker-desktop) - Containerize everything! 1358 | ![Free][licence-free] ![Usage high][usage-high] 1359 | 1360 | ##### CLI installation 1361 | ```sh 1362 | brew install docker 1363 | 1364 | brew install --caskdocker-toolbox 1365 | ``` 1366 | 1367 | 1368 | 1369 | #### [Altair GraphQL Client](https://altair.sirmuel.design/) - Beautiful GraphQL Client 1370 | ![Free][licence-free] ![Usage low][usage-low] [![Show your support][support]](https://opencollective.com/altair/donate) 1371 | 1372 | ##### CLI installation 1373 | ```sh 1374 | brew install --caskaltair-graphql-client 1375 | ``` 1376 | 1377 | 1378 | 1379 | #### [Screaming Frog SEO Spider](https://www.screamingfrog.co.uk/seo-spider/) - Website crawler to test SEO issues 1380 | ![Free][licence-free-limit] ![Usage low][usage-low] 1381 | 1382 | 1383 | 1384 | #### [Poedit](https://poedit.net/download) - Translations made easy 1385 | ![Free][licence-free-limit] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/poedit-2) 1386 | 1387 | ##### CLI installation 1388 | ```sh 1389 | brew install --caskpoedit 1390 | ``` 1391 | 1392 | 1393 | 1394 | #### [SwitchHosts!](https://oldj.github.io/SwitchHosts/) - Hosts management & switching 1395 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/switchhosts) 1396 | 1397 | ##### CLI installation 1398 | ```sh 1399 | brew install --caskswitchhosts 1400 | ``` 1401 | 1402 | 1403 | 1404 | #### [Core Shell](https://coreshell.app/) - Full featured terminal with OpenSSH support 1405 | ![Free][licence-free-limit] ![Usage low][usage-low] 1406 | 1407 | 1408 | 1409 | #### [VirtualBox](https://www.virtualbox.org/) - In case I need to debug on Windows 1410 | ![Free][licence-free] ![Usage low][usage-low] 1411 | 1412 | 1413 | 1414 | #### [Smart JSON Editor](http://www.smartjsoneditor.com/) - JSON data manipulation for Mac 1415 | ![Free][licence-free-limit] ![Licence ~$10][licence-10] 1416 | 1417 | Free alternative [Jayson](https://jayson.app/) 1418 | 1419 | ##### CLI installation 1420 | ```sh 1421 | mas install 1268962404 1422 | ``` 1423 | 1424 | 1425 | 1426 | #### [Carbonize](https://www.dangercove.com/carbonize/) - Generate beautiful code snippets 1427 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/carbonize) 1428 | 1429 | 1430 | 1431 | --- 1432 | 1433 | 1434 | 1435 | #### [CodeKit](https://codekitapp.com/) - Gulp, Grunt, Pug are on a boat 1436 | ![Licence ~$34][licence-30] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/codekit) 1437 | 1438 | - CodeKit was one of the best and first software that would convert Sass to CSS. A lot of improvements were made since then. I use it when I'm lazy and don't want to configure Gulp, [ParcelJS](https://parceljs.org/) or Webpack. 1439 | 1440 | 1441 | 1442 | #### [Haskell](http://haskellformac.com/) - Haskell for Mac IDE 1443 | ![Licence ~$30][licence-30] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/haskell-for-mac) 1444 | 1445 | ##### CLI installation 1446 | ```sh 1447 | mas install Haskell 1448 | ``` 1449 | 1450 | ### Reading & Writing 1451 | 1452 | 1453 | 1454 | #### [Reeder](https://reederapp.com/) - To stay informed 1455 | ![Licence ~$13][licence-10] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/reeder-3-2) 1456 | 1457 | * I use [Feedly](https://feedly.com/) to store all my RSS feeds and synchronize with Reeder. 1458 | * I like to activate the *Bionic Reading* setting, which speed up my reading. 1459 | * **DEVONthink 3** and **Things** are activated in the "Actions and Sharing" settings. 1460 | 1461 | 1462 | 1463 | ##### CLI installation 1464 | ```sh 1465 | mas install 880001334 1466 | ``` 1467 | 1468 | 1469 | 1470 | #### [Scapple](https://www.literatureandlatte.com/scapple/overview) - Brain, ideas and connections 1471 | ![Licence ~$20][licence-20] ![Usage medium][usage-medium] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/scapple) 1472 | 1473 | - When I want to brainstorm without any structure, Scapple is the first tool I use in my workflow. 1474 | - It allows me to put all words / ideas I can think of and then start establishing relationships. 1475 | - When I have a better vision or want to be more organize, I usually switch in using [MindNode](#mindnode---interactive-mind-mapping). 1476 | 1477 | 1478 | 1479 | ##### CLI installation 1480 | ```sh 1481 | brew install --caskscapple 1482 | 1483 | mas install 568020055 1484 | ``` 1485 | 1486 | 1487 | 1488 | #### [MindNode](https://mindnode.com) - Interactive Mind Mapping 1489 | ![Licence ~$30][licence-30] ![Backup iCloud][backup-icloud] ![High medium][usage-medium] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/mindnode-5) 1490 | 1491 | ##### What for? 1492 | 1493 | * To help organization thoughts and ideas 1494 | 1495 | ##### What I ❤️ 1496 | 1497 | * Easy to use 1498 | * Nice UI and integration with MacOS / iOS 1499 | 1500 | ##### What I 👎 1501 | 1502 | * The mobile application cost 1503 | * No enough inovations 1504 | 1505 | 1506 | 1507 | ##### CLI installation 1508 | ```sh 1509 | brew install --caskmindnode-pro 1510 | 1511 | mas install 1289197285 1512 | ``` 1513 | 1514 | 1515 | 1516 | #### [Notion](https://www.notion.so) - Notes, docs, knowledge base and more, in one place 1517 | ![Yearly subscription][subscription-yearly] ![Proprietary backup][backup-proprietary] ![High usage][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/notion-2-0) 1518 | 1519 | ##### CLI installation 1520 | ```sh 1521 | brew install --casknotion 1522 | ``` 1523 | 1524 | 1525 | 1526 | #### [DEVONthink](https://www.devontechnologies.com/apps/devonthink) - To collect, organize and edit all my documents and articles 1527 | ![Licence ~200](https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$200&color=orange) ![Usage high][usage-high] ![Backup iCloud][backup-icloud] 1528 | 1529 | * I used [Evernote](https://evernote.com/) for years, but the lack of new features I decided to use DEVONthink and have no regrets. 1530 | 1531 | 1532 | 1533 | ##### Extensions / plugins 1534 | * [Chrome extension](https://chrome.google.com/webstore/detail/clip-to-devonthink/pjoafdokmbmkpolhcnmnkgaicbajigcc?hl=en) 1535 | * [Alfred extension](https://www.packal.org/workflow/devonthink-search) 1536 | * [PopClip extension](https://pilotmoon.com/popclip/extensions/page/DEVONthink3) 1537 | * [Airmail services activation](https://help.airmailapp.com/en-us/article/integration-devonthink-1wd677j/) 1538 | 1539 | ##### CLI installation 1540 | ```sh 1541 | brew install --caskdevonthink 1542 | ``` 1543 | 1544 | 1545 | 1546 | #### [DEVONagent Pro](https://www.devontechnologies.com/apps/devonagent) - Search the web and filter the results 1547 | ![Licence ~$50][licence-50] ![High medium][usage-medium] 1548 | 1549 | * I use DEVONagent Pro every-time I need to do research to prepare a presentation, write an article or produce some sort of content. 1550 | 1551 | 1552 | 1553 | --- 1554 | 1555 | 1556 | 1557 | #### [MWeb](https://www.mweb.im/) - A powerful Markdown Editor 1558 | ![Licence ~$20][licence-20] ![Backup iCloud][backup-icloud] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/mweb) 1559 | 1560 | - I've used [Marked 2](https://marked2app.com/), [Ulysses](https://ulysses.app/) and [Boostnode](https://boostnote.io/) but MWeb is the one app I've enjoy the most using. 1561 | 1562 |
1563 | What for? - What I ❤️ - What I 👎 1564 | 1565 | ##### What for? 1566 | 1567 | * Markdown Editor 1568 | 1569 | ##### What I ❤️ 1570 | 1571 | * The dual panel with Markdown in one side and the preview in the other 1572 | * Beautiful themes 1573 | 1574 | ##### What I 👎 1575 | 1576 | * No recent updates 1577 | * The scroll for the Editor and preview panel is usually not synchronized 1578 | * No possibility to deactivate the synchronized scroll 1579 | 1580 |
1581 | 1582 | 1583 | 1584 | ##### Possible alternatives 1585 | * [Mou](http://25.io/mou/) 1586 | * [MacDown](https://macdown.uranusjr.com/) 1587 | * [Quiver](http://happenapps.com/#quiver) 1588 | 1589 | ##### CLI installation 1590 | ```sh 1591 | mas install 1403919533 1592 | ``` 1593 | 1594 | 1595 | 1596 | #### [Scrivener](https://www.literatureandlatte.com/scrivener/overview) - One day I want to be a writer 1597 | ![Licence ~$50][licence-50] ![Usage low][usage-low] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/scrivener-3-0) 1598 | 1599 | - Scrivener is the perfect tool to write any book. 1600 | - I've used Scrivener in the past to work on the outline for a video course. 1601 | - I'm planning in using it more and maybe start writing small non-fictional ebooks soon. 1602 | 1603 | 1604 | 1605 | ##### CLI installation 1606 | ```sh 1607 | brew install --caskscrivener 1608 | 1609 | mas install 1310686187 1610 | ``` 1611 | 1612 | 1613 | 1614 | #### [Apple Keynote](https://www.apple.com/keynote/) - A better alternative to Powerpoint 1615 | ![Free][licence-free] ![Backup iCloud][backup-icloud] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/keynote-10-0) 1616 | 1617 | ### Communication 1618 | 1619 | 1620 | 1621 | #### [Slack](https://slack.com) - Work chat and more 1622 | ![Free][licence-free] ![Usage high][usage-high] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/slack-for-mac) 1623 | 1624 | ##### Workspaces 1625 | - Dias testing (my own Slack workspace to test apps and webhooks) 1626 | - [Contentful Community](https://www.contentful.com/slack/) 1627 | - [A11y](https://web-a11y.slack.com/#/) 1628 | - [TorontoJS](http://slack.torontojs.com/) 1629 | - [FEDs](http://fedsonslack.com/) 1630 | - [Civic Tech Toronto](http://civictechto-slack-invite.herokuapp.com/) 1631 | 1632 | ```sh 1633 | brew install cask slack 1634 | 1635 | mas install 803453959 1636 | ``` 1637 | 1638 | 1639 | 1640 | #### [Airmail](https://airmailapp.com/) - My favorite email client 1641 | ![Free][licence-free-limit] ![Yearly subscription][subscription-yearly] ![Backup iCloud][backup-icloud] ![Usage high][usage-high] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/airmail-3-3) 1642 | 1643 | * I've been using Airmail since I fully work on MacOS. 1644 | * I tried [Spark](https://sparkmailapp.com/) for few days but I didn't feel it was a big win in comparison to Airmail. 1645 | * Like many people, I approach my emails tasks in GTD style, trying to always be close to zero emails in my inbox. 1646 | 1647 | ##### Filters and triage 1648 | 1649 | I used "filters" on Gmail to organize most of my emails (especially newsletters, bills, recurring emails...). I wish Gmail would have an easiest way to create these filters. 1650 | ![gmail-filters](media/gmail-filters.jpg) 1651 | 1652 | 1653 | 1654 | ##### CLI installation 1655 | ```sh 1656 | brew install --caskairmail 1657 | 1658 | mas install 918858936 1659 | ``` 1660 | 1661 | ### Social Media 1662 | 1663 | I have a strict rule in regards to social apps on my professional Mac. I usually don't have any social / communication app that is not directly related to work (only Slack). These apps are mostly on my personal MacBook. 1664 | 1665 | 1666 | 1667 | #### [Signal](https://signal.org/download/) - Signal on Mac 1668 | ![Free][licence-free] ![Usage low][usage-low] 1669 | 1670 | #### [Messenger](https://apps.apple.com/us/app/messenger/id1480068668?mt=12) - Facebook Messenger but on Mac 1671 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/messenger-for-mac-2) 1672 | 1673 | 1674 | 1675 | #### [WhatsApp](https://www.whatsapp.com/download) - WhatsApp on Mac 1676 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/whatsapp-desktop-2) 1677 | 1678 | 1679 | 1680 | #### [Discord](https://discordapp.com/download) - Popular chat platform amount developers and companies 1681 | ![Free][licence-free] ![Usage low][usage-low] 1682 | 1683 | I use mostly Discord to talk with HTMLHint contributors and other platforms. 1684 | 1685 | 1686 | 1687 | #### [Skype](https://www.skype.com/en/get-skype/) 1688 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/skype) 1689 | 1690 | * Skype was my to-go chat app for years, but since Google Meet, Facebook Messenger and WhatsApp, I only use with 2-3 people that are not on these platforms. 1691 | 1692 | ##### CLI installation 1693 | ```sh 1694 | brew install --caskskype 1695 | ``` 1696 | 1697 | ### Design & Web Design 1698 | 1699 | I'm not a Web Designer / Designer, but I love studying Photography, UI and UX. I try to practice as much as I can using the following applications. 1700 | 1701 | 1702 | 1703 | #### [Eagle](https://en.eagle.cool/) - Organize my design library 1704 | ![Yearly subscription][subscription-yearly] ![Usage high][usage-high] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/eagle-5) 1705 | 1706 |
1707 | What for? - What I ❤️ - What I 👎 1708 | 1709 | ##### What for? 1710 | 1711 | * To manage all my media files (images, PSD, sketch files...) 1712 | 1713 | ##### What I ❤️ 1714 | 1715 | * Backup on Dropbox 1716 | * Recent updates 1717 | * Chrome extension which save any image with a simple drag and drop 1718 | * Fast 1719 | * Lot of options 1720 | 1721 | ##### What I 👎 1722 | 1723 | * 0️⃣ 1724 | 1725 |
1726 | 1727 | ##### Extensions / plugins 1728 | * [Eagle Chrome extension](https://chrome.google.com/webstore/detail/eagle-save-images-faster/lieogkinebikhdchceieedcigeafdkid?hl=en) 1729 | 1730 | 1731 | 1732 | #### [Rightfont 5](https://rightfontapp.com/) - The best font manager for Mac 1733 | ![Licence ~$35][licence-30] ![Usage medium][usage-medium] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/rightfont-3) 1734 | 1735 | - By far, the best font manager that supports my library of more than 80 000 font files. 1736 | 1737 | 1738 | 1739 | 1740 | 1741 | #### [IconJar](https://geticonjar.com/) - Best icon manager 1742 | ![Yearly subscription][subscription-yearly] ![Usage low][usage-low] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/iconjar-27d1357a-d286-4c95-9c4d-ce1558dc8113) 1743 | 1744 | * All my icons are stored on IconJar 1745 | * I could also used [Eagle](#eagle---organize-my-design-library) to store these, but I prefer to have a dedicated software to manage all icon's formats. 1746 | 1747 | 1748 | 1749 | --- 1750 | 1751 | 1752 | 1753 | #### [Adobe Creative Cloud](https://www.adobe.com/ca/creativecloud.html) 1754 | ![Monthly subscription][subscription-montly] ![Proprietary backup][backup-proprietary] ![Usage high][usage-high] 1755 | 1756 | - List of Adobe Softwares I most often use 1757 | - Adobe Photoshop 1758 | - Adobe Illustrator 1759 | - Adobe Premiere Rush 1760 | - Adobe Premiere Pro 1761 | - Adobe Audition 1762 | - Adobe Lightroom Classic 1763 | - Adobe Acrobat 1764 | - ... 1765 | 1766 | ##### CLI installation 1767 | ```sh 1768 | brew install --caskadobe-creative-cloud 1769 | ``` 1770 | 1771 | 1772 | 1773 | #### [Figma](https://www.figma.com/) 1774 | ![Free][licence-free-limit] ![Usage low][usage-low] ![Usage medium][usage-medium] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/figma-3-0) 1775 | 1776 | I'm planning in using more Figma as I don't want to renew Sketch in regards to my real usage. 1777 | 1778 | ##### CLI installation 1779 | ```sh 1780 | brew install --caskfigma 1781 | ``` 1782 | 1783 | 1784 | 1785 | #### [Sketch](https://www.sketch.com/) 1786 | ![Yearly subscription][subscription-yearly] ![Usage medium][usage-medium] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/sketch-52) 1787 | 1788 | Still a reference (vs Adobe XD and Figma) but I didn't renew my licence in 2019. Planning in using Figma instead when needed. 1789 | 1790 | ##### CLI installation 1791 | ```sh 1792 | brew install --casksketch 1793 | ``` 1794 | 1795 | 1796 | 1797 | #### [Sketchpacks](https://sketchpacks.com/) 1798 | ![Free][licence-free] ![Usage low][usage-low] 1799 | 1800 | To manage plugins for Sketch 1801 | 1802 | #### [Zeplin](https://zeplin.io/) 1803 | ![Usage medium][usage-medium] ![Proprietary backup][backup-proprietary] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/zeplin-3-0) 1804 | 1805 | Used Zeplin mostly at work. I remember when it first came out. A lot of updates and improvements since. 1806 | 1807 | 1808 | 1809 | #### [ColorSnapper2](https://colorsnapper.com/) - Collect, organize and share colors 1810 | ![Licence ~$20][licence-20] ![Usage medium][usage-medium] 1811 | 1812 | My go-to color-picker. 1813 | 1814 | ##### CLI installation 1815 | ```sh 1816 | brew install --caskcolorsnapper 1817 | ``` 1818 | 1819 | 1820 | ##### Alternatives 1821 | 1822 | - I've used [Sip](https://sipapp.io/) in the past but recently switched to ColorSnapper2 because no subscription. 1823 | 1824 | ##### CLI installation 1825 | ```sh 1826 | brew install --casksip 1827 | ``` 1828 | 1829 | 1830 | 1831 | #### [ImageOptim](https://imageoptim.com/mac) - Optimize images 1832 | ![Free][licence-free] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/imageoptim) 1833 | 1834 | ##### CLI installation 1835 | ```sh 1836 | brew install --caskimageoptim 1837 | ``` 1838 | 1839 | ### Audio & Video production 1840 | 1841 | 1842 | 1843 | #### [VLC](https://www.videolan.org/vlc/index.html) - A Media player built by my compatriots 1844 | ![Free][licence-free] ![Usage high][usage-high] [![Show your support][support]](https://www.videolan.org/contribute.html#money) 1845 | 1846 | It's not because it was build by French people that I love this app! 1847 | 1848 | 1849 | 1850 | #### [Loopback](https://rogueamoeba.com/loopback/) - Cable-free audio routing for Mac 1851 | ![Licence ~$100][licence-100] ![Usage low][usage-low] 1852 | 1853 |
1854 | What for? - What I ❤️ - What I 👎 1855 | 1856 | ##### What for? 1857 | 1858 | * When you want to combine different audio sources, essential if you do podcasts 1859 | 1860 | ##### What I ❤️ 1861 | 1862 | * Easy to use 1863 | * Works perfectly 1864 | 1865 | ##### What I 👎 1866 | 1867 | * Price 1868 | 1869 |
1870 | 1871 | 1872 | 1873 | #### [Audio Hijack](https://rogueamoeba.com/audiohijack/) - Record any audio 1874 | ![Licence ~$50][licence-50] ![Usage low][usage-low] 1875 | 1876 |
1877 | What for? - What I ❤️ - What I 👎 1878 | 1879 | ##### What for? 1880 | 1881 | * Record any source audio, I use to record podcasts 1882 | 1883 | ##### What I ❤️ 1884 | 1885 | * With Loopback, Audio Hijack transforms your Mac in a real studio 1886 | * Build-in effects (like Dehum and band EQ) 1887 | 1888 | ##### What I 👎 1889 | 1890 | * 0️⃣ 1891 | 1892 |
1893 | 1894 | 1895 | 1896 | #### [Ecamm Live](https://www.ecamm.com/mac/ecammlive/) - The simplest tool for doing live streaming on Facebook / Youtube 1897 | ![Free][licence-free] ![Usage medium][usage-medium] 1898 | 1899 | 1900 | 1901 | #### [Streamlabs OBS](https://streamlabs.com/) - The best (and free) streaming app 1902 | ![Free][licence-free] ![Usage medium][usage-medium] 1903 | 1904 | 1905 | 1906 | #### [Screenflow 9](https://www.telestream.net/controls/screenflow/download-screenflow.htm) - Screen recording and editing like a pro 1907 | ![Licence ~$100][licence-100] ![Usage low][usage-low] ![Backup Dropbox][backup-dropbox] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/screenflow-9) 1908 | 1909 | - Screenflow doesn't recommend to store files on Dropbox, so I usually store the files on Dropbox but move them to my local hard drive if I want to edit these. No problem until today. 1910 | 1911 | 1912 | 1913 | #### [Power Prompter](https://suborbital.io/powerprompter/download/) - 1914 | ![Licence ~$50][licence-50] ![Usage low][usage-low] 1915 | 1916 | 1917 | 1918 | #### [Twitch](https://www.twitch.tv/) - The well-known streaming platform 1919 | ![Free][licence-free] ![Usage medium][usage-medium] 1920 | 1921 | 1922 | ### Miscellaneous 1923 | 1924 | 1925 | 1926 | #### [KeyKey](http://keykey.ninja/) - A minimalist touch typing tutor for Mac 1927 | ![Licence ~$20][licence-20] ![Usage low][usage-low] [![Upvote on Product Hunt][product-hunt]](https://www.producthunt.com/posts/keykey-typing-tutor-for-mac) 1928 | 1929 | 1930 | 1931 | #### [Type Fu](https://type-fu.com/) - Typing training 1932 | ![Free][licence-free] ![Usage medium][usage-medium] 1933 | 1934 | The only typing program that has a "Code" practice section 1935 | 1936 | 1937 | 1938 | #### [Typesy](https://www.typesy.com/) - When I want to compete with my wife 1939 | ![Licence ~$30][licence-30] ![Usage low][usage-low] 1940 | 1941 | 1942 | 1943 | #### [GPG Suite](https://gpgtools.org/) - Encrypt, decrypt, sign and verify files or messages. 1944 | ![Free][licence-free] ![Usage high][usage-high] 1945 | 1946 | - I use this also for signing my commits. 1947 | 1948 | 1949 | 1950 | #### [Hue Sync](https://www2.meethue.com/en-au/entertainment/hue-sync) - Sync my lights with audio / video files 1951 | ![Free][licence-free] ![Usage low][usage-low] 1952 | 1953 | ##### CLI installation 1954 | 1955 | ```sh 1956 | brew install --cask 1957 | ``` 1958 | 1959 | ## Mac preferences 1960 | 1961 | ### Dock 1962 | 1963 | #### Add spaces to my dock 1964 | 1965 | ```sh 1966 | defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock 1967 | ``` 1968 | 1969 | - Dock screenshot 1970 | 1971 | ![dock-perso](media/dock-perso.jpg) 1972 | 1973 | 1974 | ## Web Applications 1975 | 1976 | * Invision 1977 | * [Namecheap](https://www.namecheap.com/) - The best domain registrar 1978 | * [StatusCake](https://www.statuscake.com/) - To keep an eye on your website uptime 1979 | * [Themer.dev](https://themer.dev/) - To generate themes (editors, terminals, wallpapers, and more) with ease 1980 | * [Netlify](https://netlify.com/) 1981 | * [codeimg](https://codeimg.io/) - To easily create social media banners 1982 | * [Gradient Magic](https://www.gradientmagic.com/) - Free gallery of CSS Gradients 1983 | 1984 | 1985 | ## Inspiration 1986 | 1987 | Heavily inspired by the works from: 1988 | 1989 | - https://github.com/nikitavoloboev/my-mac-os 1990 | - https://github.com/donnemartin/dev-setup 1991 | 1992 | ## Icons and images 1993 | 1994 | All logos and brand/applications names are registered and below to their owners. 1995 | 1996 |
Icons made by Pixel perfect from www.flaticon.com
1997 | 1998 |
Icons made by Flat Icons from www.flaticon.com
1999 | 2000 |
Icons made by prettycons from www.flaticon.com
2001 | 2002 | ## Licence 2003 | 2004 | MIT 2005 | 2006 | [licence-free]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=FREE&color=green 2007 | [licence-free-limit]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=FREE%20with%20limits&color=green 2008 | [licence-10]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$10&color=orange 2009 | [licence-20]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$20&color=orange 2010 | [licence-30]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$30&color=orange 2011 | [licence-50]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$50&color=orange 2012 | [licence-100]: https://img.shields.io/static/v1?style=flat-square&label=LICENCE&message=~$100&color=orange 2013 | 2014 | [subscription-montly]: https://img.shields.io/static/v1?style=flat-square&label=SUBSCRIPTION&message=montly&color=red 2015 | [subscription-yearly]: https://img.shields.io/static/v1?style=flat-square&label=SUBSCRIPTION&message=yearly&color=red 2016 | 2017 | [backup-icloud]: https://img.shields.io/static/v1?style=flat-square&label=Backup&message=iCloud&color=1abc9c 2018 | [backup-dropbox]: https://img.shields.io/static/v1?style=flat-square&label=Backup&message=Dropbox&color=1abc9c 2019 | [backup-github]: https://img.shields.io/static/v1?style=flat-square&label=Backup&message=Github&color=1abc9c 2020 | [backup-proprietary]: https://img.shields.io/static/v1?style=flat-square&label=Backup&message=Proprietary&color=1abc9c 2021 | 2022 | [since-2016]: https://img.shields.io/static/v1?style=flat-square&label=Using%20since&message=2016&color=1f425f 2023 | [since-2017]: https://img.shields.io/static/v1?style=flat-square&label=Using%20since&message=2017&color=1f425f 2024 | [since-2018]: https://img.shields.io/static/v1?style=flat-square&label=Using%20since&message=2018&color=1f425f 2025 | [since-2019]: https://img.shields.io/static/v1?style=flat-square&label=Using%20since&message=2019&color=1f425f 2026 | 2027 | [usage-high]: https://img.shields.io/static/v1?style=flat-square&label=Usage&message=high&color=yellow 2028 | [usage-medium]: https://img.shields.io/static/v1?style=flat-square&label=Usage&message=medium&color=yellow 2029 | [usage-low]: https://img.shields.io/static/v1?style=flat-square&label=Usage&message=low&color=yellow 2030 | 2031 | [support]: https://img.shields.io/static/v1?style=flat-square&label=Support&message=this%20app&color=purple 2032 | [product-hunt]: https://img.shields.io/static/v1?style=flat-square&label=Product%20Hunt&message=👍&color=da552f 2033 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect -------------------------------------------------------------------------------- /lychee.toml: -------------------------------------------------------------------------------- 1 | ############################# Display ############################# 2 | verbose = "info" 3 | output = "./lychee-out.md" 4 | 5 | ############################# Cache ############################### 6 | cache = true 7 | max_cache_age = "2d" 8 | 9 | ############################# Runtime ############################# 10 | max_concurrency = 14 11 | 12 | ############################# Requests ############################ 13 | user_agent = "curl/7.83.1" 14 | timeout = 20 15 | accept = ["200", "429", "403"] 16 | scheme = ["https"] 17 | 18 | ############################# Exclusions ########################## 19 | base = "https://github.com/thedaviddias/Front-End-Performance-Checklist/" 20 | exclude = ["https://caniuse.com"] 21 | -------------------------------------------------------------------------------- /media/15878412922030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/15878412922030.png -------------------------------------------------------------------------------- /media/15878421335213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/15878421335213.jpg -------------------------------------------------------------------------------- /media/15878422056701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/15878422056701.jpg -------------------------------------------------------------------------------- /media/15878423395361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/15878423395361.png -------------------------------------------------------------------------------- /media/1password-alfred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/1password-alfred.jpg -------------------------------------------------------------------------------- /media/adobe-creative-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/adobe-creative-cloud.png -------------------------------------------------------------------------------- /media/airmail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/airmail.jpg -------------------------------------------------------------------------------- /media/airmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/airmail.png -------------------------------------------------------------------------------- /media/airy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/airy.png -------------------------------------------------------------------------------- /media/altair-graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/altair-graphql.png -------------------------------------------------------------------------------- /media/audiohijack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/audiohijack.png -------------------------------------------------------------------------------- /media/backup-sync-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/backup-sync-google.png -------------------------------------------------------------------------------- /media/bartender-hide-personal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/bartender-hide-personal.jpg -------------------------------------------------------------------------------- /media/bartender-show-personal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/bartender-show-personal.jpg -------------------------------------------------------------------------------- /media/bartender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/bartender.png -------------------------------------------------------------------------------- /media/better-touch-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/better-touch-tool.png -------------------------------------------------------------------------------- /media/carbonize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/carbonize.jpg -------------------------------------------------------------------------------- /media/carbonize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/carbonize.png -------------------------------------------------------------------------------- /media/cardhop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/cardhop.png -------------------------------------------------------------------------------- /media/chrome-canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/chrome-canary.png -------------------------------------------------------------------------------- /media/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/chrome.png -------------------------------------------------------------------------------- /media/clean-my-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/clean-my-mac.png -------------------------------------------------------------------------------- /media/cleanmymac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/cleanmymac.jpg -------------------------------------------------------------------------------- /media/cleanshotx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/cleanshotx.png -------------------------------------------------------------------------------- /media/codekit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/codekit.png -------------------------------------------------------------------------------- /media/color-snapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/color-snapper.png -------------------------------------------------------------------------------- /media/contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/contexts.png -------------------------------------------------------------------------------- /media/core-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/core-shell.png -------------------------------------------------------------------------------- /media/devonagent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/devonagent.jpg -------------------------------------------------------------------------------- /media/devonagent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/devonagent.png -------------------------------------------------------------------------------- /media/devonthink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/devonthink.jpg -------------------------------------------------------------------------------- /media/devonthink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/devonthink.png -------------------------------------------------------------------------------- /media/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/discord.png -------------------------------------------------------------------------------- /media/dock-perso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/dock-perso.jpg -------------------------------------------------------------------------------- /media/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/docker.png -------------------------------------------------------------------------------- /media/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/dropbox.png -------------------------------------------------------------------------------- /media/eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/eagle.png -------------------------------------------------------------------------------- /media/ecammlive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/ecammlive.png -------------------------------------------------------------------------------- /media/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/edge.png -------------------------------------------------------------------------------- /media/emojis-stream-deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/emojis-stream-deck.png -------------------------------------------------------------------------------- /media/fantastical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/fantastical.png -------------------------------------------------------------------------------- /media/figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/figma.png -------------------------------------------------------------------------------- /media/firefox-nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/firefox-nightly.png -------------------------------------------------------------------------------- /media/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/firefox.png -------------------------------------------------------------------------------- /media/flume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/flume.png -------------------------------------------------------------------------------- /media/flux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/flux.jpg -------------------------------------------------------------------------------- /media/flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/flux.png -------------------------------------------------------------------------------- /media/forklift-preferences.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/forklift-preferences.jpg -------------------------------------------------------------------------------- /media/forklift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/forklift.png -------------------------------------------------------------------------------- /media/gmail-filters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/gmail-filters.jpg -------------------------------------------------------------------------------- /media/goodsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/goodsync.png -------------------------------------------------------------------------------- /media/gpg-suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/gpg-suite.png -------------------------------------------------------------------------------- /media/hammerspoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/hammerspoon.png -------------------------------------------------------------------------------- /media/hard-disk-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/hard-disk-manager.png -------------------------------------------------------------------------------- /media/harddiskmanager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/harddiskmanager.jpg -------------------------------------------------------------------------------- /media/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/haskell.png -------------------------------------------------------------------------------- /media/hazel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/hazel.png -------------------------------------------------------------------------------- /media/hue-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/hue-sync.png -------------------------------------------------------------------------------- /media/iconjar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/iconjar.jpg -------------------------------------------------------------------------------- /media/iconjar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/iconjar.png -------------------------------------------------------------------------------- /media/image-optim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/image-optim.png -------------------------------------------------------------------------------- /media/iterm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/iterm2.png -------------------------------------------------------------------------------- /media/karabiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/karabiner.png -------------------------------------------------------------------------------- /media/keyboard-maestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/keyboard-maestro.png -------------------------------------------------------------------------------- /media/keykey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/keykey.png -------------------------------------------------------------------------------- /media/keynote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/keynote.png -------------------------------------------------------------------------------- /media/loopback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/loopback.png -------------------------------------------------------------------------------- /media/lungo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/lungo.png -------------------------------------------------------------------------------- /media/mac-setup-workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mac-setup-workflow.jpg -------------------------------------------------------------------------------- /media/meetingbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/meetingbar.png -------------------------------------------------------------------------------- /media/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/messenger.png -------------------------------------------------------------------------------- /media/mindnode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mindnode.jpg -------------------------------------------------------------------------------- /media/mindnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mindnode.png -------------------------------------------------------------------------------- /media/mockoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mockoon.png -------------------------------------------------------------------------------- /media/moom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/moom.png -------------------------------------------------------------------------------- /media/mouseless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mouseless.jpg -------------------------------------------------------------------------------- /media/mouseless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mouseless.png -------------------------------------------------------------------------------- /media/muzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/muzzle.png -------------------------------------------------------------------------------- /media/mweb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mweb.jpg -------------------------------------------------------------------------------- /media/mweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/mweb.png -------------------------------------------------------------------------------- /media/next-meeting-sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/next-meeting-sc.png -------------------------------------------------------------------------------- /media/next-meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/next-meeting.png -------------------------------------------------------------------------------- /media/noizio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/noizio.jpg -------------------------------------------------------------------------------- /media/noizio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/noizio.png -------------------------------------------------------------------------------- /media/notion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/notion.png -------------------------------------------------------------------------------- /media/paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/paw.png -------------------------------------------------------------------------------- /media/poedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/poedit.png -------------------------------------------------------------------------------- /media/popclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/popclip.png -------------------------------------------------------------------------------- /media/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/postman.png -------------------------------------------------------------------------------- /media/power-prompter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/power-prompter.png -------------------------------------------------------------------------------- /media/proxyman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/proxyman.jpg -------------------------------------------------------------------------------- /media/proxyman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/proxyman.png -------------------------------------------------------------------------------- /media/raycast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/raycast.png -------------------------------------------------------------------------------- /media/reeder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/reeder.jpg -------------------------------------------------------------------------------- /media/reeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/reeder.png -------------------------------------------------------------------------------- /media/rightfont-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/rightfont-5.jpg -------------------------------------------------------------------------------- /media/rightfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/rightfont.png -------------------------------------------------------------------------------- /media/scapple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/scapple.jpg -------------------------------------------------------------------------------- /media/scapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/scapple.png -------------------------------------------------------------------------------- /media/screaming-frog-seo-spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/screaming-frog-seo-spider.png -------------------------------------------------------------------------------- /media/screenflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/screenflow.png -------------------------------------------------------------------------------- /media/scrivener.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/scrivener.jpg -------------------------------------------------------------------------------- /media/scrivener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/scrivener.png -------------------------------------------------------------------------------- /media/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/signal.png -------------------------------------------------------------------------------- /media/sip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/sip.png -------------------------------------------------------------------------------- /media/sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/sketch.png -------------------------------------------------------------------------------- /media/sketchpacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/sketchpacks.png -------------------------------------------------------------------------------- /media/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/skype.png -------------------------------------------------------------------------------- /media/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/slack.png -------------------------------------------------------------------------------- /media/smart-json-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/smart-json-editor.png -------------------------------------------------------------------------------- /media/snippetlab-smart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/snippetlab-smart.jpg -------------------------------------------------------------------------------- /media/snippetslab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/snippetslab.png -------------------------------------------------------------------------------- /media/streamdeck-slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/streamdeck-slack.png -------------------------------------------------------------------------------- /media/streamdeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/streamdeck.png -------------------------------------------------------------------------------- /media/streamlabs-obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/streamlabs-obs.png -------------------------------------------------------------------------------- /media/switch-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/switch-hosts.png -------------------------------------------------------------------------------- /media/table-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/table-plus.png -------------------------------------------------------------------------------- /media/team-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/team-viewer.png -------------------------------------------------------------------------------- /media/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/telegram.png -------------------------------------------------------------------------------- /media/text-sniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/text-sniper.png -------------------------------------------------------------------------------- /media/the-unarchiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/the-unarchiver.png -------------------------------------------------------------------------------- /media/things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/things.png -------------------------------------------------------------------------------- /media/timing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/timing.jpg -------------------------------------------------------------------------------- /media/timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/timing.png -------------------------------------------------------------------------------- /media/tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/tower.jpg -------------------------------------------------------------------------------- /media/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/tower.png -------------------------------------------------------------------------------- /media/trailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/trailer.png -------------------------------------------------------------------------------- /media/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/twitch.png -------------------------------------------------------------------------------- /media/typefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/typefu.png -------------------------------------------------------------------------------- /media/typesy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/typesy.png -------------------------------------------------------------------------------- /media/unarchiver-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/unarchiver-options.jpg -------------------------------------------------------------------------------- /media/virtual-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/virtual-box.png -------------------------------------------------------------------------------- /media/visual-studio-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/visual-studio-code.png -------------------------------------------------------------------------------- /media/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/vlc.png -------------------------------------------------------------------------------- /media/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/whatsapp.png -------------------------------------------------------------------------------- /media/zeplin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedaviddias/mac-os-setup-applications/51c2f8920d560ac1aa96010d01769b51bec723c5/media/zeplin.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mac-os-setup-applications", 3 | "version": "1.0.0", 4 | "description": "My Mac OS setup and the best applications I use as a Web Developer", 5 | "scripts": { 6 | "format:check": "prettier --check README.md", 7 | "format:fix": "prettier --write README.md && markdownlint README.md", 8 | "prepare": "husky || true" 9 | }, 10 | "keywords": [], 11 | "author": "David Dias (https://thedaviddias.com/)", 12 | "license": "MIT", 13 | "devDependencies": { 14 | "husky": "^9.1.6", 15 | "markdownlint-cli": "^0.42.0", 16 | "prettier": "^3.3.3" 17 | } 18 | } 19 | --------------------------------------------------------------------------------