mac install guide
parent
6c8e4ad1b4
commit
c8144a0491
|
@ -1207,6 +1207,21 @@ defaults -currentHost write -globalDomain NSStatusItemSelectionPadding -int 6
|
||||||
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 6</pre
|
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 6</pre
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
<p>Tweak Finder:</p>
|
||||||
|
<div class="highlight highlight-source-shell">
|
||||||
|
<pre><span class="pl-c"><span class="pl-c">#</span> Use list view</span>
|
||||||
|
defaults write com.apple.finder FXPreferredViewStyle -string <span class="pl-s"><span class="pl-pds">"</span>Nlsv<span class="pl-pds">"</span></span>
|
||||||
|
<span class="pl-c"><span class="pl-c">#</span> Show path bar</span>
|
||||||
|
defaults write com.apple.finder ShowPathbar -bool <span class="pl-c1">true</span>
|
||||||
|
<span class="pl-c"><span class="pl-c">#</span> Show status bar</span>
|
||||||
|
defaults write com.apple.finder ShowStatusBar -bool <span class="pl-c1">true</span>
|
||||||
|
<span class="pl-c"><span class="pl-c">#</span> Show filename extensions</span>
|
||||||
|
defaults write NSGlobalDomain AppleShowAllExtensions -bool <span class="pl-c1">true</span>
|
||||||
|
<span class="pl-c"><span class="pl-c">#</span> Keep folders on top when sorting by name</span>
|
||||||
|
defaults write com.apple.finder _FXSortFoldersFirst -bool <span class="pl-c1">true</span>
|
||||||
|
|
||||||
|
killall Finder</pre>
|
||||||
|
</div>
|
||||||
<p>Disable IPv6:</p>
|
<p>Disable IPv6:</p>
|
||||||
<div class="highlight highlight-source-shell">
|
<div class="highlight highlight-source-shell">
|
||||||
<pre>
|
<pre>
|
||||||
|
@ -1311,6 +1326,11 @@ sudo launchctl load -w /Library/LaunchDaemons/org.openvpn.client.plist</pre
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://mac.install.guide/mac-setup/" rel="nofollow"
|
||||||
|
>Mac Setup</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/OpenVPN/openvpn3/issues/243"
|
<a href="https://github.com/OpenVPN/openvpn3/issues/243"
|
||||||
>https://github.com/OpenVPN/openvpn3/issues/243</a
|
>https://github.com/OpenVPN/openvpn3/issues/243</a
|
||||||
|
|
|
@ -313,6 +313,23 @@ defaults -currentHost write -globalDomain NSStatusItemSelectionPadding -int 6
|
||||||
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 6
|
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 6
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Tweak Finder:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Use list view
|
||||||
|
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"
|
||||||
|
# Show path bar
|
||||||
|
defaults write com.apple.finder ShowPathbar -bool true
|
||||||
|
# Show status bar
|
||||||
|
defaults write com.apple.finder ShowStatusBar -bool true
|
||||||
|
# Show filename extensions
|
||||||
|
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
|
||||||
|
# Keep folders on top when sorting by name
|
||||||
|
defaults write com.apple.finder _FXSortFoldersFirst -bool true
|
||||||
|
|
||||||
|
killall Finder
|
||||||
|
```
|
||||||
|
|
||||||
Disable IPv6:
|
Disable IPv6:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
@ -361,6 +378,7 @@ Thanks:
|
||||||
- [How to fully uninstall Logitech G HUB on macOS via terminal/command line](https://gist.github.com/timotgl/f3d8c49ad582ec1af8ff01143465e116)
|
- [How to fully uninstall Logitech G HUB on macOS via terminal/command line](https://gist.github.com/timotgl/f3d8c49ad582ec1af8ff01143465e116)
|
||||||
- [Hardening macOS](https://www.bejarano.io/hardening-macos/)
|
- [Hardening macOS](https://www.bejarano.io/hardening-macos/)
|
||||||
- https://github.com/drduh/macOS-Security-and-Privacy-Guide
|
- https://github.com/drduh/macOS-Security-and-Privacy-Guide
|
||||||
|
- [Mac Setup](https://mac.install.guide/mac-setup/)
|
||||||
- https://github.com/OpenVPN/openvpn3/issues/243
|
- https://github.com/OpenVPN/openvpn3/issues/243
|
||||||
|
|
||||||
### Firefox
|
### Firefox
|
||||||
|
|
Loading…
Reference in New Issue