Why use sublime over vscode Just curious to know
New MacBook Setup
31–40 of 87 posts
Re: New MacBook Setup
#32install homebrew first, then install the rest using homebrew.
Keep a Brewfile around of the apps you always want installed, and then it’s just a simple one-liner to install everything from the Brewfile! There’s even an option to add into the Brewfile apps from official apple App Store (like Xcode etc).
Re: New MacBook Setup
#33Re: New MacBook Setup
#34I find hilarious the fact that we need to buy & install a windowing tool because the native OS window system has been broken for the past 40 years. Can't they just copy what windows and linux are doing?
And the bar icons ... in the end I just bought Bartender to cope with the notch.
Re: New MacBook Setup
#35also, at least some system prefs can be set via the defaults util[2].
[0]: https://github.com/mas-cli/mas
[1]: https://github.com/stephen/dotfiles/blob/master/install.sh#L...
[2]: https://github.com/stephen/dotfiles/blob/master/install.sh#L...
Re: New MacBook Setup
#36My setup would take weeks to reproduce, I think. So many small tweaks, configuration and extensions that I have accrued over the years. I would dread starting over, which is why I’m very happy with Migration Assistant that helped me migrate to various new machines over 10+ years.
It's kind of amusing that Mac users have to go through so many GUI hoops to configure the system, yet for some reason the vast majority of devs seem to still prefer Macs (?)
Re: New MacBook Setup
#37Am I the only one who prefers macports over homework? And Safari over Chrome? And the default terminal.
Re: New MacBook Setup
#38I have a similar thing here, mostly just for System Preferences stuff and other Apple app settings: https://gist.github.com/leoadberg/f889f49b4c33d967d7f5c9101a... Would recommend stealing parts of it! I feel like the default state of macOS can be pretty unusable at times.
Re: New MacBook Setup
#39Why use sublime over vscode Just curious to know
Re: New MacBook Setup
#40```
# Remove the auto-hiding Dock delay
defaults write com.apple.Dock autohide-delay -float 0
# Remove the animation when hiding/showing the Dock
defaults write com.apple.dock autohide-time-modifier -float 0
# Automatically hide and show the Dock
defaults write com.apple.dock autohide -bool true
```
More here: https://github.com/mathiasbynens/dotfiles/blob/main/.macos It's kind of old but most of them should still work.