mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 23:57:07 +00:00
1.2 KiB
1.2 KiB
title | description | head | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Show Build Durations | Xcode | Show build durations in the Activity Viewer in Xcode's toolbar at the top of the workspace window. |
|
Show Build Durations
Show build durations in the Activity Viewer in Xcode's toolbar at the top of the workspace window.
- Tested on macOS:
- Catalina
- Parameter type: bool
Set to true
Show the build duration in the Xcode's toolbar
defaults write com.apple.dt.Xcode "ShowBuildOperationDuration" -bool "true" && killall Xcode
Set to false
(default value)
Do not show the build duration in the Xcode's toolbar
defaults write com.apple.dt.Xcode "ShowBuildOperationDuration" -bool "false" && killall Xcode
Read current value
defaults read com.apple.dt.Xcode "ShowBuildOperationDuration"
Reset to default value
defaults delete com.apple.dt.Xcode "ShowBuildOperationDuration" && killall Xcode