├── .gitignore ├── .macos ├── Brewfile ├── LICENSE ├── README.md └── terminal ├── Snazzy.itermcolors └── aura-theme.itermcolors /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.macos: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # ~/.macos — thanks to @mathiasbynens https://mths.be/macos 4 | 5 | # Close any open System Preferences panes, to prevent them from overriding 6 | # settings we’re about to change 7 | osascript -e 'tell application "System Preferences" to quit' 8 | 9 | # Ask for the administrator password upfront 10 | sudo -v 11 | 12 | # Keep-alive: update existing `sudo` time stamp until `.macos` has finished 13 | while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & 14 | 15 | ############################################################################### 16 | # General UI/UX # 17 | ############################################################################### 18 | 19 | # Disable the sound effects on boot 20 | sudo nvram SystemAudioVolume=" " 21 | 22 | # Disable the “Are you sure you want to open this application?” dialog 23 | defaults write com.apple.LaunchServices LSQuarantine -bool false 24 | 25 | # Remove duplicates in the “Open With” menu (also see `lscleanup` alias) 26 | /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user 27 | 28 | # Disable automatic capitalization as it’s annoying when typing code 29 | defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false 30 | 31 | # Disable smart dashes as they’re annoying when typing code 32 | defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false 33 | 34 | # Disable automatic period substitution as it’s annoying when typing code 35 | defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool false 36 | 37 | # Disable smart quotes as they’re annoying when typing code 38 | defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false 39 | 40 | ############################################################################### 41 | # Trackpad, mouse, and input # 42 | ############################################################################### 43 | 44 | # Trackpad: enable tap to click for this user and for the login screen 45 | defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true 46 | defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 47 | defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 48 | 49 | # Increase sound quality for Bluetooth headphones/headsets 50 | defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 51 | 52 | # Enable full keyboard access for all controls 53 | # (e.g. enable Tab in modal dialogs) 54 | defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 55 | 56 | # Use scroll gesture with the Ctrl (^) modifier key to zoom 57 | defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true 58 | defaults write com.apple.universalaccess HIDScrollZoomModifierMask -int 262144 59 | # Follow the keyboard focus while zoomed in 60 | defaults write com.apple.universalaccess closeViewZoomFollowsFocus -bool true 61 | 62 | # Disable press-and-hold for keys in favor of key repeat 63 | defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false 64 | 65 | # Set a blazingly fast keyboard repeat rate 66 | defaults write NSGlobalDomain KeyRepeat -int 1 67 | defaults write NSGlobalDomain InitialKeyRepeat -int 10 68 | 69 | # Set language and text formats 70 | # Note: if you’re in the US, replace `EUR` with `USD`, `Centimeters` with 71 | # `Inches`, `en_GB` with `en_US`, and `true` with `false`. 72 | defaults write NSGlobalDomain AppleLanguages -array "en" "nl" 73 | defaults write NSGlobalDomain AppleLocale -string "en_GB@currency=EUR" 74 | defaults write NSGlobalDomain AppleMeasurementUnits -string "Centimeters" 75 | defaults write NSGlobalDomain AppleMetricUnits -bool true 76 | 77 | # Stop iTunes from responding to the keyboard media keys 78 | launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist 2> /dev/null 79 | 80 | ############################################################################### 81 | # Screen # 82 | ############################################################################### 83 | 84 | # Require password immediately after sleep or screen saver begins 85 | defaults write com.apple.screensaver askForPassword -int 1 86 | defaults write com.apple.screensaver askForPasswordDelay -int 0 87 | 88 | # Save screenshots to icloud 89 | defaults write com.apple.screencapture location /Users/${USER}/Library/Mobile\ Documents/com\~apple\~CloudDocs/screenshot 90 | 91 | ############################################################################### 92 | # Finder # 93 | ############################################################################### 94 | 95 | # Set Desktop as the default location for new Finder windows 96 | # For other paths, use `PfLo` and `file:///full/path/here/` 97 | defaults write com.apple.finder NewWindowTarget -string "PfLo" 98 | defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}/" 99 | 100 | # Finder: show all filename extensions 101 | defaults write NSGlobalDomain AppleShowAllExtensions -bool true 102 | 103 | # Finder: show status bar 104 | defaults write com.apple.finder ShowStatusBar -bool true 105 | 106 | # Finder: hide path bar 107 | defaults write com.apple.finder ShowPathbar -bool false 108 | 109 | # Display full POSIX path as Finder window title 110 | defaults write com.apple.finder _FXShowPosixPathInTitle -bool true 111 | 112 | # Disable the warning when changing a file extension 113 | defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false 114 | 115 | # Avoid creating .DS_Store files on network or USB volumes 116 | defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true 117 | defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true 118 | 119 | # Enable snap-to-grid for icons on the desktop and in other icon views 120 | /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist 121 | /usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist 122 | /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist 123 | 124 | # Use list view in all Finder windows by default 125 | # Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv` 126 | defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv" 127 | 128 | # Disable the warning before emptying the Trash 129 | defaults write com.apple.finder WarnOnEmptyTrash -bool false 130 | 131 | ############################################################################### 132 | # Dock, Dashboard, and hot corners # 133 | ############################################################################### 134 | 135 | # Don’t show Dashboard as a Space 136 | defaults write com.apple.dock dashboard-in-overlay -bool true 137 | 138 | # Automatically hide and show the Dock 139 | defaults write com.apple.dock autohide -bool true 140 | 141 | ############################################################################### 142 | # Safari & WebKit # 143 | ############################################################################### 144 | 145 | # Privacy: don’t send search queries to Apple 146 | defaults write com.apple.Safari UniversalSearchEnabled -bool false 147 | defaults write com.apple.Safari SuppressSearchSuggestions -bool true 148 | 149 | # Press Tab to highlight each item on a web page 150 | defaults write com.apple.Safari WebKitTabToLinksPreferenceKey -bool true 151 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2TabsToLinks -bool true 152 | 153 | # Show the full URL in the address bar (note: this still hides the scheme) 154 | defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true 155 | 156 | # Set Safari’s home page to `about:blank` for faster loading 157 | defaults write com.apple.Safari HomePage -string "about:blank" 158 | 159 | # Prevent Safari from opening ‘safe’ files automatically after downloading 160 | defaults write com.apple.Safari AutoOpenSafeDownloads -bool false 161 | 162 | # Allow hitting the Backspace key to go to the previous page in history 163 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool true 164 | 165 | # Hide Safari’s bookmarks bar by default 166 | defaults write com.apple.Safari ShowFavoritesBar -bool false 167 | 168 | # Hide Safari’s sidebar in Top Sites 169 | defaults write com.apple.Safari ShowSidebarInTopSites -bool false 170 | 171 | # Disable Safari’s thumbnail cache for History and Top Sites 172 | defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2 173 | 174 | # Enable Safari’s debug menu 175 | defaults write com.apple.Safari IncludeInternalDebugMenu -bool true 176 | 177 | # Make Safari’s search banners default to Contains instead of Starts With 178 | defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false 179 | 180 | # Remove useless icons from Safari’s bookmarks bar 181 | defaults write com.apple.Safari ProxiesInBookmarksBar "()" 182 | 183 | # Enable the Develop menu and the Web Inspector in Safari 184 | defaults write com.apple.Safari IncludeDevelopMenu -bool true 185 | defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true 186 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true 187 | 188 | # Add a context menu item for showing the Web Inspector in web views 189 | defaults write NSGlobalDomain WebKitDeveloperExtras -bool true 190 | 191 | # Enable continuous spellchecking 192 | defaults write com.apple.Safari WebContinuousSpellCheckingEnabled -bool true 193 | # Disable auto-correct 194 | defaults write com.apple.Safari WebAutomaticSpellingCorrectionEnabled -bool false 195 | 196 | # Disable AutoFill 197 | defaults write com.apple.Safari AutoFillFromAddressBook -bool false 198 | defaults write com.apple.Safari AutoFillPasswords -bool false 199 | defaults write com.apple.Safari AutoFillCreditCardData -bool false 200 | defaults write com.apple.Safari AutoFillMiscellaneousForms -bool false 201 | 202 | # Warn about fraudulent websites 203 | defaults write com.apple.Safari WarnAboutFraudulentWebsites -bool true 204 | 205 | # Disable plug-ins 206 | defaults write com.apple.Safari WebKitPluginsEnabled -bool false 207 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2PluginsEnabled -bool false 208 | 209 | # Disable Java 210 | defaults write com.apple.Safari WebKitJavaEnabled -bool false 211 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaEnabled -bool false 212 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaEnabledForLocalFiles -bool false 213 | 214 | # Block pop-up windows 215 | defaults write com.apple.Safari WebKitJavaScriptCanOpenWindowsAutomatically -bool false 216 | defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaScriptCanOpenWindowsAutomatically -bool false 217 | 218 | # Disable auto-playing video 219 | #defaults write com.apple.Safari WebKitMediaPlaybackAllowsInline -bool false 220 | #defaults write com.apple.SafariTechnologyPreview WebKitMediaPlaybackAllowsInline -bool false 221 | #defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2AllowsInlineMediaPlayback -bool false 222 | #defaults write com.apple.SafariTechnologyPreview com.apple.Safari.ContentPageGroupIdentifier.WebKit2AllowsInlineMediaPlayback -bool false 223 | 224 | # Enable “Do Not Track” 225 | defaults write com.apple.Safari SendDoNotTrackHTTPHeader -bool true 226 | 227 | # Update extensions automatically 228 | defaults write com.apple.Safari InstallExtensionUpdatesAutomatically -bool true 229 | 230 | ############################################################################### 231 | # Mail # 232 | ############################################################################### 233 | 234 | # Disable send and reply animations in Mail.app 235 | defaults write com.apple.mail DisableReplyAnimations -bool true 236 | defaults write com.apple.mail DisableSendAnimations -bool true 237 | 238 | # Copy email addresses as `foo@example.com` instead of `Foo Bar ` in Mail.app 239 | defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false 240 | 241 | # Add the keyboard shortcut ⌘ + Enter to send an email in Mail.app 242 | defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "@\U21a9" 243 | 244 | # Display emails in threaded mode, sorted by date (oldest at the top) 245 | defaults write com.apple.mail DraftsViewerAttributes -dict-add "DisplayInThreadedMode" -string "yes" 246 | defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortedDescending" -string "yes" 247 | defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortOrder" -string "received-date" 248 | 249 | # Disable inline attachments (just show the icons) 250 | defaults write com.apple.mail DisableInlineAttachmentViewing -bool true 251 | 252 | ############################################################################### 253 | # Terminal & iTerm 2 # 254 | ############################################################################### 255 | 256 | # Only use UTF-8 in Terminal.app 257 | defaults write com.apple.terminal StringEncodings -array 4 258 | 259 | # Enable “focus follows mouse” for Terminal.app and all X11 apps 260 | # i.e. hover over a window and start typing in it without clicking first 261 | #defaults write com.apple.terminal FocusFollowsMouse -bool true 262 | #defaults write org.x.X11 wm_ffm -bool true 263 | 264 | # Enable Secure Keyboard Entry in Terminal.app 265 | # See: https://security.stackexchange.com/a/47786/8918 266 | defaults write com.apple.terminal SecureKeyboardEntry -bool true 267 | 268 | # Disable the annoying line marks 269 | defaults write com.apple.Terminal ShowLineMarks -int 0 270 | 271 | # Install the Solarized Darcula theme for iTerm 272 | open "./terminal/Snazzy.itermcolors" 273 | 274 | # Don’t display the annoying prompt when quitting iTerm 275 | defaults write com.googlecode.iterm2 PromptOnQuit -bool false 276 | 277 | ############################################################################### 278 | # Activity Monitor # 279 | ############################################################################### 280 | 281 | # Show the main window when launching Activity Monitor 282 | defaults write com.apple.ActivityMonitor OpenMainWindow -bool true 283 | 284 | # Visualize CPU usage in the Activity Monitor Dock icon 285 | defaults write com.apple.ActivityMonitor IconType -int 5 286 | 287 | # Show all processes in Activity Monitor 288 | defaults write com.apple.ActivityMonitor ShowCategory -int 0 289 | 290 | # Sort Activity Monitor results by CPU usage 291 | defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage" 292 | defaults write com.apple.ActivityMonitor SortDirection -int 0 293 | 294 | ############################################################################### 295 | # Mac App Store # 296 | ############################################################################### 297 | 298 | # Enable the WebKit Developer Tools in the Mac App Store 299 | defaults write com.apple.appstore WebKitDeveloperExtras -bool true 300 | 301 | # Enable Debug Menu in the Mac App Store 302 | defaults write com.apple.appstore ShowDebugMenu -bool true 303 | 304 | # Enable the automatic update check 305 | defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool true 306 | 307 | # Check for software updates daily, not just once per week 308 | defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 309 | 310 | # Download newly available updates in background 311 | defaults write com.apple.SoftwareUpdate AutomaticDownload -int 1 312 | 313 | # Install System data files & security updates 314 | defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 1 315 | 316 | # Automatically download apps purchased on other Macs 317 | defaults write com.apple.SoftwareUpdate ConfigDataInstall -int 1 318 | 319 | # Turn on app auto-update 320 | # defaults write com.apple.commerce AutoUpdate -bool true 321 | 322 | # Allow the App Store to reboot machine on macOS updates 323 | # defaults write com.apple.commerce AutoUpdateRestartRequired -bool true 324 | 325 | 326 | ############################################################################### 327 | # Kill affected applications # 328 | ############################################################################### 329 | 330 | for app in "Activity Monitor" \ 331 | "Address Book" \ 332 | "Calendar" \ 333 | "Dock" \ 334 | "Finder" \ 335 | "Google Chrome Canary" \ 336 | "Google Chrome" \ 337 | "Mail" \ 338 | "Safari" \ 339 | "SystemUIServer" \ 340 | "Terminal"; do 341 | killall "${app}" &> /dev/null 342 | done 343 | echo "Done. 🙌 \n Note that some of these changes require a logout/restart to take effect." 344 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | tap 'homebrew/bundle' 4 | tap 'homebrew/cask' 5 | tap 'homebrew/cask-versions' 6 | tap 'homebrew/core' 7 | tap 'homebrew/services' 8 | 9 | brew 'archey4' 10 | brew 'bat' 11 | brew 'ffmpeg' 12 | brew 'fzf' 13 | brew 'jq' 14 | brew 'gh' 15 | brew 'git' 16 | brew 'git-extras' 17 | brew 'imagemagick' 18 | brew 'imageoptim-cli' 19 | brew 'nvm' 20 | brew 'python' 21 | brew 'tree' 22 | brew 'youtube-dl' 23 | brew 'z' 24 | 25 | # React Native Development Setup 26 | tap 'facebook/fb' 27 | brew 'idb-companion' # automating iOS simulators and devices 28 | brew 'ios-deploy' 29 | brew 'expo-orbit' 30 | brew 'fastlane' 31 | brew 'mas' # Mac App Store command line interface 32 | brew 'watchman' 33 | brew 'temurin' # Android Java SDK that just works 34 | tap 'mobile-dev-inc/tap' # e2e test with maestro 35 | brew 'maestro' 36 | 37 | # Other Stuff 38 | # cask 'alfred' 39 | cask 'arc' 40 | cask '1password' 41 | cask 'around' 42 | cask 'brave-browser' 43 | cask 'discord' 44 | cask 'dropbox' 45 | cask 'elgato-wave-link' 46 | cask 'figma' 47 | cask 'firefox' 48 | cask 'github' 49 | cask 'google-chrome' 50 | cask 'imageoptim' 51 | cask 'insomnia' 52 | cask 'iterm2' 53 | # cask 'microsoft-teams' 54 | cask 'notion' 55 | # cask 'rectangle-pro' 56 | cask 'screaming-frog-seo-spider' 57 | cask 'setapp' 58 | cask 'obs' 59 | cask 'raycast' 60 | cask 'stremio' 61 | cask 'spotify' 62 | cask 'sublime-text' 63 | cask 'visual-studio-code' 64 | cask 'visual-studio-code-insiders' 65 | cask 'vlc' 66 | cask 'zoom' -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019 David Leuliette 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # flexbox setup 2 | 3 | > An automated install for new macs 4 | 5 | ## Install Xcode 6 | 7 | - [ ] Open App Store and Download Xcode 8 | - [ ] `xcode-select --install` 9 | - [ ] `sudo xcodebuild -license` 10 | 11 | ## Ruby and GitHub setup 12 | 13 | Follow the **[macOS setup guide from lewagon](https://github.com/lewagon/setup/blob/master/macos.md)** 14 | 15 | ## Install applications from the internet 16 | 17 | Clone the repo on your machine 18 | 19 | ``` 20 | gh repo clone flexbox/setup 21 | ``` 22 | 23 | Automatically install applications from `Brewfile` 24 | 25 | ```console 26 | brew bundle 27 | ``` 28 | 29 | ## macOS defaults for hackers 30 | 31 | Update `.zshrc` 32 | 33 | ```console 34 | # ~/.zshrc 35 | 36 | # You can change the theme with another one: 37 | # https://github.com/robbyrussell/oh-my-zsh/wiki/themes 38 | ZSH_THEME="refined" 39 | 40 | # Useful plugins for Rails development with Sublime Text 41 | plugins=(git gitfast common-aliases sublime zsh-syntax-highlighting history-substring-search zsh-autosuggestions) 42 | ``` 43 | 44 | ```console 45 | bash ./.macos 46 | ``` 47 | -------------------------------------------------------------------------------- /terminal/Snazzy.itermcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ansi 0 Color 6 | 7 | Alpha Component 8 | 1 9 | Blue Component 10 | 0.0 11 | Color Space 12 | sRGB 13 | Green Component 14 | 0.0 15 | Red Component 16 | 0.0 17 | 18 | Ansi 1 Color 19 | 20 | Alpha Component 21 | 1 22 | Blue Component 23 | 0.34117639064788818 24 | Color Space 25 | sRGB 26 | Green Component 27 | 0.36078426241874695 28 | Red Component 29 | 1 30 | 31 | Ansi 10 Color 32 | 33 | Alpha Component 34 | 1 35 | Blue Component 36 | 0.55686265230178833 37 | Color Space 38 | sRGB 39 | Green Component 40 | 0.96862751245498657 41 | Red Component 42 | 0.35294127464294434 43 | 44 | Ansi 11 Color 45 | 46 | Alpha Component 47 | 1 48 | Blue Component 49 | 0.61568623781204224 50 | Color Space 51 | sRGB 52 | Green Component 53 | 0.97647064924240112 54 | Red Component 55 | 0.95294123888015747 56 | 57 | Ansi 12 Color 58 | 59 | Alpha Component 60 | 1 61 | Blue Component 62 | 0.99999994039535522 63 | Color Space 64 | sRGB 65 | Green Component 66 | 0.78039222955703735 67 | Red Component 68 | 0.34117650985717773 69 | 70 | Ansi 13 Color 71 | 72 | Alpha Component 73 | 1 74 | Blue Component 75 | 0.75686269998550415 76 | Color Space 77 | sRGB 78 | Green Component 79 | 0.4156862199306488 80 | Red Component 81 | 1 82 | 83 | Ansi 14 Color 84 | 85 | Alpha Component 86 | 1 87 | Blue Component 88 | 0.99607843160629272 89 | Color Space 90 | sRGB 91 | Green Component 92 | 0.92941170930862427 93 | Red Component 94 | 0.60392171144485474 95 | 96 | Ansi 15 Color 97 | 98 | Alpha Component 99 | 1 100 | Blue Component 101 | 0.94117647409439087 102 | Color Space 103 | sRGB 104 | Green Component 105 | 0.94509810209274292 106 | Red Component 107 | 0.94509810209274292 108 | 109 | Ansi 2 Color 110 | 111 | Alpha Component 112 | 1 113 | Blue Component 114 | 0.55686265230178833 115 | Color Space 116 | sRGB 117 | Green Component 118 | 0.96862751245498657 119 | Red Component 120 | 0.35294127464294434 121 | 122 | Ansi 3 Color 123 | 124 | Alpha Component 125 | 1 126 | Blue Component 127 | 0.61568623781204224 128 | Color Space 129 | sRGB 130 | Green Component 131 | 0.97647064924240112 132 | Red Component 133 | 0.95294123888015747 134 | 135 | Ansi 4 Color 136 | 137 | Alpha Component 138 | 1 139 | Blue Component 140 | 0.99999994039535522 141 | Color Space 142 | sRGB 143 | Green Component 144 | 0.78039222955703735 145 | Red Component 146 | 0.34117650985717773 147 | 148 | Ansi 5 Color 149 | 150 | Alpha Component 151 | 1 152 | Blue Component 153 | 0.75686269998550415 154 | Color Space 155 | sRGB 156 | Green Component 157 | 0.4156862199306488 158 | Red Component 159 | 1 160 | 161 | Ansi 6 Color 162 | 163 | Alpha Component 164 | 1 165 | Blue Component 166 | 0.99607843160629272 167 | Color Space 168 | sRGB 169 | Green Component 170 | 0.92941170930862427 171 | Red Component 172 | 0.60392171144485474 173 | 174 | Ansi 7 Color 175 | 176 | Alpha Component 177 | 1 178 | Blue Component 179 | 0.94117647409439087 180 | Color Space 181 | sRGB 182 | Green Component 183 | 0.94509810209274292 184 | Red Component 185 | 0.94509810209274292 186 | 187 | Ansi 8 Color 188 | 189 | Alpha Component 190 | 1 191 | Blue Component 192 | 0.40784311294555664 193 | Color Space 194 | sRGB 195 | Green Component 196 | 0.40784311294555664 197 | Red Component 198 | 0.40784323215484619 199 | 200 | Ansi 9 Color 201 | 202 | Alpha Component 203 | 1 204 | Blue Component 205 | 0.34117639064788818 206 | Color Space 207 | sRGB 208 | Green Component 209 | 0.36078426241874695 210 | Red Component 211 | 1 212 | 213 | Background Color 214 | 215 | Alpha Component 216 | 1 217 | Blue Component 218 | 0.21176469326019287 219 | Color Space 220 | sRGB 221 | Green Component 222 | 0.16470584273338318 223 | Red Component 224 | 0.15686270594596863 225 | 226 | Badge Color 227 | 228 | Alpha Component 229 | 0.5 230 | Blue Component 231 | 0.0 232 | Color Space 233 | sRGB 234 | Green Component 235 | 0.1491314172744751 236 | Red Component 237 | 1 238 | 239 | Bold Color 240 | 241 | Alpha Component 242 | 1 243 | Blue Component 244 | 0.97102349996566772 245 | Color Space 246 | sRGB 247 | Green Component 248 | 0.97102349996566772 249 | Red Component 250 | 0.97102361917495728 251 | 252 | Cursor Color 253 | 254 | Alpha Component 255 | 1 256 | Blue Component 257 | 0.91647690534591675 258 | Color Space 259 | sRGB 260 | Green Component 261 | 0.91648870706558228 262 | Red Component 263 | 0.91646724939346313 264 | 265 | Cursor Guide Color 266 | 267 | Alpha Component 268 | 0.25 269 | Blue Component 270 | 1 271 | Color Space 272 | sRGB 273 | Green Component 274 | 0.9268307089805603 275 | Red Component 276 | 0.70213186740875244 277 | 278 | Cursor Text Color 279 | 280 | Alpha Component 281 | 1 282 | Blue Component 283 | 0.21176469326019287 284 | Color Space 285 | sRGB 286 | Green Component 287 | 0.16470584273338318 288 | Red Component 289 | 0.15686270594596863 290 | 291 | Foreground Color 292 | 293 | Alpha Component 294 | 1 295 | Blue Component 296 | 0.92156857252120972 297 | Color Space 298 | sRGB 299 | Green Component 300 | 0.94117647409439087 301 | Red Component 302 | 0.93725490570068359 303 | 304 | Link Color 305 | 306 | Alpha Component 307 | 1 308 | Blue Component 309 | 0.85775750875473022 310 | Color Space 311 | sRGB 312 | Green Component 313 | 0.66938728094100952 314 | Red Component 315 | 0.29264676570892334 316 | 317 | Selected Text Color 318 | 319 | Alpha Component 320 | 1 321 | Blue Component 322 | 0.0 323 | Color Space 324 | sRGB 325 | Green Component 326 | 0.0 327 | Red Component 328 | 0.0 329 | 330 | Selection Color 331 | 332 | Alpha Component 333 | 1 334 | Blue Component 335 | 0.81719964742660522 336 | Color Space 337 | sRGB 338 | Green Component 339 | 0.73586553335189819 340 | Red Component 341 | 0.57319694757461548 342 | 343 | 344 | 345 | -------------------------------------------------------------------------------- /terminal/aura-theme.itermcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ansi 0 Color 6 | 7 | Alpha Component 8 | 1 9 | Blue Component 10 | 0.09411764705882353 11 | Color Space 12 | sRGB 13 | Green Component 14 | 0.058823529411764705 15 | Red Component 16 | 0.06666666666666667 17 | 18 | Ansi 1 Color 19 | 20 | Alpha Component 21 | 1 22 | Blue Component 23 | 0.403921568627451 24 | Color Space 25 | sRGB 26 | Green Component 27 | 0.403921568627451 28 | Red Component 29 | 1 30 | 31 | Ansi 10 Color 32 | 33 | Alpha Component 34 | 1 35 | Blue Component 36 | 1 37 | Color Space 38 | sRGB 39 | Green Component 40 | 0.4666666666666667 41 | Red Component 42 | 0.6352941176470588 43 | 44 | Ansi 11 Color 45 | 46 | Alpha Component 47 | 1 48 | Blue Component 49 | 0.5215686274509804 50 | Color Space 51 | sRGB 52 | Green Component 53 | 0.792156862745098 54 | Red Component 55 | 1 56 | 57 | Ansi 12 Color 58 | 59 | Alpha Component 60 | 1 61 | Blue Component 62 | 1 63 | Color Space 64 | sRGB 65 | Green Component 66 | 0.4666666666666667 67 | Red Component 68 | 0.6352941176470588 69 | 70 | Ansi 13 Color 71 | 72 | Alpha Component 73 | 1 74 | Blue Component 75 | 1 76 | Color Space 77 | sRGB 78 | Green Component 79 | 0.4666666666666667 80 | Red Component 81 | 0.6352941176470588 82 | 83 | Ansi 14 Color 84 | 85 | Alpha Component 86 | 1 87 | Blue Component 88 | 0.792156862745098 89 | Color Space 90 | sRGB 91 | Green Component 92 | 1 93 | Red Component 94 | 0.3803921568627451 95 | 96 | Ansi 15 Color 97 | 98 | Alpha Component 99 | 1 100 | Blue Component 101 | 0.9333333333333333 102 | Color Space 103 | sRGB 104 | Green Component 105 | 0.9254901960784314 106 | Red Component 107 | 0.9294117647058824 108 | 109 | Ansi 2 Color 110 | 111 | Alpha Component 112 | 1 113 | Blue Component 114 | 0.792156862745098 115 | Color Space 116 | sRGB 117 | Green Component 118 | 1 119 | Red Component 120 | 0.3803921568627451 121 | 122 | Ansi 3 Color 123 | 124 | Alpha Component 125 | 1 126 | Blue Component 127 | 0.5215686274509804 128 | Color Space 129 | sRGB 130 | Green Component 131 | 0.792156862745098 132 | Red Component 133 | 1 134 | 135 | Ansi 4 Color 136 | 137 | Alpha Component 138 | 1 139 | Blue Component 140 | 1 141 | Color Space 142 | sRGB 143 | Green Component 144 | 0.4666666666666667 145 | Red Component 146 | 0.6352941176470588 147 | 148 | Ansi 5 Color 149 | 150 | Alpha Component 151 | 1 152 | Blue Component 153 | 1 154 | Color Space 155 | sRGB 156 | Green Component 157 | 0.4666666666666667 158 | Red Component 159 | 0.6352941176470588 160 | 161 | Ansi 6 Color 162 | 163 | Alpha Component 164 | 1 165 | Blue Component 166 | 0.792156862745098 167 | Color Space 168 | sRGB 169 | Green Component 170 | 1 171 | Red Component 172 | 0.3803921568627451 173 | 174 | Ansi 7 Color 175 | 176 | Alpha Component 177 | 1 178 | Blue Component 179 | 0.9333333333333333 180 | Color Space 181 | sRGB 182 | Green Component 183 | 0.9254901960784314 184 | Red Component 185 | 0.9294117647058824 186 | 187 | Ansi 8 Color 188 | 189 | Alpha Component 190 | 1 191 | Blue Component 192 | 0.30196078431372547 193 | Color Space 194 | sRGB 195 | Green Component 196 | 0.30196078431372547 197 | Red Component 198 | 0.30196078431372547 199 | 200 | Ansi 9 Color 201 | 202 | Alpha Component 203 | 1 204 | Blue Component 205 | 0.5215686274509804 206 | Color Space 207 | sRGB 208 | Green Component 209 | 0.792156862745098 210 | Red Component 211 | 1 212 | 213 | Background Color 214 | 215 | Alpha Component 216 | 1 217 | Blue Component 218 | 0.10588235294117647 219 | Color Space 220 | sRGB 221 | Green Component 222 | 0.0784313725490196 223 | Red Component 224 | 0.08235294117647059 225 | 226 | Badge Color 227 | 228 | Alpha Component 229 | 0.5 230 | Blue Component 231 | 0.403921568627451 232 | Color Space 233 | sRGB 234 | Green Component 235 | 0.403921568627451 236 | Red Component 237 | 1 238 | 239 | Bold Color 240 | 241 | Alpha Component 242 | 1 243 | Blue Component 244 | 0.9333333333333333 245 | Color Space 246 | sRGB 247 | Green Component 248 | 0.9254901960784314 249 | Red Component 250 | 0.9294117647058824 251 | 252 | Cursor Color 253 | 254 | Alpha Component 255 | 1 256 | Blue Component 257 | 1 258 | Color Space 259 | sRGB 260 | Green Component 261 | 0.4666666666666667 262 | Red Component 263 | 0.6352941176470588 264 | 265 | Cursor Guide Color 266 | 267 | Alpha Component 268 | 0.25 269 | Blue Component 270 | 1 271 | Color Space 272 | sRGB 273 | Green Component 274 | 0.8862745098039215 275 | Red Component 276 | 0.5098039215686274 277 | 278 | Cursor Text Color 279 | 280 | Alpha Component 281 | 1 282 | Blue Component 283 | 0.9333333333333333 284 | Color Space 285 | sRGB 286 | Green Component 287 | 0.9254901960784314 288 | Red Component 289 | 0.9294117647058824 290 | 291 | Foreground Color 292 | 293 | Alpha Component 294 | 1 295 | Blue Component 296 | 0.9333333333333333 297 | Color Space 298 | sRGB 299 | Green Component 300 | 0.9254901960784314 301 | Red Component 302 | 0.9294117647058824 303 | 304 | Link Color 305 | 306 | Alpha Component 307 | 1 308 | Blue Component 309 | 1 310 | Color Space 311 | sRGB 312 | Green Component 313 | 0.4666666666666667 314 | Red Component 315 | 0.6352941176470588 316 | 317 | Selected Text Color 318 | 319 | Alpha Component 320 | 1 321 | Blue Component 322 | 0.9333333333333333 323 | Color Space 324 | sRGB 325 | Green Component 326 | 0.9254901960784314 327 | Red Component 328 | 0.9294117647058824 329 | 330 | Selection Color 331 | 332 | Alpha Component 333 | 1 334 | Blue Component 335 | 1 336 | Color Space 337 | sRGB 338 | Green Component 339 | 0.4666666666666667 340 | Red Component 341 | 0.6352941176470588 342 | 343 | Tab Color 344 | 345 | Alpha Component 346 | 1 347 | Blue Component 348 | 0.17647058823529413 349 | Color Space 350 | sRGB 351 | Green Component 352 | 0.17647058823529413 353 | Red Component 354 | 0.17647058823529413 355 | 356 | Underline Color 357 | 358 | Alpha Component 359 | 1 360 | Blue Component 361 | 1 362 | Color Space 363 | sRGB 364 | Green Component 365 | 0.4666666666666667 366 | Red Component 367 | 0.6352941176470588 368 | 369 | 370 | 371 | --------------------------------------------------------------------------------