├── .github ├── ISSUE_TEMPLATE │ ├── add-a-new-command.md │ └── looking-for-a-command.md ├── renovate.json └── workflows │ └── lint.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── broken.md ├── components ├── FolderTableOfContents.vue └── SiteTableOfContents.vue ├── diff.sh ├── docs ├── .vitepress │ ├── config.js │ └── theme │ │ ├── custom.css │ │ └── index.js ├── activity-monitor │ ├── icontype.md │ ├── index.md │ └── updateperiod.md ├── contributing.md ├── desktop │ ├── _fxsortfoldersfirstondesktop.md │ ├── createdesktop.md │ ├── index.md │ ├── showexternalharddrivesondesktop.md │ ├── showharddrivesondesktop.md │ ├── showmountedserversondesktop.md │ └── showremovablemediaondesktop.md ├── dock │ ├── autohide-delay.md │ ├── autohide-time-modifier.md │ ├── autohide.md │ ├── images │ │ ├── autohide-delay │ │ │ ├── 0.5.mp4 │ │ │ └── 0.mp4 │ │ ├── autohide-time-modifier │ │ │ ├── 0.5.mp4 │ │ │ ├── 0.mp4 │ │ │ └── 2.mp4 │ │ ├── dock.png │ │ ├── mineffect │ │ │ ├── genie.mp4 │ │ │ ├── scale.mp4 │ │ │ └── suck.mp4 │ │ ├── orientation │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ └── right.png │ │ ├── show-recents │ │ │ ├── false.png │ │ │ └── true.png │ │ └── tilesize │ │ │ ├── 36.png │ │ │ └── 48.png │ ├── index.md │ ├── mineffect.md │ ├── orientation.md │ ├── scroll-to-open.md │ ├── show-recents.md │ ├── static-only.md │ └── tilesize.md ├── feedback-assistant │ ├── autogather.md │ └── index.md ├── finder │ ├── _fxsortfoldersfirst.md │ ├── appleshowallextensions.md │ ├── appleshowallfiles.md │ ├── finderspawntab.md │ ├── fxdefaultsearchscope.md │ ├── fxenableextensionchangewarning.md │ ├── fxpreferredviewstyle.md │ ├── fxremoveoldtrashitems.md │ ├── images │ │ ├── AppleShowAllFiles │ │ │ ├── false.png │ │ │ └── true.png │ │ ├── FXEnableExtensionChangeWarning │ │ │ ├── false.mp4 │ │ │ └── true.mp4 │ │ ├── FinderSpawnTab │ │ │ ├── false.png │ │ │ └── true.png │ │ ├── NSTableViewDefaultSizeMode │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── NSToolbarTitleViewRolloverDelay │ │ │ ├── 0.5.mp4 │ │ │ ├── 0.mp4 │ │ │ └── 1.mp4 │ │ ├── ShowPathbar │ │ │ ├── false.png │ │ │ └── true.png │ │ ├── _FXSortFoldersFirst │ │ │ ├── false.png │ │ │ └── true.png │ │ └── showWindowTitlebarIcons │ │ │ ├── false.png │ │ │ └── true.png │ ├── index.md │ ├── nsdocumentsavenewdocumentstocloud.md │ ├── nstableviewdefaultsizemode.md │ ├── nstoolbartitleviewrolloverdelay.md │ ├── quitmenuitem.md │ ├── showpathbar.md │ └── showwindowtitlebaricons.md ├── index.md ├── keyboard │ ├── applefnusagetype.md │ ├── applekeyboardfnstate.md │ ├── applekeyboarduimode.md │ ├── applepressandholdenabled.md │ ├── images │ │ ├── AppleKeyboardUIMode │ │ │ ├── disabled.png │ │ │ └── enabled.png │ │ ├── ApplePressAndHoldEnabled │ │ │ ├── false.png │ │ │ └── true.png │ │ └── toggle-language-indicator │ │ │ ├── off.png │ │ │ └── on.png │ ├── index.md │ └── toggle-language-indicator.md ├── menubar │ ├── dateformat.md │ ├── flashdateseparators.md │ ├── images │ │ ├── DateFormat │ │ │ ├── EEE_HH.mm.ss.mp4 │ │ │ ├── EEE_d_MMM_HH.mm.ss.mp4 │ │ │ └── EEE_h.mm.ss.mp4 │ │ └── FlashDateSeparators │ │ │ ├── false.mp4 │ │ │ └── true.mp4 │ └── index.md ├── messages │ ├── images │ │ └── show-subject-field │ │ │ ├── false.png │ │ │ └── true.png │ ├── index.md │ └── show-subject-field.md ├── misc │ ├── apple-intelligence.md │ ├── devmode.md │ ├── enable-spring-load-actions-on-all-items.md │ ├── index.md │ ├── lsquarantine.md │ ├── nsclosealwaysconfirmschanges.md │ ├── nsquitalwayskeepwindows.md │ └── userwantsplaybacknotifications.md ├── mission-control │ ├── applespacesswitchonactivate.md │ ├── expose-group-apps.md │ ├── images │ │ └── expose-group-apps │ │ │ ├── false.png │ │ │ └── true.png │ ├── index.md │ ├── mru-spaces.md │ └── spans-displays.md ├── mouse │ ├── focusfollowsmouse.md │ ├── images │ │ └── FocusFollowsMouse │ │ │ ├── false.mp4 │ │ │ └── true.mp4 │ ├── index.md │ ├── linear.md │ └── scaling.md ├── public │ ├── _headers │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-120x120-precomposed.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152-precomposed.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo.svg │ ├── media-1x1.jpg │ ├── media-1x1.webp │ ├── media-2x1.jpg │ ├── media-2x1.webp │ ├── mstile-150x150.png │ ├── netlify.svg │ ├── robots.txt │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── safari │ ├── images │ │ └── ShowFullURLInSmartSearchField │ │ │ ├── false.png │ │ │ └── true.png │ ├── index.md │ └── showfullurlinsmartsearchfield.md ├── screenshots │ ├── disable-shadow.md │ ├── images │ │ ├── disable-shadow │ │ │ ├── false.png │ │ │ └── true.png │ │ ├── screenshot-dark.png │ │ └── screenshot-light.png │ ├── include-date.md │ ├── index.md │ ├── location.md │ ├── show-thumbnail.md │ └── type.md ├── simulator │ ├── index.md │ └── screenshotsavelocation.md ├── textedit │ ├── images │ │ └── RichText │ │ │ ├── false.png │ │ │ └── true.png │ ├── index.md │ ├── richtext.md │ └── smartquotes.md ├── timemachine │ ├── donotoffernewdisksforbackup.md │ └── index.md ├── trackpad │ ├── dragging.md │ ├── draglock.md │ ├── firstclickthreshold.md │ ├── index.md │ └── trackpadthreefingerdrag.md └── xcode │ ├── ideadditionalcounterpartsuffixes.md │ ├── index.md │ └── showbuildoperationduration.md ├── license ├── media ├── media-1x1.html └── media-2x1.html ├── netlify.toml ├── package.json ├── readme.md └── safari.plist /.github/ISSUE_TEMPLATE/add-a-new-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.github/ISSUE_TEMPLATE/add-a-new-command.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/looking-for-a-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.github/ISSUE_TEMPLATE/looking-for-a-command.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22.14.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /broken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/broken.md -------------------------------------------------------------------------------- /components/FolderTableOfContents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/components/FolderTableOfContents.vue -------------------------------------------------------------------------------- /components/SiteTableOfContents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/components/SiteTableOfContents.vue -------------------------------------------------------------------------------- /diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/diff.sh -------------------------------------------------------------------------------- /docs/.vitepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/.vitepress/config.js -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/.vitepress/theme/index.js -------------------------------------------------------------------------------- /docs/activity-monitor/icontype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/activity-monitor/icontype.md -------------------------------------------------------------------------------- /docs/activity-monitor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/activity-monitor/index.md -------------------------------------------------------------------------------- /docs/activity-monitor/updateperiod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/activity-monitor/updateperiod.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/desktop/_fxsortfoldersfirstondesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/_fxsortfoldersfirstondesktop.md -------------------------------------------------------------------------------- /docs/desktop/createdesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/createdesktop.md -------------------------------------------------------------------------------- /docs/desktop/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/index.md -------------------------------------------------------------------------------- /docs/desktop/showexternalharddrivesondesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/showexternalharddrivesondesktop.md -------------------------------------------------------------------------------- /docs/desktop/showharddrivesondesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/showharddrivesondesktop.md -------------------------------------------------------------------------------- /docs/desktop/showmountedserversondesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/showmountedserversondesktop.md -------------------------------------------------------------------------------- /docs/desktop/showremovablemediaondesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/desktop/showremovablemediaondesktop.md -------------------------------------------------------------------------------- /docs/dock/autohide-delay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/autohide-delay.md -------------------------------------------------------------------------------- /docs/dock/autohide-time-modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/autohide-time-modifier.md -------------------------------------------------------------------------------- /docs/dock/autohide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/autohide.md -------------------------------------------------------------------------------- /docs/dock/images/autohide-delay/0.5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/autohide-delay/0.5.mp4 -------------------------------------------------------------------------------- /docs/dock/images/autohide-delay/0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/autohide-delay/0.mp4 -------------------------------------------------------------------------------- /docs/dock/images/autohide-time-modifier/0.5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/autohide-time-modifier/0.5.mp4 -------------------------------------------------------------------------------- /docs/dock/images/autohide-time-modifier/0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/autohide-time-modifier/0.mp4 -------------------------------------------------------------------------------- /docs/dock/images/autohide-time-modifier/2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/autohide-time-modifier/2.mp4 -------------------------------------------------------------------------------- /docs/dock/images/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/dock.png -------------------------------------------------------------------------------- /docs/dock/images/mineffect/genie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/mineffect/genie.mp4 -------------------------------------------------------------------------------- /docs/dock/images/mineffect/scale.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/mineffect/scale.mp4 -------------------------------------------------------------------------------- /docs/dock/images/mineffect/suck.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/mineffect/suck.mp4 -------------------------------------------------------------------------------- /docs/dock/images/orientation/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/orientation/bottom.png -------------------------------------------------------------------------------- /docs/dock/images/orientation/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/orientation/left.png -------------------------------------------------------------------------------- /docs/dock/images/orientation/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/orientation/right.png -------------------------------------------------------------------------------- /docs/dock/images/show-recents/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/show-recents/false.png -------------------------------------------------------------------------------- /docs/dock/images/show-recents/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/show-recents/true.png -------------------------------------------------------------------------------- /docs/dock/images/tilesize/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/tilesize/36.png -------------------------------------------------------------------------------- /docs/dock/images/tilesize/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/images/tilesize/48.png -------------------------------------------------------------------------------- /docs/dock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/index.md -------------------------------------------------------------------------------- /docs/dock/mineffect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/mineffect.md -------------------------------------------------------------------------------- /docs/dock/orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/orientation.md -------------------------------------------------------------------------------- /docs/dock/scroll-to-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/scroll-to-open.md -------------------------------------------------------------------------------- /docs/dock/show-recents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/show-recents.md -------------------------------------------------------------------------------- /docs/dock/static-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/static-only.md -------------------------------------------------------------------------------- /docs/dock/tilesize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/dock/tilesize.md -------------------------------------------------------------------------------- /docs/feedback-assistant/autogather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/feedback-assistant/autogather.md -------------------------------------------------------------------------------- /docs/feedback-assistant/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/feedback-assistant/index.md -------------------------------------------------------------------------------- /docs/finder/_fxsortfoldersfirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/_fxsortfoldersfirst.md -------------------------------------------------------------------------------- /docs/finder/appleshowallextensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/appleshowallextensions.md -------------------------------------------------------------------------------- /docs/finder/appleshowallfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/appleshowallfiles.md -------------------------------------------------------------------------------- /docs/finder/finderspawntab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/finderspawntab.md -------------------------------------------------------------------------------- /docs/finder/fxdefaultsearchscope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/fxdefaultsearchscope.md -------------------------------------------------------------------------------- /docs/finder/fxenableextensionchangewarning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/fxenableextensionchangewarning.md -------------------------------------------------------------------------------- /docs/finder/fxpreferredviewstyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/fxpreferredviewstyle.md -------------------------------------------------------------------------------- /docs/finder/fxremoveoldtrashitems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/fxremoveoldtrashitems.md -------------------------------------------------------------------------------- /docs/finder/images/AppleShowAllFiles/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/AppleShowAllFiles/false.png -------------------------------------------------------------------------------- /docs/finder/images/AppleShowAllFiles/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/AppleShowAllFiles/true.png -------------------------------------------------------------------------------- /docs/finder/images/FXEnableExtensionChangeWarning/false.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/FXEnableExtensionChangeWarning/false.mp4 -------------------------------------------------------------------------------- /docs/finder/images/FXEnableExtensionChangeWarning/true.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/FXEnableExtensionChangeWarning/true.mp4 -------------------------------------------------------------------------------- /docs/finder/images/FinderSpawnTab/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/FinderSpawnTab/false.png -------------------------------------------------------------------------------- /docs/finder/images/FinderSpawnTab/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/FinderSpawnTab/true.png -------------------------------------------------------------------------------- /docs/finder/images/NSTableViewDefaultSizeMode/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSTableViewDefaultSizeMode/1.png -------------------------------------------------------------------------------- /docs/finder/images/NSTableViewDefaultSizeMode/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSTableViewDefaultSizeMode/2.png -------------------------------------------------------------------------------- /docs/finder/images/NSTableViewDefaultSizeMode/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSTableViewDefaultSizeMode/3.png -------------------------------------------------------------------------------- /docs/finder/images/NSToolbarTitleViewRolloverDelay/0.5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSToolbarTitleViewRolloverDelay/0.5.mp4 -------------------------------------------------------------------------------- /docs/finder/images/NSToolbarTitleViewRolloverDelay/0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSToolbarTitleViewRolloverDelay/0.mp4 -------------------------------------------------------------------------------- /docs/finder/images/NSToolbarTitleViewRolloverDelay/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/NSToolbarTitleViewRolloverDelay/1.mp4 -------------------------------------------------------------------------------- /docs/finder/images/ShowPathbar/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/ShowPathbar/false.png -------------------------------------------------------------------------------- /docs/finder/images/ShowPathbar/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/ShowPathbar/true.png -------------------------------------------------------------------------------- /docs/finder/images/_FXSortFoldersFirst/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/_FXSortFoldersFirst/false.png -------------------------------------------------------------------------------- /docs/finder/images/_FXSortFoldersFirst/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/_FXSortFoldersFirst/true.png -------------------------------------------------------------------------------- /docs/finder/images/showWindowTitlebarIcons/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/showWindowTitlebarIcons/false.png -------------------------------------------------------------------------------- /docs/finder/images/showWindowTitlebarIcons/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/images/showWindowTitlebarIcons/true.png -------------------------------------------------------------------------------- /docs/finder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/index.md -------------------------------------------------------------------------------- /docs/finder/nsdocumentsavenewdocumentstocloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/nsdocumentsavenewdocumentstocloud.md -------------------------------------------------------------------------------- /docs/finder/nstableviewdefaultsizemode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/nstableviewdefaultsizemode.md -------------------------------------------------------------------------------- /docs/finder/nstoolbartitleviewrolloverdelay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/nstoolbartitleviewrolloverdelay.md -------------------------------------------------------------------------------- /docs/finder/quitmenuitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/quitmenuitem.md -------------------------------------------------------------------------------- /docs/finder/showpathbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/showpathbar.md -------------------------------------------------------------------------------- /docs/finder/showwindowtitlebaricons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/finder/showwindowtitlebaricons.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/keyboard/applefnusagetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/applefnusagetype.md -------------------------------------------------------------------------------- /docs/keyboard/applekeyboardfnstate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/applekeyboardfnstate.md -------------------------------------------------------------------------------- /docs/keyboard/applekeyboarduimode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/applekeyboarduimode.md -------------------------------------------------------------------------------- /docs/keyboard/applepressandholdenabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/applepressandholdenabled.md -------------------------------------------------------------------------------- /docs/keyboard/images/AppleKeyboardUIMode/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/AppleKeyboardUIMode/disabled.png -------------------------------------------------------------------------------- /docs/keyboard/images/AppleKeyboardUIMode/enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/AppleKeyboardUIMode/enabled.png -------------------------------------------------------------------------------- /docs/keyboard/images/ApplePressAndHoldEnabled/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/ApplePressAndHoldEnabled/false.png -------------------------------------------------------------------------------- /docs/keyboard/images/ApplePressAndHoldEnabled/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/ApplePressAndHoldEnabled/true.png -------------------------------------------------------------------------------- /docs/keyboard/images/toggle-language-indicator/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/toggle-language-indicator/off.png -------------------------------------------------------------------------------- /docs/keyboard/images/toggle-language-indicator/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/images/toggle-language-indicator/on.png -------------------------------------------------------------------------------- /docs/keyboard/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/index.md -------------------------------------------------------------------------------- /docs/keyboard/toggle-language-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/keyboard/toggle-language-indicator.md -------------------------------------------------------------------------------- /docs/menubar/dateformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/dateformat.md -------------------------------------------------------------------------------- /docs/menubar/flashdateseparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/flashdateseparators.md -------------------------------------------------------------------------------- /docs/menubar/images/DateFormat/EEE_HH.mm.ss.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/images/DateFormat/EEE_HH.mm.ss.mp4 -------------------------------------------------------------------------------- /docs/menubar/images/DateFormat/EEE_d_MMM_HH.mm.ss.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/images/DateFormat/EEE_d_MMM_HH.mm.ss.mp4 -------------------------------------------------------------------------------- /docs/menubar/images/DateFormat/EEE_h.mm.ss.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/images/DateFormat/EEE_h.mm.ss.mp4 -------------------------------------------------------------------------------- /docs/menubar/images/FlashDateSeparators/false.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/images/FlashDateSeparators/false.mp4 -------------------------------------------------------------------------------- /docs/menubar/images/FlashDateSeparators/true.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/images/FlashDateSeparators/true.mp4 -------------------------------------------------------------------------------- /docs/menubar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/menubar/index.md -------------------------------------------------------------------------------- /docs/messages/images/show-subject-field/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/messages/images/show-subject-field/false.png -------------------------------------------------------------------------------- /docs/messages/images/show-subject-field/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/messages/images/show-subject-field/true.png -------------------------------------------------------------------------------- /docs/messages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/messages/index.md -------------------------------------------------------------------------------- /docs/messages/show-subject-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/messages/show-subject-field.md -------------------------------------------------------------------------------- /docs/misc/apple-intelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/apple-intelligence.md -------------------------------------------------------------------------------- /docs/misc/devmode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/devmode.md -------------------------------------------------------------------------------- /docs/misc/enable-spring-load-actions-on-all-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/enable-spring-load-actions-on-all-items.md -------------------------------------------------------------------------------- /docs/misc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/index.md -------------------------------------------------------------------------------- /docs/misc/lsquarantine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/lsquarantine.md -------------------------------------------------------------------------------- /docs/misc/nsclosealwaysconfirmschanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/nsclosealwaysconfirmschanges.md -------------------------------------------------------------------------------- /docs/misc/nsquitalwayskeepwindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/nsquitalwayskeepwindows.md -------------------------------------------------------------------------------- /docs/misc/userwantsplaybacknotifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/misc/userwantsplaybacknotifications.md -------------------------------------------------------------------------------- /docs/mission-control/applespacesswitchonactivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/applespacesswitchonactivate.md -------------------------------------------------------------------------------- /docs/mission-control/expose-group-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/expose-group-apps.md -------------------------------------------------------------------------------- /docs/mission-control/images/expose-group-apps/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/images/expose-group-apps/false.png -------------------------------------------------------------------------------- /docs/mission-control/images/expose-group-apps/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/images/expose-group-apps/true.png -------------------------------------------------------------------------------- /docs/mission-control/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/index.md -------------------------------------------------------------------------------- /docs/mission-control/mru-spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/mru-spaces.md -------------------------------------------------------------------------------- /docs/mission-control/spans-displays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mission-control/spans-displays.md -------------------------------------------------------------------------------- /docs/mouse/focusfollowsmouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/focusfollowsmouse.md -------------------------------------------------------------------------------- /docs/mouse/images/FocusFollowsMouse/false.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/images/FocusFollowsMouse/false.mp4 -------------------------------------------------------------------------------- /docs/mouse/images/FocusFollowsMouse/true.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/images/FocusFollowsMouse/true.mp4 -------------------------------------------------------------------------------- /docs/mouse/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/index.md -------------------------------------------------------------------------------- /docs/mouse/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/linear.md -------------------------------------------------------------------------------- /docs/mouse/scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/mouse/scaling.md -------------------------------------------------------------------------------- /docs/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/_headers -------------------------------------------------------------------------------- /docs/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/browserconfig.xml -------------------------------------------------------------------------------- /docs/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/favicon-16x16.png -------------------------------------------------------------------------------- /docs/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/favicon-32x32.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/public/media-1x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/media-1x1.jpg -------------------------------------------------------------------------------- /docs/public/media-1x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/media-1x1.webp -------------------------------------------------------------------------------- /docs/public/media-2x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/media-2x1.jpg -------------------------------------------------------------------------------- /docs/public/media-2x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/media-2x1.webp -------------------------------------------------------------------------------- /docs/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/mstile-150x150.png -------------------------------------------------------------------------------- /docs/public/netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/netlify.svg -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/robots.txt -------------------------------------------------------------------------------- /docs/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/public/site.webmanifest -------------------------------------------------------------------------------- /docs/safari/images/ShowFullURLInSmartSearchField/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/safari/images/ShowFullURLInSmartSearchField/false.png -------------------------------------------------------------------------------- /docs/safari/images/ShowFullURLInSmartSearchField/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/safari/images/ShowFullURLInSmartSearchField/true.png -------------------------------------------------------------------------------- /docs/safari/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/safari/index.md -------------------------------------------------------------------------------- /docs/safari/showfullurlinsmartsearchfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/safari/showfullurlinsmartsearchfield.md -------------------------------------------------------------------------------- /docs/screenshots/disable-shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/disable-shadow.md -------------------------------------------------------------------------------- /docs/screenshots/images/disable-shadow/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/images/disable-shadow/false.png -------------------------------------------------------------------------------- /docs/screenshots/images/disable-shadow/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/images/disable-shadow/true.png -------------------------------------------------------------------------------- /docs/screenshots/images/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/images/screenshot-dark.png -------------------------------------------------------------------------------- /docs/screenshots/images/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/images/screenshot-light.png -------------------------------------------------------------------------------- /docs/screenshots/include-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/include-date.md -------------------------------------------------------------------------------- /docs/screenshots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/index.md -------------------------------------------------------------------------------- /docs/screenshots/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/location.md -------------------------------------------------------------------------------- /docs/screenshots/show-thumbnail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/show-thumbnail.md -------------------------------------------------------------------------------- /docs/screenshots/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/screenshots/type.md -------------------------------------------------------------------------------- /docs/simulator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/simulator/index.md -------------------------------------------------------------------------------- /docs/simulator/screenshotsavelocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/simulator/screenshotsavelocation.md -------------------------------------------------------------------------------- /docs/textedit/images/RichText/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/textedit/images/RichText/false.png -------------------------------------------------------------------------------- /docs/textedit/images/RichText/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/textedit/images/RichText/true.png -------------------------------------------------------------------------------- /docs/textedit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/textedit/index.md -------------------------------------------------------------------------------- /docs/textedit/richtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/textedit/richtext.md -------------------------------------------------------------------------------- /docs/textedit/smartquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/textedit/smartquotes.md -------------------------------------------------------------------------------- /docs/timemachine/donotoffernewdisksforbackup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/timemachine/donotoffernewdisksforbackup.md -------------------------------------------------------------------------------- /docs/timemachine/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/timemachine/index.md -------------------------------------------------------------------------------- /docs/trackpad/dragging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/trackpad/dragging.md -------------------------------------------------------------------------------- /docs/trackpad/draglock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/trackpad/draglock.md -------------------------------------------------------------------------------- /docs/trackpad/firstclickthreshold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/trackpad/firstclickthreshold.md -------------------------------------------------------------------------------- /docs/trackpad/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/trackpad/index.md -------------------------------------------------------------------------------- /docs/trackpad/trackpadthreefingerdrag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/trackpad/trackpadthreefingerdrag.md -------------------------------------------------------------------------------- /docs/xcode/ideadditionalcounterpartsuffixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/xcode/ideadditionalcounterpartsuffixes.md -------------------------------------------------------------------------------- /docs/xcode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/xcode/index.md -------------------------------------------------------------------------------- /docs/xcode/showbuildoperationduration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/docs/xcode/showbuildoperationduration.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/license -------------------------------------------------------------------------------- /media/media-1x1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/media/media-1x1.html -------------------------------------------------------------------------------- /media/media-2x1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/media/media-2x1.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/readme.md -------------------------------------------------------------------------------- /safari.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannbertrand/macos-defaults/HEAD/safari.plist --------------------------------------------------------------------------------