mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-12 23:07:17 +00:00
✨ Add Finder's FinderSpawnTab command (#391)
This commit is contained in:
parent
4cebe0ece0
commit
e8c477f316
4 changed files with 65 additions and 0 deletions
|
@ -210,6 +210,7 @@ export default defineConfig({
|
|||
'showpathbar.md',
|
||||
'fxpreferredviewstyle.md',
|
||||
'_fxsortfoldersfirst.md',
|
||||
'finderspawntab.md',
|
||||
'fxdefaultsearchscope.md',
|
||||
'fxremoveoldtrashitems.md',
|
||||
'fxenableextensionchangewarning.md',
|
||||
|
|
64
docs/finder/finderspawntab.md
Normal file
64
docs/finder/finderspawntab.md
Normal file
|
@ -0,0 +1,64 @@
|
|||
---
|
||||
title: Open folders destination | Finder
|
||||
description: Set whether folders open in a new tab or a new window
|
||||
head:
|
||||
- - meta
|
||||
- property: 'og:title'
|
||||
content: macOS defaults > Finder > Open folders destination
|
||||
- - meta
|
||||
- property: 'og:description'
|
||||
content: Set whether folders open in a new tab or a new window
|
||||
---
|
||||
|
||||
# Open folders destination
|
||||
|
||||
Set whether folders shown in the Finder open in a new tab or a new window when using `⌘ cmd`+`double-click`, and which option is shown in the context menu.
|
||||
|
||||
- **Tested on macOS**:
|
||||
- Sonoma
|
||||
- **Parameter type**: bool
|
||||
|
||||
## Set to `true` (default value)
|
||||
|
||||
Open folders in a new tab
|
||||
|
||||
```bash
|
||||
defaults write com.apple.finder "FinderSpawnTab" -bool "true" && killall Finder
|
||||
```
|
||||
|
||||
<img
|
||||
src="./images/FinderSpawnTab/true.png"
|
||||
alt="Example output with value set to true"
|
||||
width="953" height="571" style="height: auto"
|
||||
/>
|
||||
|
||||
## Set to `false`
|
||||
|
||||
Open folders in a new window
|
||||
|
||||
```bash
|
||||
defaults write com.apple.finder "FinderSpawnTab" -bool "false" && killall Finder
|
||||
```
|
||||
|
||||
<img
|
||||
src="./images/FinderSpawnTab/false.png"
|
||||
alt="Example output with value set to true"
|
||||
width="953" height="571" style="height: auto"
|
||||
/>
|
||||
|
||||
## Read current value
|
||||
|
||||
```bash
|
||||
defaults read com.apple.finder "FinderSpawnTab"
|
||||
```
|
||||
|
||||
## Reset to default value
|
||||
|
||||
```bash
|
||||
defaults delete com.apple.finder "FinderSpawnTab" && killall Finder
|
||||
```
|
||||
|
||||
## Set value from UI
|
||||
|
||||
1. Access Finder settings from macOS UI
|
||||
2. Toggle "Open folders in tabs instead of new windows" value
|
BIN
docs/finder/images/FinderSpawnTab/false.png
Normal file
BIN
docs/finder/images/FinderSpawnTab/false.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
docs/finder/images/FinderSpawnTab/true.png
Normal file
BIN
docs/finder/images/FinderSpawnTab/true.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
Loading…
Reference in a new issue