this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'main' of github.com:ian-h-chamberlain/dotfiles

+4137 -219
+22 -14
.config/Code/User/settings.json
··· 209 209 // And make the comment editor also use the same. The second selector is needed 210 210 // for the cursor to use the same letter spacing as the rendered text, otherwise 211 211 // selections and cursor position will be computed for the default font instead . 212 - // This still isn't perfect since the cursor seems to be given a `left:` calculated 213 - // from Monaco, but it's still a lot better just by setting these properties. 214 212 ".comment-form .monaco-editor, .comment-form .monaco-editor-background .monaco-mouse-cursor-text": { 215 213 "font-size": "12px !important", 216 214 "font-family": "'Monaspace Argon Var', 'Input Mono', Monaco, monospace !important", 217 215 "font-feature-settings": "'calt', 'liga', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09' !important", 216 + // Also override spacing! The cursor will be screwed up otherwise: 217 + "letter-spacing": "-0.2px !important", 218 218 }, 219 - ".comment-form .monaco-editor-background .monaco-mouse-cursor-text": { 220 - "left": "calc(initial * 1.5) !important", 221 - } 222 219 }, 223 220 224 221 // TODO: reorganize the remaining sections into extension-specific vs VSCode ··· 273 270 "c-cpp-flylint.ignoreParseErrors": false, 274 271 "c-cpp-flylint.lizard.enable": false, 275 272 "c-cpp-flylint.run": "onSave", 273 + 274 + "chat.editor.fontFamily": "'Monaspace Krypton Var', 'Input Mono', Monaco, monospace", 276 275 277 276 "clangd.restartAfterCrash": false, 278 277 "clangd.arguments": [ ··· 389 388 "editor.bracketPairColorization.enabled": true, 390 389 "editor.bracketPairColorization.independentColorPoolPerBracketType": true, 391 390 "editor.find.cursorMoveOnType": true, 392 - "editor.fontFamily": "'Monaspace Argon Var', 'Input Mono', Monaco, monospace", 391 + "editor.fontFamily": "Monaspace Argon Var, MonaspiceAr Nerd Font, Input Mono, Monaco, monospace", 393 392 "editor.fontLigatures": "'calt', 'liga', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09'", 394 393 "editor.fontSize": 12, 395 394 // M3 mac seems to have trouble rendering bold as bold when this is true: ··· 397 396 "editor.fontWeight": "350", 398 397 "editor.inlayHints.enabled": "onUnlessPressed", 399 398 "editor.inlayHints.fontFamily": "'Monaspace Krypton Var', 'Input Mono', Monaco, monospace", 400 - "chat.editor.fontFamily": "'Monaspace Krypton Var', 'Input Mono', Monaco, monospace", 399 + "editor.inlineSuggest.fontFamily": "'Monaspace Krypton Var', 'Input Mono', Monaco, monospace", 401 400 // at size 11, 0.2 seems closest to Input Mono's width, but feels too wide in certain cases 402 401 // at size 12, negative spacing feels more appropriate. Very odd. 403 - "editor.inlineSuggest.fontFamily": "'Monaspace Krypton Var', 'Input Mono', Monaco, monospace", 404 402 "editor.letterSpacing": -0.2, 405 403 "editor.linkedEditing": true, 406 404 "editor.minimap.enabled": true, 407 405 "editor.minimap.showSlider": "always", 408 406 "editor.multiCursorModifier": "alt", 407 + "editor.lineNumbers": "on", 409 408 "editor.renderControlCharacters": true, 410 409 "editor.renderWhitespace": "selection", 411 410 "editor.rulers": [ ··· 638 637 "editor.snippetSuggestions": "inline", 639 638 "editor.stickyScroll.enabled": true, 640 639 "editor.stickyScroll.maxLineCount": 10, 640 + "editor.suggest.localityBonus": true, 641 641 "editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-_", 642 642 643 643 "emojisense.unicodeCompletionsEnabled": false, ··· 757 757 "*.sqlite": "sqlite", 758 758 "rust-toolchain": "toml", 759 759 "*.itermcolors": "propertylist", 760 + "**/pre-commit/patch*": "diff", 760 761 }, 761 762 "files.exclude": { 762 763 "**/.cache/**": true, ··· 816 817 "git.showInlineOpenFileAction": true, 817 818 818 819 "github.copilot.enable": { 819 - "*": false, 820 + "*": true, 820 821 "plaintext": false, 821 822 "markdown": false, 822 823 "scminput": false ··· 897 898 "gitlens.currentLine.enabled": true, 898 899 "gitlens.hovers.currentLine.enabled": true, 899 900 "gitlens.hovers.currentLine.over": "annotation", 901 + "gitlens.hovers.annotations.changes": true, 900 902 "gitlens.keymap": "alternate", 901 903 "gitlens.menus": { 902 904 "editor": { ··· 940 942 "gitlens.mode.statusBar.enabled": false, 941 943 "gitlens.plusFeatures.enabled": false, 942 944 "gitlens.statusBar.enabled": false, 945 + "gitlens.terminalLinks.showDetailsView": false, 943 946 "gitlens.views.repositories.autoRefresh": false, 944 947 945 948 "go.formatTool": "gofumpt", ··· 958 961 "go.inlayHints.parameterNames": true, 959 962 "go.inlayHints.rangeVariableTypes": false, 960 963 "gopls": { 964 + "ui.documentation.linksInHover": true, 965 + "ui.documentation.hoverKind": "FullDocumentation", 961 966 "ui.completion.usePlaceholders": true, 962 967 "ui.navigation.importShortcut": "Definition", 963 968 "ui.semanticTokens": true, ··· 1003 1008 "Lua.workspace.library": [ 1004 1009 "/opt/homebrew/share/nvim/runtime", 1005 1010 "/usr/local/share/nvim/runtime", 1006 - "/Users/ianchamberlain/.vscode/extensions" 1011 + // Globs like this don't appear to be supported, unfortunately: 1012 + "${env:HOME}/.vscode/extensions/asvetliakov.vscode-neovim-*", 1013 + "${env:HOME}/.config/nvim", 1007 1014 ], 1008 - "Lua.runtime.special": { 1009 - "require": "require" 1010 - }, 1015 + "Lua.runtime.path": [ 1016 + "?/init.lua", 1017 + "?.lua", 1018 + ], 1011 1019 1012 1020 "markdown-preview-enhanced.automaticallyShowPreviewOfMarkdownBeingEdited": false, 1013 1021 "markdown-preview-enhanced.codeBlockTheme": "monokai.css", ··· 1209 1217 "terminal.integrated.copyOnSelection": true, 1210 1218 // Normally we'd want Var to enable certain ligatures, but the integrated terminal 1211 1219 // doesn't seem to support them anyway so just use the non-Var for its higher weight 1212 - "terminal.integrated.fontFamily": "Monaspace Argon, Input Mono, Monaco, monospace", 1220 + "terminal.integrated.fontFamily": "Monaspace Argon, MonaspiceAr Nerd Font, Input Mono, Monaco, monospace", 1213 1221 "terminal.integrated.fontSize": 11, 1214 1222 "terminal.integrated.fontWeight": "400", 1215 1223 "terminal.integrated.fontWeightBold": "800",
+1
.config/fish/completions/code-insiders.fish
··· 1 + complete -c code-insiders --wraps code
+4 -7
.config/fish/conf.d/50-config.fish
··· 84 84 ~/.cargo/bin \ 85 85 ~/.local/share/rbenv/shims \ 86 86 ~/.local/bin \ 87 - ~/.nix-profile/bin \ 88 87 $GOPATH/bin \ 89 88 node_modules/.bin \ 90 89 /usr/local/sbin \ 91 - /opt/homebrew/bin \ 92 - /nix/var/nix/profiles/default/bin 90 + /opt/homebrew/bin 93 91 94 - set -l nix_vendor_complete ~/.nix-profile/share/fish/vendor_completions.d 95 - if not contains -- $nix_vendor_complete $fish_complete_path 96 - set -ag fish_complete_path $nix_vendor_complete 97 - end 92 + # Set up miscellaneous nix paths, session vars, completions etc. 93 + test -f ~/.nix-profile/etc/profile.d/nix.fish 94 + and source ~/.nix-profile/etc/profile.d/nix.fish 98 95 99 96 set -gx nvm_default_version lts/iron 100 97 if status is-interactive; and test -f .nvmrc; and functions -q nvm
+19 -3
.config/fish/functions/fish_prompt.fish
··· 23 23 set color_chars 0 24 24 25 25 set -g magenta (set_color magenta) 26 - set -g white (set_color white) 26 + set -g white (set_color brwhite) 27 27 28 28 if command -qs pyenv 29 29 set pyenv_version (pyenv version-name | string split ':') ··· 35 35 set -g __fish_prompt_pyenv "" 36 36 end 37 37 38 + set __fish_prompt_nix "" 39 + if string match --quiet -- '*/nix/store/*' "$PATH" 40 + set __fish_prompt_nix "$white""( nix) $__fish_prompt_normal" 41 + end 42 + 38 43 set -l prompt_hostname (prompt_hostname) 39 44 # Color hostname magenta if we're in a container, otherwise just use it as-is 40 45 if test -f /run/.containerenv # podman ··· 42 47 set prompt_hostname (set_color magenta)(prompt_hostname)(set_color normal) 43 48 end 44 49 50 + set -l prompt_os (uname) 51 + if test $prompt_os = Darwin 52 + set prompt_os " " 53 + else if test $prompt_os = Linux # Maybe could special-case nixos here? 54 + set prompt_os " " 55 + else 56 + set prompt_os "" 57 + end 58 + 59 + set prompt_os "$white$prompt_os$__fish_prompt_normal" 60 + 45 61 set first_line ( 46 - echo -n -s "$__fish_prompt_pyenv" \ 47 - '[' "$USER" '@' $prompt_hostname ']' \ 62 + echo -n -s "$prompt_os" "$__fish_prompt_pyenv" "$__fish_prompt_nix" \ 63 + '[' "$USER" '@' "$prompt_hostname" ']' \ 48 64 ' ' "$__fish_prompt_cwd" (prompt_pwd) 49 65 ) 50 66
+1 -1
.config/fish/functions/tmux_attach.fish
··· 3 3 vssh tmux_attach 4 4 else 5 5 if tmux ls 6 - if test $TERM_PROGRAM = "iTerm.app" 6 + if test "$TERM_PROGRAM" = "iTerm.app" 7 7 command tmux -CC attach $argv 8 8 else 9 9 command tmux attach $argv
+10 -1
.config/home-manager/home.nix
··· 14 14 neovim.enable = true; 15 15 ripgrep.enable = true; 16 16 thefuck.enable = true; 17 - tmux.enable = true; 18 17 }; 19 18 20 19 # Just use my own configs for these instead of having home-manager generate ··· 66 65 ]; 67 66 68 67 home.packages = with pkgs; [ 68 + cacert 69 69 docker-compose 70 70 git-crypt 71 71 lix # For e.g. fish completions ··· 73 73 shellcheck 74 74 tree 75 75 tmux 76 + tmux.terminfo 76 77 unzip 77 78 yadm 78 79 ]; 80 + 81 + # https://github.com/NixOS/nixpkgs/issues/66716 82 + # https://github.com/NixOS/nixpkgs/issues/210223 83 + home.sessionVariables = { 84 + SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; 85 + SYSTEM_CERTIFICATE_PATH = "${config.home.sessionVariables.SSL_CERT_FILE}"; 86 + GIT_SSL_CAINFO = "${config.home.sessionVariables.SSL_CERT_FILE}"; 87 + }; 79 88 80 89 # Home Manager needs a bit of information about you and the 81 90 # paths it should manage.
+4 -3
.config/iterm2/profiles/Default.json
··· 618 618 "Minimum Contrast (Light)": 0, 619 619 "Mouse Reporting": true, 620 620 "Name": "Default", 621 - "Non Ascii Font": "Monaco 12", 621 + "Non Ascii Font" : "MonaspiceArNF-Regular 12", 622 622 "Non-ASCII Anti Aliased": true, 623 623 "Normal Font": "MonaspaceArgon-Regular 12 {\"featureSettings\":[{\"CTFeatureSelectorIdentifier\":16,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":8,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":12,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":6,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":10,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":18,\"CTFeatureTypeIdentifier\":35},{\"CTFeatureSelectorIdentifier\":14,\"CTFeatureTypeIdentifier\":35}]}", 624 624 "Only The Default BG Color Uses Transparency": false, ··· 680 680 "Smart Cursor Color (Dark)": false, 681 681 "Smart Cursor Color (Light)": false, 682 682 "Space": 0, 683 + "Special Font Config": "{\"version\":1,\"entries\":[{\"fontName\":\"UnicodeIECsymbol\",\"start\":9211,\"count\":4},{\"start\":9829,\"count\":1,\"fontName\":\"Octicons\"},{\"fontName\":\"Octicons\",\"start\":9889,\"count\":1},{\"fontName\":\"UnicodeIECsymbol\",\"start\":11096,\"count\":1},{\"start\":57344,\"fontName\":\"Pomicons\",\"count\":11},{\"count\":3,\"start\":57504,\"fontName\":\"PowerlineSymbols\"},{\"fontName\":\"PowerlineExtraSymbols\",\"count\":1,\"start\":57507},{\"count\":4,\"fontName\":\"PowerlineSymbols\",\"start\":57520},{\"start\":57524,\"count\":21,\"fontName\":\"PowerlineExtraSymbols\"},{\"start\":57546,\"count\":1,\"fontName\":\"PowerlineExtraSymbols\"},{\"start\":57548,\"count\":8,\"fontName\":\"PowerlineExtraSymbols\"},{\"fontName\":\"font-awesome-extension\",\"count\":170,\"destination\":57856,\"start\":57344},{\"fontName\":\"Weather Icons Regular\",\"count\":236,\"destination\":58112,\"start\":61440},{\"count\":177,\"destination\":58874,\"start\":58618,\"fontName\":\"Nerd Font File Types Regular\"},{\"fontName\":\"icomoon\",\"count\":198,\"destination\":59136,\"start\":58880},{\"count\":396,\"fontName\":\"codicon\",\"start\":60000},{\"start\":61440,\"count\":736,\"fontName\":\"FontAwesome\"},{\"count\":48,\"fontName\":\"font-logos\",\"start\":62208},{\"count\":168,\"start\":61440,\"destination\":62464,\"fontName\":\"Octicons\"},{\"start\":62076,\"fontName\":\"Octicons\",\"destination\":62633,\"count\":1},{\"destination\":62634,\"start\":61609,\"count\":86,\"fontName\":\"Octicons\"},{\"fontName\":\"Material Design Icons\",\"start\":61441,\"destination\":62720,\"count\":2118},{\"fontName\":\"Material Design Icons Desktop\",\"start\":983041,\"count\":6896}]}", 683 684 "Status Bar Layout": { 684 685 "advanced configuration": { 685 686 "algorithm": 0, ··· 800 801 "Tags": [ 801 802 "Dynamic" 802 803 ], 803 - "Terminal Type": "xterm-256color-italic", 804 + "Terminal Type": "xterm-256color", 804 805 "Thin Strokes": 0, 805 806 "Transparency": 0, 806 807 "Triggers": [ ··· 826 827 "Use Cursor Guide (Dark)": false, 827 828 "Use Cursor Guide (Light)": false, 828 829 "Use Italic Font": true, 829 - "Use Non-ASCII Font": false, 830 + "Use Non-ASCII Font": true, 830 831 "Use Selected Text Color (Dark)": true, 831 832 "Use Selected Text Color (Light)": true, 832 833 "Use Separate Colors for Light and Dark Mode": true,
+17 -3
.config/nvim/init.lua
··· 1 1 HOME = os.getenv("HOME") or os.getenv("LocalAppData") 2 2 3 - local sep = package.config:sub(1,1) 3 + local sep = package.config:sub(1, 1) 4 4 5 5 -- Load all the vim-compatible plugins 6 6 vim.opt.runtimepath:prepend(HOME .. sep .. ".vim") ··· 23 23 if not vim.g.vscode then 24 24 -- Default to dark mode if unset 25 25 vim.opt.background = os.getenv("COLOR_THEME") or "dark" 26 + 27 + require("monokai-nightasty").setup({ 28 + on_highlights = function(highlights, colors) 29 + -- It seems like most syntaxes just use String for quotes, but 30 + -- for some (e.g. JSON) they are highlighted differently. 31 + -- This just forces them back to regular String highlight 32 + highlights.Quote = highlights.String 33 + end, 34 + }) 26 35 vim.cmd.colorscheme("monokai-nightasty") 27 36 else 28 - -- vscode-neovim 37 + -- vscode-neovim 29 38 local vscode_neovim = require("vscode-neovim") 30 39 40 + vim.opt.cmdheight = 0 41 + 42 + local group = vim.api.nvim_create_augroup("vscode-custom", {}) 43 + 31 44 -- https://github.com/vscode-neovim/vscode-neovim/issues/1718 32 45 vim.api.nvim_create_autocmd({ "VimEnter", "ModeChanged" }, { 46 + pattern = "*", 47 + group = group, 33 48 callback = function(args) 34 49 vscode_neovim.call("setContext", { 35 50 args = { "neovim.fullMode", vim.fn.mode(1) }, ··· 135 150 let g:loaded_airline = 1 136 151 ]]) 137 152 end 138 -
+65
.config/nvim/plugin/numbertoggle.lua
··· 1 + -- Adapted from https://github.com/sitiom/nvim-numbertoggle 2 + 3 + local augroup = vim.api.nvim_create_augroup("numbertoggle", {}) 4 + 5 + local function enable_relativenumber(evt) 6 + if vim.wo.number and vim.api.nvim_get_mode().mode ~= "i" then 7 + vim.wo.relativenumber = true 8 + end 9 + end 10 + 11 + local function disable_relativenumber(evt) 12 + local cur_win = vim.api.nvim_get_current_win() 13 + local window_opt = vim.wo[cur_win] 14 + 15 + if evt and evt.event == "WinLeave" then 16 + -- print( 17 + -- os.date("%Y-%m-%d %H:%M:%S") .. 18 + -- ": Got WinLeave: " .. vim.inspect(evt) .. 19 + -- ", current win is " .. vim.inspect(cur_win) 20 + -- ) 21 + 22 + -- vim.print( 23 + -- os.date("%Y-%m-%d %H:%M:%S") .. 24 + -- "Converting vim.wo[" .. vim.inspect(cur_win).. 25 + -- "].relnum " .. vim.inspect(window_opt.relativenumber) .. 26 + -- "-> false") 27 + end 28 + 29 + if window_opt.number then 30 + window_opt.relativenumber = false 31 + if not vim.g.vscode then 32 + vim.cmd.redraw() 33 + end 34 + end 35 + end 36 + 37 + vim.api.nvim_create_autocmd( 38 + { "BufEnter", "FocusGained", "InsertLeave", "CmdlineLeave", "WinEnter" }, 39 + { 40 + pattern = "*", 41 + group = augroup, 42 + callback = enable_relativenumber, 43 + }) 44 + 45 + vim.api.nvim_create_autocmd( 46 + { "BufLeave", "FocusLost", "InsertEnter", "CmdlineEnter", "WinLeave" }, 47 + { 48 + pattern = "*", 49 + group = augroup, 50 + callback = disable_relativenumber, 51 + }) 52 + 53 + if vim.g.vscode then 54 + -- We won't get CmdlineEnter and CmdlineLeave, since vscode-neovim handles those. 55 + -- Also probably need something similar to FocusGained / BufEnter for the same reason 56 + local ns = vim.api.nvim_create_namespace("numbertoggle") 57 + vim.ui_attach(ns, { ext_cmdline = true }, function(event, ...) 58 + if event == "cmdline_show" then 59 + disable_relativenumber() 60 + end 61 + if event == "cmdline_hide" then 62 + enable_relativenumber() 63 + end 64 + end) 65 + end
+2
.config/yadm/alt/.config/brew/20-os.Brewfile##os.Darwin
··· 142 142 cask "ian-h-chamberlain/dotfiles/font-monaspace" 143 143 # Enabling communication between all your devices 144 144 cask "kde-mac/kde/kdeconnect" 145 + # Monaspice Nerd Font families (Monaspace) 146 + cask "font-monaspace-nerd-font"
+3467 -185
.config/yadm/alt/.config/iterm2/com.googlecode.iterm2.plist##user.ichamberlain,class.work,extension.plist
··· 28 28 <false/> 29 29 <key>Custom Color Presets</key> 30 30 <dict> 31 + <key>3024 Day</key> 32 + <dict> 33 + <key>Ansi 0 Color</key> 34 + <dict> 35 + <key>Blue Component</key> 36 + <real>0.0</real> 37 + <key>Green Component</key> 38 + <real>0.011764705882352941</real> 39 + <key>Red Component</key> 40 + <real>0.035294117647058823</real> 41 + </dict> 42 + <key>Ansi 1 Color</key> 43 + <dict> 44 + <key>Blue Component</key> 45 + <real>0.12549019607843137</real> 46 + <key>Green Component</key> 47 + <real>0.17647058823529413</real> 48 + <key>Red Component</key> 49 + <real>0.85882352941176465</real> 50 + </dict> 51 + <key>Ansi 10 Color</key> 52 + <dict> 53 + <key>Blue Component</key> 54 + <real>0.19607843137254902</real> 55 + <key>Green Component</key> 56 + <real>0.20392156862745098</real> 57 + <key>Red Component</key> 58 + <real>0.22745098039215686</real> 59 + </dict> 60 + <key>Ansi 11 Color</key> 61 + <dict> 62 + <key>Blue Component</key> 63 + <real>0.2627450980392157</real> 64 + <key>Green Component</key> 65 + <real>0.27058823529411763</real> 66 + <key>Red Component</key> 67 + <real>0.29019607843137257</real> 68 + </dict> 69 + <key>Ansi 12 Color</key> 70 + <dict> 71 + <key>Blue Component</key> 72 + <real>0.48627450980392156</real> 73 + <key>Green Component</key> 74 + <real>0.49019607843137253</real> 75 + <key>Red Component</key> 76 + <real>0.50196078431372548</real> 77 + </dict> 78 + <key>Ansi 13 Color</key> 79 + <dict> 80 + <key>Blue Component</key> 81 + <real>0.83137254901960789</real> 82 + <key>Green Component</key> 83 + <real>0.83529411764705885</real> 84 + <key>Red Component</key> 85 + <real>0.83921568627450982</real> 86 + </dict> 87 + <key>Ansi 14 Color</key> 88 + <dict> 89 + <key>Blue Component</key> 90 + <real>0.32549019607843138</real> 91 + <key>Green Component</key> 92 + <real>0.6705882352941176</real> 93 + <key>Red Component</key> 94 + <real>0.80392156862745101</real> 95 + </dict> 96 + <key>Ansi 15 Color</key> 97 + <dict> 98 + <key>Blue Component</key> 99 + <real>0.96862745098039216</real> 100 + <key>Green Component</key> 101 + <real>0.96862745098039216</real> 102 + <key>Red Component</key> 103 + <real>0.96862745098039216</real> 104 + </dict> 105 + <key>Ansi 2 Color</key> 106 + <dict> 107 + <key>Blue Component</key> 108 + <real>0.32156862745098042</real> 109 + <key>Green Component</key> 110 + <real>0.63529411764705879</real> 111 + <key>Red Component</key> 112 + <real>0.0039215686274509803</real> 113 + </dict> 114 + <key>Ansi 3 Color</key> 115 + <dict> 116 + <key>Blue Component</key> 117 + <real>0.0078431372549019607</real> 118 + <key>Green Component</key> 119 + <real>0.92941176470588238</real> 120 + <key>Red Component</key> 121 + <real>0.99215686274509807</real> 122 + </dict> 123 + <key>Ansi 4 Color</key> 124 + <dict> 125 + <key>Blue Component</key> 126 + <real>0.89411764705882357</real> 127 + <key>Green Component</key> 128 + <real>0.62745098039215685</real> 129 + <key>Red Component</key> 130 + <real>0.0039215686274509803</real> 131 + </dict> 132 + <key>Ansi 5 Color</key> 133 + <dict> 134 + <key>Blue Component</key> 135 + <real>0.58039215686274515</real> 136 + <key>Green Component</key> 137 + <real>0.41568627450980394</real> 138 + <key>Red Component</key> 139 + <real>0.63137254901960782</real> 140 + </dict> 141 + <key>Ansi 6 Color</key> 142 + <dict> 143 + <key>Blue Component</key> 144 + <real>0.95686274509803926</real> 145 + <key>Green Component</key> 146 + <real>0.89411764705882357</real> 147 + <key>Red Component</key> 148 + <real>0.70980392156862748</real> 149 + </dict> 150 + <key>Ansi 7 Color</key> 151 + <dict> 152 + <key>Blue Component</key> 153 + <real>0.63529411764705879</real> 154 + <key>Green Component</key> 155 + <real>0.63529411764705879</real> 156 + <key>Red Component</key> 157 + <real>0.6470588235294118</real> 158 + </dict> 159 + <key>Ansi 8 Color</key> 160 + <dict> 161 + <key>Blue Component</key> 162 + <real>0.33333333333333331</real> 163 + <key>Green Component</key> 164 + <real>0.34509803921568627</real> 165 + <key>Red Component</key> 166 + <real>0.36078431372549019</real> 167 + </dict> 168 + <key>Ansi 9 Color</key> 169 + <dict> 170 + <key>Blue Component</key> 171 + <real>0.81568627450980391</real> 172 + <key>Green Component</key> 173 + <real>0.73333333333333328</real> 174 + <key>Red Component</key> 175 + <real>0.90980392156862744</real> 176 + </dict> 177 + <key>Background Color</key> 178 + <dict> 179 + <key>Blue Component</key> 180 + <real>0.96862745098039216</real> 181 + <key>Green Component</key> 182 + <real>0.96862745098039216</real> 183 + <key>Red Component</key> 184 + <real>0.96862745098039216</real> 185 + </dict> 186 + <key>Bold Color</key> 187 + <dict> 188 + <key>Blue Component</key> 189 + <real>0.2627450980392157</real> 190 + <key>Green Component</key> 191 + <real>0.27058823529411763</real> 192 + <key>Red Component</key> 193 + <real>0.29019607843137257</real> 194 + </dict> 195 + <key>Cursor Color</key> 196 + <dict> 197 + <key>Blue Component</key> 198 + <real>0.2627450980392157</real> 199 + <key>Green Component</key> 200 + <real>0.27058823529411763</real> 201 + <key>Red Component</key> 202 + <real>0.29019607843137257</real> 203 + </dict> 204 + <key>Cursor Text Color</key> 205 + <dict> 206 + <key>Blue Component</key> 207 + <real>0.96862745098039216</real> 208 + <key>Green Component</key> 209 + <real>0.96862745098039216</real> 210 + <key>Red Component</key> 211 + <real>0.96862745098039216</real> 212 + </dict> 213 + <key>Foreground Color</key> 214 + <dict> 215 + <key>Blue Component</key> 216 + <real>0.2627450980392157</real> 217 + <key>Green Component</key> 218 + <real>0.27058823529411763</real> 219 + <key>Red Component</key> 220 + <real>0.29019607843137257</real> 221 + </dict> 222 + <key>Selected Text Color</key> 223 + <dict> 224 + <key>Blue Component</key> 225 + <real>0.2627450980392157</real> 226 + <key>Green Component</key> 227 + <real>0.27058823529411763</real> 228 + <key>Red Component</key> 229 + <real>0.29019607843137257</real> 230 + </dict> 231 + <key>Selection Color</key> 232 + <dict> 233 + <key>Blue Component</key> 234 + <real>0.63529411764705879</real> 235 + <key>Green Component</key> 236 + <real>0.63529411764705879</real> 237 + <key>Red Component</key> 238 + <real>0.6470588235294118</real> 239 + </dict> 240 + </dict> 31 241 <key>Homebrew</key> 32 242 <dict> 33 243 <key>Ansi 0 Color</key> ··· 238 448 <real>0.031372549019607843</real> 239 449 </dict> 240 450 </dict> 451 + <key>Night Owlish Light</key> 452 + <dict> 453 + <key>Ansi 0 Color</key> 454 + <dict> 455 + <key>Blue Component</key> 456 + <real>0.15294117647058825</real> 457 + <key>Color Space</key> 458 + <string>sRGB</string> 459 + <key>Green Component</key> 460 + <real>0.086274509803921567</real> 461 + <key>Red Component</key> 462 + <real>0.0039215686274509803</real> 463 + </dict> 464 + <key>Ansi 1 Color</key> 465 + <dict> 466 + <key>Blue Component</key> 467 + <real>0.24313725490196078</real> 468 + <key>Color Space</key> 469 + <string>sRGB</string> 470 + <key>Green Component</key> 471 + <real>0.25882352941176473</real> 472 + <key>Red Component</key> 473 + <real>0.82745098039215681</real> 474 + </dict> 475 + <key>Ansi 10 Color</key> 476 + <dict> 477 + <key>Blue Component</key> 478 + <real>0.77254901960784317</real> 479 + <key>Color Space</key> 480 + <string>sRGB</string> 481 + <key>Green Component</key> 482 + <real>0.81568627450980391</real> 483 + <key>Red Component</key> 484 + <real>0.28627450980392155</real> 485 + </dict> 486 + <key>Ansi 11 Color</key> 487 + <dict> 488 + <key>Blue Component</key> 489 + <real>0.41960784313725491</real> 490 + <key>Color Space</key> 491 + <string>sRGB</string> 492 + <key>Green Component</key> 493 + <real>0.76078431372549016</real> 494 + <key>Red Component</key> 495 + <real>0.85490196078431369</real> 496 + </dict> 497 + <key>Ansi 12 Color</key> 498 + <dict> 499 + <key>Blue Component</key> 500 + <real>0.89411764705882357</real> 501 + <key>Color Space</key> 502 + <string>sRGB</string> 503 + <key>Green Component</key> 504 + <real>0.65490196078431373</real> 505 + <key>Red Component</key> 506 + <real>0.36078431372549019</real> 507 + </dict> 508 + <key>Ansi 13 Color</key> 509 + <dict> 510 + <key>Blue Component</key> 511 + <real>0.59607843137254901</real> 512 + <key>Color Space</key> 513 + <string>sRGB</string> 514 + <key>Green Component</key> 515 + <real>0.4392156862745098</real> 516 + <key>Red Component</key> 517 + <real>0.41176470588235292</real> 518 + </dict> 519 + <key>Ansi 14 Color</key> 520 + <dict> 521 + <key>Blue Component</key> 522 + <real>0.56470588235294117</real> 523 + <key>Color Space</key> 524 + <string>sRGB</string> 525 + <key>Green Component</key> 526 + <real>0.78823529411764703</real> 527 + <key>Red Component</key> 528 + <real>0.0</real> 529 + </dict> 530 + <key>Ansi 15 Color</key> 531 + <dict> 532 + <key>Blue Component</key> 533 + <real>0.69411764705882351</real> 534 + <key>Color Space</key> 535 + <string>sRGB</string> 536 + <key>Green Component</key> 537 + <real>0.62352941176470589</real> 538 + <key>Red Component</key> 539 + <real>0.59607843137254901</real> 540 + </dict> 541 + <key>Ansi 2 Color</key> 542 + <dict> 543 + <key>Blue Component</key> 544 + <real>0.59607843137254901</real> 545 + <key>Color Space</key> 546 + <string>sRGB</string> 547 + <key>Green Component</key> 548 + <real>0.63529411764705879</real> 549 + <key>Red Component</key> 550 + <real>0.16470588235294117</real> 551 + </dict> 552 + <key>Ansi 3 Color</key> 553 + <dict> 554 + <key>Blue Component</key> 555 + <real>0.0039215686274509803</real> 556 + <key>Color Space</key> 557 + <string>sRGB</string> 558 + <key>Green Component</key> 559 + <real>0.66666666666666663</real> 560 + <key>Red Component</key> 561 + <real>0.85490196078431369</real> 562 + </dict> 563 + <key>Ansi 4 Color</key> 564 + <dict> 565 + <key>Blue Component</key> 566 + <real>0.83921568627450982</real> 567 + <key>Color Space</key> 568 + <string>sRGB</string> 569 + <key>Green Component</key> 570 + <real>0.46274509803921571</real> 571 + <key>Red Component</key> 572 + <real>0.28235294117647058</real> 573 + </dict> 574 + <key>Ansi 5 Color</key> 575 + <dict> 576 + <key>Blue Component</key> 577 + <real>0.32549019607843138</real> 578 + <key>Color Space</key> 579 + <string>sRGB</string> 580 + <key>Green Component</key> 581 + <real>0.24705882352941178</real> 582 + <key>Red Component</key> 583 + <real>0.25098039215686274</real> 584 + </dict> 585 + <key>Ansi 6 Color</key> 586 + <dict> 587 + <key>Blue Component</key> 588 + <real>0.41568627450980394</real> 589 + <key>Color Space</key> 590 + <string>sRGB</string> 591 + <key>Green Component</key> 592 + <real>0.56862745098039214</real> 593 + <key>Red Component</key> 594 + <real>0.031372549019607843</real> 595 + </dict> 596 + <key>Ansi 7 Color</key> 597 + <dict> 598 + <key>Blue Component</key> 599 + <real>0.50588235294117645</real> 600 + <key>Color Space</key> 601 + <string>sRGB</string> 602 + <key>Green Component</key> 603 + <real>0.50588235294117645</real> 604 + <key>Red Component</key> 605 + <real>0.47843137254901963</real> 606 + </dict> 607 + <key>Ansi 8 Color</key> 608 + <dict> 609 + <key>Blue Component</key> 610 + <real>0.50588235294117645</real> 611 + <key>Color Space</key> 612 + <string>sRGB</string> 613 + <key>Green Component</key> 614 + <real>0.50588235294117645</real> 615 + <key>Red Component</key> 616 + <real>0.47843137254901963</real> 617 + </dict> 618 + <key>Ansi 9 Color</key> 619 + <dict> 620 + <key>Blue Component</key> 621 + <real>0.43137254901960786</real> 622 + <key>Color Space</key> 623 + <string>sRGB</string> 624 + <key>Green Component</key> 625 + <real>0.43137254901960786</real> 626 + <key>Red Component</key> 627 + <real>0.96862745098039216</real> 628 + </dict> 629 + <key>Background Color</key> 630 + <dict> 631 + <key>Blue Component</key> 632 + <real>1</real> 633 + <key>Color Space</key> 634 + <string>sRGB</string> 635 + <key>Green Component</key> 636 + <real>1</real> 637 + <key>Red Component</key> 638 + <real>1</real> 639 + </dict> 640 + <key>Bold Color</key> 641 + <dict> 642 + <key>Blue Component</key> 643 + <real>0.32549019607843138</real> 644 + <key>Color Space</key> 645 + <string>sRGB</string> 646 + <key>Green Component</key> 647 + <real>0.24705882352941178</real> 648 + <key>Red Component</key> 649 + <real>0.25098039215686274</real> 650 + </dict> 651 + <key>Cursor Color</key> 652 + <dict> 653 + <key>Blue Component</key> 654 + <real>0.32549019607843138</real> 655 + <key>Color Space</key> 656 + <string>sRGB</string> 657 + <key>Green Component</key> 658 + <real>0.24705882352941178</real> 659 + <key>Red Component</key> 660 + <real>0.25098039215686274</real> 661 + </dict> 662 + <key>Cursor Text Color</key> 663 + <dict> 664 + <key>Blue Component</key> 665 + <real>0.98431372549019602</real> 666 + <key>Color Space</key> 667 + <string>sRGB</string> 668 + <key>Green Component</key> 669 + <real>0.98431372549019602</real> 670 + <key>Red Component</key> 671 + <real>0.98431372549019602</real> 672 + </dict> 673 + <key>Foreground Color</key> 674 + <dict> 675 + <key>Blue Component</key> 676 + <real>0.32549019607843138</real> 677 + <key>Color Space</key> 678 + <string>sRGB</string> 679 + <key>Green Component</key> 680 + <real>0.24705882352941178</real> 681 + <key>Red Component</key> 682 + <real>0.25098039215686274</real> 683 + </dict> 684 + <key>Selected Text Color</key> 685 + <dict> 686 + <key>Blue Component</key> 687 + <real>0.32549019607843138</real> 688 + <key>Color Space</key> 689 + <string>sRGB</string> 690 + <key>Green Component</key> 691 + <real>0.24705882352941178</real> 692 + <key>Red Component</key> 693 + <real>0.25098039215686274</real> 694 + </dict> 695 + <key>Selection Color</key> 696 + <dict> 697 + <key>Blue Component</key> 698 + <real>0.94999999999999996</real> 699 + <key>Color Space</key> 700 + <string>sRGB</string> 701 + <key>Green Component</key> 702 + <real>0.94999999999999996</real> 703 + <key>Red Component</key> 704 + <real>0.94999999999999996</real> 705 + </dict> 706 + </dict> 707 + <key>Pro Light</key> 708 + <dict> 709 + <key>Ansi 0 Color</key> 710 + <dict> 711 + <key>Alpha Component</key> 712 + <real>1</real> 713 + <key>Blue Component</key> 714 + <real>0.0</real> 715 + <key>Color Space</key> 716 + <string>sRGB</string> 717 + <key>Green Component</key> 718 + <real>0.0</real> 719 + <key>Red Component</key> 720 + <real>0.0</real> 721 + </dict> 722 + <key>Ansi 1 Color</key> 723 + <dict> 724 + <key>Alpha Component</key> 725 + <real>1</real> 726 + <key>Blue Component</key> 727 + <real>0.1700839102268219</real> 728 + <key>Color Space</key> 729 + <string>sRGB</string> 730 + <key>Green Component</key> 731 + <real>0.28781881928443909</real> 732 + <key>Red Component</key> 733 + <real>0.89633029699325562</real> 734 + </dict> 735 + <key>Ansi 10 Color</key> 736 + <dict> 737 + <key>Alpha Component</key> 738 + <real>1</real> 739 + <key>Blue Component</key> 740 + <real>0.3405340313911438</real> 741 + <key>Color Space</key> 742 + <string>sRGB</string> 743 + <key>Green Component</key> 744 + <real>0.9364427924156189</real> 745 + <key>Red Component</key> 746 + <real>0.38109514117240906</real> 747 + </dict> 748 + <key>Ansi 11 Color</key> 749 + <dict> 750 + <key>Alpha Component</key> 751 + <real>1</real> 752 + <key>Blue Component</key> 753 + <real>0.33592137694358826</real> 754 + <key>Color Space</key> 755 + <string>sRGB</string> 756 + <key>Green Component</key> 757 + <real>0.94378501176834106</real> 758 + <key>Red Component</key> 759 + <real>0.9503975510597229</real> 760 + </dict> 761 + <key>Ansi 12 Color</key> 762 + <dict> 763 + <key>Alpha Component</key> 764 + <real>1</real> 765 + <key>Blue Component</key> 766 + <real>1</real> 767 + <key>Color Space</key> 768 + <string>sRGB</string> 769 + <key>Green Component</key> 770 + <real>0.50831228494644165</real> 771 + <key>Red Component</key> 772 + <real>0.0</real> 773 + </dict> 774 + <key>Ansi 13 Color</key> 775 + <dict> 776 + <key>Alpha Component</key> 777 + <real>1</real> 778 + <key>Blue Component</key> 779 + <real>0.9997820258140564</real> 780 + <key>Color Space</key> 781 + <string>sRGB</string> 782 + <key>Green Component</key> 783 + <real>0.49232608079910278</real> 784 + <key>Red Component</key> 785 + <real>1</real> 786 + </dict> 787 + <key>Ansi 14 Color</key> 788 + <dict> 789 + <key>Alpha Component</key> 790 + <real>1</real> 791 + <key>Blue Component</key> 792 + <real>0.97388297319412231</real> 793 + <key>Color Space</key> 794 + <string>sRGB</string> 795 + <key>Green Component</key> 796 + <real>0.96687322854995728</real> 797 + <key>Red Component</key> 798 + <real>0.37850853800773621</real> 799 + </dict> 800 + <key>Ansi 15 Color</key> 801 + <dict> 802 + <key>Alpha Component</key> 803 + <real>1</real> 804 + <key>Blue Component</key> 805 + <real>0.94714349508285522</real> 806 + <key>Color Space</key> 807 + <string>sRGB</string> 808 + <key>Green Component</key> 809 + <real>0.9471554160118103</real> 810 + <key>Red Component</key> 811 + <real>0.94713348150253296</real> 812 + </dict> 813 + <key>Ansi 2 Color</key> 814 + <dict> 815 + <key>Alpha Component</key> 816 + <real>1</real> 817 + <key>Blue Component</key> 818 + <real>0.28270384669303894</real> 819 + <key>Color Space</key> 820 + <string>sRGB</string> 821 + <key>Green Component</key> 822 + <real>0.81803053617477417</real> 823 + <key>Red Component</key> 824 + <real>0.31560125946998596</real> 825 + </dict> 826 + <key>Ansi 3 Color</key> 827 + <dict> 828 + <key>Alpha Component</key> 829 + <real>1</real> 830 + <key>Blue Component</key> 831 + <real>0.25137367844581604</real> 832 + <key>Color Space</key> 833 + <string>sRGB</string> 834 + <key>Green Component</key> 835 + <real>0.76837122440338135</real> 836 + <key>Red Component</key> 837 + <real>0.77452164888381958</real> 838 + </dict> 839 + <key>Ansi 4 Color</key> 840 + <dict> 841 + <key>Alpha Component</key> 842 + <real>1</real> 843 + <key>Blue Component</key> 844 + <real>1</real> 845 + <key>Color Space</key> 846 + <string>sRGB</string> 847 + <key>Green Component</key> 848 + <real>0.46051108837127686</real> 849 + <key>Red Component</key> 850 + <real>0.23015788197517395</real> 851 + </dict> 852 + <key>Ansi 5 Color</key> 853 + <dict> 854 + <key>Alpha Component</key> 855 + <real>1</real> 856 + <key>Blue Component</key> 857 + <real>0.90846318006515503</real> 858 + <key>Color Space</key> 859 + <string>sRGB</string> 860 + <key>Green Component</key> 861 + <real>0.39966338872909546</real> 862 + <key>Red Component</key> 863 + <real>0.92828446626663208</real> 864 + </dict> 865 + <key>Ansi 6 Color</key> 866 + <dict> 867 + <key>Alpha Component</key> 868 + <real>1</real> 869 + <key>Blue Component</key> 870 + <real>0.86927634477615356</real> 871 + <key>Color Space</key> 872 + <string>sRGB</string> 873 + <key>Green Component</key> 874 + <real>0.82202702760696411</real> 875 + <key>Red Component</key> 876 + <real>0.3058897852897644</real> 877 + </dict> 878 + <key>Ansi 7 Color</key> 879 + <dict> 880 + <key>Alpha Component</key> 881 + <real>1</real> 882 + <key>Blue Component</key> 883 + <real>0.86381322145462036</real> 884 + <key>Color Space</key> 885 + <string>sRGB</string> 886 + <key>Green Component</key> 887 + <real>0.86382406949996948</real> 888 + <key>Red Component</key> 889 + <real>0.86380404233932495</real> 890 + </dict> 891 + <key>Ansi 8 Color</key> 892 + <dict> 893 + <key>Alpha Component</key> 894 + <real>1</real> 895 + <key>Blue Component</key> 896 + <real>0.62526422739028931</real> 897 + <key>Color Space</key> 898 + <string>sRGB</string> 899 + <key>Green Component</key> 900 + <real>0.62527227401733398</real> 901 + <key>Red Component</key> 902 + <real>0.62525743246078491</real> 903 + </dict> 904 + <key>Ansi 9 Color</key> 905 + <dict> 906 + <key>Alpha Component</key> 907 + <real>1</real> 908 + <key>Blue Component</key> 909 + <real>0.25116389989852905</real> 910 + <key>Color Space</key> 911 + <string>sRGB</string> 912 + <key>Green Component</key> 913 + <real>0.40181106328964233</real> 914 + <key>Red Component</key> 915 + <real>1</real> 916 + </dict> 917 + <key>Background Color</key> 918 + <dict> 919 + <key>Alpha Component</key> 920 + <real>1</real> 921 + <key>Blue Component</key> 922 + <real>1</real> 923 + <key>Color Space</key> 924 + <string>sRGB</string> 925 + <key>Green Component</key> 926 + <real>1</real> 927 + <key>Red Component</key> 928 + <real>0.99997192621231079</real> 929 + </dict> 930 + <key>Badge Color</key> 931 + <dict> 932 + <key>Alpha Component</key> 933 + <real>0.5</real> 934 + <key>Blue Component</key> 935 + <real>0.0</real> 936 + <key>Color Space</key> 937 + <string>sRGB</string> 938 + <key>Green Component</key> 939 + <real>0.1491314172744751</real> 940 + <key>Red Component</key> 941 + <real>1</real> 942 + </dict> 943 + <key>Bold Color</key> 944 + <dict> 945 + <key>Alpha Component</key> 946 + <real>1</real> 947 + <key>Blue Component</key> 948 + <real>0.098039217293262482</real> 949 + <key>Color Space</key> 950 + <string>sRGB</string> 951 + <key>Green Component</key> 952 + <real>0.098039217293262482</real> 953 + <key>Red Component</key> 954 + <real>0.098039217293262482</real> 955 + </dict> 956 + <key>Cursor Color</key> 957 + <dict> 958 + <key>Alpha Component</key> 959 + <real>1</real> 960 + <key>Blue Component</key> 961 + <real>0.30196079611778259</real> 962 + <key>Color Space</key> 963 + <string>sRGB</string> 964 + <key>Green Component</key> 965 + <real>0.30196079611778259</real> 966 + <key>Red Component</key> 967 + <real>0.30196079611778259</real> 968 + </dict> 969 + <key>Cursor Guide Color</key> 970 + <dict> 971 + <key>Alpha Component</key> 972 + <real>0.25</real> 973 + <key>Blue Component</key> 974 + <real>1</real> 975 + <key>Color Space</key> 976 + <string>sRGB</string> 977 + <key>Green Component</key> 978 + <real>0.9268307089805603</real> 979 + <key>Red Component</key> 980 + <real>0.70213186740875244</real> 981 + </dict> 982 + <key>Cursor Text Color</key> 983 + <dict> 984 + <key>Alpha Component</key> 985 + <real>1</real> 986 + <key>Blue Component</key> 987 + <real>0.94901961088180542</real> 988 + <key>Color Space</key> 989 + <string>sRGB</string> 990 + <key>Green Component</key> 991 + <real>0.94901961088180542</real> 992 + <key>Red Component</key> 993 + <real>0.94901961088180542</real> 994 + </dict> 995 + <key>Foreground Color</key> 996 + <dict> 997 + <key>Alpha Component</key> 998 + <real>1</real> 999 + <key>Blue Component</key> 1000 + <real>0.099115006625652313</real> 1001 + <key>Color Space</key> 1002 + <string>sRGB</string> 1003 + <key>Green Component</key> 1004 + <real>0.099112026393413544</real> 1005 + <key>Red Component</key> 1006 + <real>0.099139474332332611</real> 1007 + </dict> 1008 + <key>Link Color</key> 1009 + <dict> 1010 + <key>Alpha Component</key> 1011 + <real>1</real> 1012 + <key>Blue Component</key> 1013 + <real>0.73423302173614502</real> 1014 + <key>Color Space</key> 1015 + <string>sRGB</string> 1016 + <key>Green Component</key> 1017 + <real>0.35916060209274292</real> 1018 + <key>Red Component</key> 1019 + <real>0.0</real> 1020 + </dict> 1021 + <key>Selected Text Color</key> 1022 + <dict> 1023 + <key>Alpha Component</key> 1024 + <real>1</real> 1025 + <key>Blue Component</key> 1026 + <real>0.098039217293262482</real> 1027 + <key>Color Space</key> 1028 + <string>sRGB</string> 1029 + <key>Green Component</key> 1030 + <real>0.098039217293262482</real> 1031 + <key>Red Component</key> 1032 + <real>0.098039217293262482</real> 1033 + </dict> 1034 + <key>Selection Color</key> 1035 + <dict> 1036 + <key>Alpha Component</key> 1037 + <real>1</real> 1038 + <key>Blue Component</key> 1039 + <real>1</real> 1040 + <key>Color Space</key> 1041 + <string>sRGB</string> 1042 + <key>Green Component</key> 1043 + <real>0.86666667461395264</real> 1044 + <key>Red Component</key> 1045 + <real>0.75686275959014893</real> 1046 + </dict> 1047 + </dict> 241 1048 </dict> 242 1049 <key>Default Arrangement Name</key> 243 1050 <string>Default</string> ··· 280 1087 <key>Text</key> 281 1088 <string></string> 282 1089 </dict> 283 - <key>0x5c-0x100000</key> 1090 + <key>0x5c-0x100000-0x2a</key> 284 1091 <dict> 285 1092 <key>Action</key> 286 1093 <integer>29</integer> 1094 + <key>Apply Mode</key> 1095 + <integer>0</integer> 1096 + <key>Escaping</key> 1097 + <integer>2</integer> 287 1098 <key>Text</key> 288 1099 <string>21922352-0CDF-42DB-B31E-C78ABCAAEA80</string> 1100 + <key>Version</key> 1101 + <integer>2</integer> 289 1102 </dict> 290 1103 <key>0x70-0x100000</key> 291 1104 <dict> ··· 301 1114 <key>Text</key> 302 1115 <string></string> 303 1116 </dict> 304 - <key>0x7c-0x120000</key> 1117 + <key>0x7c-0x120000-0x2a</key> 305 1118 <dict> 306 1119 <key>Action</key> 307 1120 <integer>28</integer> 1121 + <key>Apply Mode</key> 1122 + <integer>0</integer> 1123 + <key>Escaping</key> 1124 + <integer>2</integer> 308 1125 <key>Text</key> 309 1126 <string>21922352-0CDF-42DB-B31E-C78ABCAAEA80</string> 1127 + <key>Version</key> 1128 + <integer>2</integer> 310 1129 </dict> 311 1130 <key>0x9-0x40000</key> 312 1131 <dict> ··· 428 1247 <false/> 429 1248 <key>Ansi 0 Color</key> 430 1249 <dict> 431 - <key>Alpha Component</key> 432 - <integer>1</integer> 433 1250 <key>Blue Component</key> 434 - <integer>0</integer> 1251 + <real>0.15294117647058825</real> 435 1252 <key>Color Space</key> 436 1253 <string>sRGB</string> 437 1254 <key>Green Component</key> 1255 + <real>0.086274509803921567</real> 1256 + <key>Red Component</key> 1257 + <real>0.0039215686274509803</real> 1258 + </dict> 1259 + <key>Ansi 0 Color (Dark)</key> 1260 + <dict> 1261 + <key>Blue Component</key> 1262 + <integer>0</integer> 1263 + <key>Green Component</key> 438 1264 <integer>0</integer> 439 1265 <key>Red Component</key> 440 1266 <integer>0</integer> 441 1267 </dict> 1268 + <key>Ansi 0 Color (Light)</key> 1269 + <dict> 1270 + <key>Blue Component</key> 1271 + <real>0.15294117647058825</real> 1272 + <key>Color Space</key> 1273 + <string>sRGB</string> 1274 + <key>Green Component</key> 1275 + <real>0.086274509803921567</real> 1276 + <key>Red Component</key> 1277 + <real>0.0039215686274509803</real> 1278 + </dict> 442 1279 <key>Ansi 1 Color</key> 443 1280 <dict> 444 - <key>Alpha Component</key> 445 - <integer>1</integer> 446 1281 <key>Blue Component</key> 447 - <real>0.058099240064620972</real> 1282 + <real>0.24313725490196078</real> 448 1283 <key>Color Space</key> 449 1284 <string>sRGB</string> 450 1285 <key>Green Component</key> 451 - <real>0.10371831804513931</real> 1286 + <real>0.25882352941176473</real> 452 1287 <key>Red Component</key> 453 - <real>0.66812098026275635</real> 1288 + <real>0.82745098039215681</real> 1289 + </dict> 1290 + <key>Ansi 1 Color (Dark)</key> 1291 + <dict> 1292 + <key>Blue Component</key> 1293 + <integer>0</integer> 1294 + <key>Green Component</key> 1295 + <integer>0</integer> 1296 + <key>Red Component</key> 1297 + <real>0.59999999999999998</real> 1298 + </dict> 1299 + <key>Ansi 1 Color (Light)</key> 1300 + <dict> 1301 + <key>Blue Component</key> 1302 + <real>0.24313725490196078</real> 1303 + <key>Color Space</key> 1304 + <string>sRGB</string> 1305 + <key>Green Component</key> 1306 + <real>0.25882352941176473</real> 1307 + <key>Red Component</key> 1308 + <real>0.82745098039215681</real> 454 1309 </dict> 455 1310 <key>Ansi 10 Color</key> 456 1311 <dict> 457 - <key>Alpha Component</key> 458 - <integer>1</integer> 459 1312 <key>Blue Component</key> 460 - <real>0.1634487509727478</real> 1313 + <real>0.77254901960784317</real> 461 1314 <key>Color Space</key> 462 1315 <string>sRGB</string> 463 1316 <key>Green Component</key> 464 - <real>0.85659819841384888</real> 1317 + <real>0.81568627450980391</real> 1318 + <key>Red Component</key> 1319 + <real>0.28627450980392155</real> 1320 + </dict> 1321 + <key>Ansi 10 Color (Dark)</key> 1322 + <dict> 1323 + <key>Blue Component</key> 1324 + <integer>0</integer> 1325 + <key>Green Component</key> 1326 + <real>0.85098039215686272</real> 465 1327 <key>Red Component</key> 466 1328 <integer>0</integer> 467 1329 </dict> 1330 + <key>Ansi 10 Color (Light)</key> 1331 + <dict> 1332 + <key>Blue Component</key> 1333 + <real>0.77254901960784317</real> 1334 + <key>Color Space</key> 1335 + <string>sRGB</string> 1336 + <key>Green Component</key> 1337 + <real>0.81568627450980391</real> 1338 + <key>Red Component</key> 1339 + <real>0.28627450980392155</real> 1340 + </dict> 468 1341 <key>Ansi 11 Color</key> 469 1342 <dict> 470 - <key>Alpha Component</key> 471 - <integer>1</integer> 472 1343 <key>Blue Component</key> 473 - <real>0.23028141260147095</real> 1344 + <real>0.41960784313725491</real> 474 1345 <key>Color Space</key> 475 1346 <string>sRGB</string> 476 1347 <key>Green Component</key> 477 - <real>0.90874701738357544</real> 1348 + <real>0.76078431372549016</real> 478 1349 <key>Red Component</key> 479 - <real>0.91766214370727539</real> 1350 + <real>0.85490196078431369</real> 1351 + </dict> 1352 + <key>Ansi 11 Color (Dark)</key> 1353 + <dict> 1354 + <key>Blue Component</key> 1355 + <integer>0</integer> 1356 + <key>Green Component</key> 1357 + <real>0.89803921568627454</real> 1358 + <key>Red Component</key> 1359 + <real>0.89803921568627454</real> 1360 + </dict> 1361 + <key>Ansi 11 Color (Light)</key> 1362 + <dict> 1363 + <key>Blue Component</key> 1364 + <real>0.41960784313725491</real> 1365 + <key>Color Space</key> 1366 + <string>sRGB</string> 1367 + <key>Green Component</key> 1368 + <real>0.76078431372549016</real> 1369 + <key>Red Component</key> 1370 + <real>0.85490196078431369</real> 480 1371 </dict> 481 1372 <key>Ansi 12 Color</key> 482 1373 <dict> 483 - <key>Alpha Component</key> 1374 + <key>Blue Component</key> 1375 + <real>0.89411764705882357</real> 1376 + <key>Color Space</key> 1377 + <string>sRGB</string> 1378 + <key>Green Component</key> 1379 + <real>0.65490196078431373</real> 1380 + <key>Red Component</key> 1381 + <real>0.36078431372549019</real> 1382 + </dict> 1383 + <key>Ansi 12 Color (Dark)</key> 1384 + <dict> 1385 + <key>Blue Component</key> 484 1386 <integer>1</integer> 1387 + <key>Green Component</key> 1388 + <integer>0</integer> 1389 + <key>Red Component</key> 1390 + <integer>0</integer> 1391 + </dict> 1392 + <key>Ansi 12 Color (Light)</key> 1393 + <dict> 485 1394 <key>Blue Component</key> 486 - <real>0.98149222135543823</real> 1395 + <real>0.89411764705882357</real> 487 1396 <key>Color Space</key> 488 1397 <string>sRGB</string> 489 1398 <key>Green Component</key> 490 - <real>0.58920532464981079</real> 1399 + <real>0.65490196078431373</real> 491 1400 <key>Red Component</key> 492 - <real>0.52499485015869141</real> 1401 + <real>0.36078431372549019</real> 493 1402 </dict> 494 1403 <key>Ansi 13 Color</key> 495 1404 <dict> 496 - <key>Alpha Component</key> 497 - <integer>1</integer> 1405 + <key>Blue Component</key> 1406 + <real>0.59607843137254901</real> 1407 + <key>Color Space</key> 1408 + <string>sRGB</string> 1409 + <key>Green Component</key> 1410 + <real>0.4392156862745098</real> 1411 + <key>Red Component</key> 1412 + <real>0.41176470588235292</real> 1413 + </dict> 1414 + <key>Ansi 13 Color (Dark)</key> 1415 + <dict> 1416 + <key>Blue Component</key> 1417 + <real>0.89803921568627454</real> 1418 + <key>Green Component</key> 1419 + <integer>0</integer> 1420 + <key>Red Component</key> 1421 + <real>0.89803921568627454</real> 1422 + </dict> 1423 + <key>Ansi 13 Color (Light)</key> 1424 + <dict> 498 1425 <key>Blue Component</key> 499 - <real>0.91244477033615112</real> 1426 + <real>0.59607843137254901</real> 500 1427 <key>Color Space</key> 501 1428 <string>sRGB</string> 502 1429 <key>Green Component</key> 503 - <real>0.23190298676490784</real> 1430 + <real>0.4392156862745098</real> 504 1431 <key>Red Component</key> 505 - <real>0.92568391561508179</real> 1432 + <real>0.41176470588235292</real> 506 1433 </dict> 507 1434 <key>Ansi 14 Color</key> 508 1435 <dict> 509 - <key>Alpha Component</key> 510 - <integer>1</integer> 1436 + <key>Blue Component</key> 1437 + <real>0.56470588235294117</real> 1438 + <key>Color Space</key> 1439 + <string>sRGB</string> 1440 + <key>Green Component</key> 1441 + <real>0.78823529411764703</real> 1442 + <key>Red Component</key> 1443 + <integer>0</integer> 1444 + </dict> 1445 + <key>Ansi 14 Color (Dark)</key> 1446 + <dict> 1447 + <key>Blue Component</key> 1448 + <real>0.89803921568627454</real> 1449 + <key>Green Component</key> 1450 + <real>0.89803921568627454</real> 1451 + <key>Red Component</key> 1452 + <integer>0</integer> 1453 + </dict> 1454 + <key>Ansi 14 Color (Light)</key> 1455 + <dict> 511 1456 <key>Blue Component</key> 512 - <real>0.96042031049728394</real> 1457 + <real>0.56470588235294117</real> 513 1458 <key>Color Space</key> 514 1459 <string>sRGB</string> 515 1460 <key>Green Component</key> 516 - <real>0.9253380298614502</real> 1461 + <real>0.78823529411764703</real> 517 1462 <key>Red Component</key> 518 1463 <integer>0</integer> 519 1464 </dict> 520 1465 <key>Ansi 15 Color</key> 521 1466 <dict> 522 - <key>Alpha Component</key> 523 - <integer>1</integer> 1467 + <key>Blue Component</key> 1468 + <real>0.69411764705882351</real> 1469 + <key>Color Space</key> 1470 + <string>sRGB</string> 1471 + <key>Green Component</key> 1472 + <real>0.62352941176470589</real> 1473 + <key>Red Component</key> 1474 + <real>0.59607843137254901</real> 1475 + </dict> 1476 + <key>Ansi 15 Color (Dark)</key> 1477 + <dict> 1478 + <key>Blue Component</key> 1479 + <real>0.89803921568627454</real> 1480 + <key>Green Component</key> 1481 + <real>0.89803921568627454</real> 1482 + <key>Red Component</key> 1483 + <real>0.89803921568627454</real> 1484 + </dict> 1485 + <key>Ansi 15 Color (Light)</key> 1486 + <dict> 524 1487 <key>Blue Component</key> 525 - <real>0.92144554853439331</real> 1488 + <real>0.69411764705882351</real> 526 1489 <key>Color Space</key> 527 1490 <string>sRGB</string> 528 1491 <key>Green Component</key> 529 - <real>0.91843283176422119</real> 1492 + <real>0.62352941176470589</real> 530 1493 <key>Red Component</key> 531 - <real>0.92151540517807007</real> 1494 + <real>0.59607843137254901</real> 532 1495 </dict> 533 1496 <key>Ansi 2 Color</key> 534 1497 <dict> 535 - <key>Alpha Component</key> 536 - <integer>1</integer> 1498 + <key>Blue Component</key> 1499 + <real>0.59607843137254901</real> 1500 + <key>Color Space</key> 1501 + <string>sRGB</string> 1502 + <key>Green Component</key> 1503 + <real>0.63529411764705879</real> 1504 + <key>Red Component</key> 1505 + <real>0.16470588235294117</real> 1506 + </dict> 1507 + <key>Ansi 2 Color (Dark)</key> 1508 + <dict> 537 1509 <key>Blue Component</key> 538 1510 <integer>0</integer> 1511 + <key>Green Component</key> 1512 + <real>0.65098039215686276</real> 1513 + <key>Red Component</key> 1514 + <integer>0</integer> 1515 + </dict> 1516 + <key>Ansi 2 Color (Light)</key> 1517 + <dict> 1518 + <key>Blue Component</key> 1519 + <real>0.59607843137254901</real> 539 1520 <key>Color Space</key> 540 1521 <string>sRGB</string> 541 1522 <key>Green Component</key> 542 - <real>0.59999999999999998</real> 1523 + <real>0.63529411764705879</real> 543 1524 <key>Red Component</key> 544 - <integer>0</integer> 1525 + <real>0.16470588235294117</real> 545 1526 </dict> 546 1527 <key>Ansi 3 Color</key> 547 1528 <dict> 548 - <key>Alpha Component</key> 549 - <integer>1</integer> 550 1529 <key>Blue Component</key> 551 - <real>0.13504385948181152</real> 1530 + <real>0.0039215686274509803</real> 552 1531 <key>Color Space</key> 553 1532 <string>sRGB</string> 554 1533 <key>Green Component</key> 555 - <real>0.65481686592102051</real> 1534 + <real>0.66666666666666663</real> 556 1535 <key>Red Component</key> 557 - <real>0.66385143995285034</real> 1536 + <real>0.85490196078431369</real> 1537 + </dict> 1538 + <key>Ansi 3 Color (Dark)</key> 1539 + <dict> 1540 + <key>Blue Component</key> 1541 + <integer>0</integer> 1542 + <key>Green Component</key> 1543 + <real>0.59999999999999998</real> 1544 + <key>Red Component</key> 1545 + <real>0.59999999999999998</real> 1546 + </dict> 1547 + <key>Ansi 3 Color (Light)</key> 1548 + <dict> 1549 + <key>Blue Component</key> 1550 + <real>0.0039215686274509803</real> 1551 + <key>Color Space</key> 1552 + <string>sRGB</string> 1553 + <key>Green Component</key> 1554 + <real>0.66666666666666663</real> 1555 + <key>Red Component</key> 1556 + <real>0.85490196078431369</real> 558 1557 </dict> 559 1558 <key>Ansi 4 Color</key> 560 1559 <dict> 561 - <key>Alpha Component</key> 562 - <integer>1</integer> 1560 + <key>Blue Component</key> 1561 + <real>0.83921568627450982</real> 1562 + <key>Color Space</key> 1563 + <string>sRGB</string> 1564 + <key>Green Component</key> 1565 + <real>0.46274509803921571</real> 1566 + <key>Red Component</key> 1567 + <real>0.28235294117647058</real> 1568 + </dict> 1569 + <key>Ansi 4 Color (Dark)</key> 1570 + <dict> 563 1571 <key>Blue Component</key> 564 - <integer>1</integer> 1572 + <real>0.69803921568627447</real> 1573 + <key>Green Component</key> 1574 + <integer>0</integer> 1575 + <key>Red Component</key> 1576 + <integer>0</integer> 1577 + </dict> 1578 + <key>Ansi 4 Color (Light)</key> 1579 + <dict> 1580 + <key>Blue Component</key> 1581 + <real>0.83921568627450982</real> 565 1582 <key>Color Space</key> 566 1583 <string>sRGB</string> 567 1584 <key>Green Component</key> 568 - <real>0.19741851091384888</real> 1585 + <real>0.46274509803921571</real> 569 1586 <key>Red Component</key> 570 - <real>0.30479651689529419</real> 1587 + <real>0.28235294117647058</real> 571 1588 </dict> 572 1589 <key>Ansi 5 Color</key> 573 1590 <dict> 574 - <key>Alpha Component</key> 575 - <integer>1</integer> 576 1591 <key>Blue Component</key> 577 - <real>0.74776667356491089</real> 1592 + <real>0.32549019607843138</real> 1593 + <key>Color Space</key> 1594 + <string>sRGB</string> 1595 + <key>Green Component</key> 1596 + <real>0.24705882352941178</real> 1597 + <key>Red Component</key> 1598 + <real>0.25098039215686274</real> 1599 + </dict> 1600 + <key>Ansi 5 Color (Dark)</key> 1601 + <dict> 1602 + <key>Blue Component</key> 1603 + <real>0.69803921568627447</real> 1604 + <key>Green Component</key> 1605 + <integer>0</integer> 1606 + <key>Red Component</key> 1607 + <real>0.69803921568627447</real> 1608 + </dict> 1609 + <key>Ansi 5 Color (Light)</key> 1610 + <dict> 1611 + <key>Blue Component</key> 1612 + <real>0.32549019607843138</real> 578 1613 <key>Color Space</key> 579 1614 <string>sRGB</string> 580 1615 <key>Green Component</key> 581 - <real>0.18239298462867737</real> 1616 + <real>0.24705882352941178</real> 582 1617 <key>Red Component</key> 583 - <real>0.75607430934906006</real> 1618 + <real>0.25098039215686274</real> 584 1619 </dict> 585 1620 <key>Ansi 6 Color</key> 586 1621 <dict> 587 - <key>Alpha Component</key> 588 - <integer>1</integer> 589 1622 <key>Blue Component</key> 590 - <real>0.80842679738998413</real> 1623 + <real>0.41568627450980394</real> 591 1624 <key>Color Space</key> 592 1625 <string>sRGB</string> 593 1626 <key>Green Component</key> 594 - <real>0.75365883111953735</real> 1627 + <real>0.56862745098039214</real> 1628 + <key>Red Component</key> 1629 + <real>0.031372549019607843</real> 1630 + </dict> 1631 + <key>Ansi 6 Color (Dark)</key> 1632 + <dict> 1633 + <key>Blue Component</key> 1634 + <real>0.69803921568627447</real> 1635 + <key>Green Component</key> 1636 + <real>0.65098039215686276</real> 595 1637 <key>Red Component</key> 596 1638 <integer>0</integer> 597 1639 </dict> 1640 + <key>Ansi 6 Color (Light)</key> 1641 + <dict> 1642 + <key>Blue Component</key> 1643 + <real>0.41568627450980394</real> 1644 + <key>Color Space</key> 1645 + <string>sRGB</string> 1646 + <key>Green Component</key> 1647 + <real>0.56862745098039214</real> 1648 + <key>Red Component</key> 1649 + <real>0.031372549019607843</real> 1650 + </dict> 598 1651 <key>Ansi 7 Color</key> 599 1652 <dict> 600 - <key>Alpha Component</key> 601 - <integer>1</integer> 602 1653 <key>Blue Component</key> 603 - <real>0.79442524909973145</real> 1654 + <real>0.50588235294117645</real> 604 1655 <key>Color Space</key> 605 1656 <string>sRGB</string> 606 1657 <key>Green Component</key> 607 - <real>0.79443532228469849</real> 1658 + <real>0.50588235294117645</real> 608 1659 <key>Red Component</key> 609 - <real>0.79441660642623901</real> 1660 + <real>0.47843137254901963</real> 1661 + </dict> 1662 + <key>Ansi 7 Color (Dark)</key> 1663 + <dict> 1664 + <key>Blue Component</key> 1665 + <real>0.74901960784313726</real> 1666 + <key>Green Component</key> 1667 + <real>0.74901960784313726</real> 1668 + <key>Red Component</key> 1669 + <real>0.74901960784313726</real> 1670 + </dict> 1671 + <key>Ansi 7 Color (Light)</key> 1672 + <dict> 1673 + <key>Blue Component</key> 1674 + <real>0.50588235294117645</real> 1675 + <key>Color Space</key> 1676 + <string>sRGB</string> 1677 + <key>Green Component</key> 1678 + <real>0.50588235294117645</real> 1679 + <key>Red Component</key> 1680 + <real>0.47843137254901963</real> 610 1681 </dict> 611 1682 <key>Ansi 8 Color</key> 612 1683 <dict> 613 - <key>Alpha Component</key> 614 - <integer>1</integer> 1684 + <key>Blue Component</key> 1685 + <real>0.50588235294117645</real> 1686 + <key>Color Space</key> 1687 + <string>sRGB</string> 1688 + <key>Green Component</key> 1689 + <real>0.50588235294117645</real> 1690 + <key>Red Component</key> 1691 + <real>0.47843137254901963</real> 1692 + </dict> 1693 + <key>Ansi 8 Color (Dark)</key> 1694 + <dict> 1695 + <key>Blue Component</key> 1696 + <real>0.40000000000000002</real> 1697 + <key>Green Component</key> 1698 + <real>0.40000000000000002</real> 1699 + <key>Red Component</key> 1700 + <real>0.40000000000000002</real> 1701 + </dict> 1702 + <key>Ansi 8 Color (Light)</key> 1703 + <dict> 615 1704 <key>Blue Component</key> 616 - <real>0.47564041614532471</real> 1705 + <real>0.50588235294117645</real> 617 1706 <key>Color Space</key> 618 1707 <string>sRGB</string> 619 1708 <key>Green Component</key> 620 - <real>0.4756467342376709</real> 1709 + <real>0.50588235294117645</real> 621 1710 <key>Red Component</key> 622 - <real>0.47563493251800537</real> 1711 + <real>0.47843137254901963</real> 623 1712 </dict> 624 1713 <key>Ansi 9 Color</key> 625 1714 <dict> 626 - <key>Alpha Component</key> 627 - <integer>1</integer> 628 1715 <key>Blue Component</key> 629 - <real>0.13415428996086121</real> 1716 + <real>0.43137254901960786</real> 630 1717 <key>Color Space</key> 631 1718 <string>sRGB</string> 632 1719 <key>Green Component</key> 633 - <real>0.18266522884368896</real> 1720 + <real>0.43137254901960786</real> 634 1721 <key>Red Component</key> 635 - <real>0.92504602670669556</real> 1722 + <real>0.96862745098039216</real> 1723 + </dict> 1724 + <key>Ansi 9 Color (Dark)</key> 1725 + <dict> 1726 + <key>Blue Component</key> 1727 + <integer>0</integer> 1728 + <key>Green Component</key> 1729 + <integer>0</integer> 1730 + <key>Red Component</key> 1731 + <real>0.89803921568627454</real> 1732 + </dict> 1733 + <key>Ansi 9 Color (Light)</key> 1734 + <dict> 1735 + <key>Blue Component</key> 1736 + <real>0.43137254901960786</real> 1737 + <key>Color Space</key> 1738 + <string>sRGB</string> 1739 + <key>Green Component</key> 1740 + <real>0.43137254901960786</real> 1741 + <key>Red Component</key> 1742 + <real>0.96862745098039216</real> 636 1743 </dict> 637 1744 <key>Application Keypad Allowed</key> 638 1745 <true/> ··· 641 1748 <key>Background Color</key> 642 1749 <dict> 643 1750 <key>Blue Component</key> 1751 + <integer>1</integer> 1752 + <key>Color Space</key> 1753 + <string>sRGB</string> 1754 + <key>Green Component</key> 1755 + <integer>1</integer> 1756 + <key>Red Component</key> 1757 + <integer>1</integer> 1758 + </dict> 1759 + <key>Background Color (Dark)</key> 1760 + <dict> 1761 + <key>Blue Component</key> 644 1762 <integer>0</integer> 645 1763 <key>Green Component</key> 646 1764 <integer>0</integer> 647 1765 <key>Red Component</key> 648 1766 <integer>0</integer> 649 1767 </dict> 1768 + <key>Background Color (Light)</key> 1769 + <dict> 1770 + <key>Blue Component</key> 1771 + <integer>1</integer> 1772 + <key>Color Space</key> 1773 + <string>sRGB</string> 1774 + <key>Green Component</key> 1775 + <integer>1</integer> 1776 + <key>Red Component</key> 1777 + <integer>1</integer> 1778 + </dict> 650 1779 <key>Background Image Location</key> 651 1780 <string></string> 652 1781 <key>Badge Color</key> 653 1782 <dict> 654 1783 <key>Alpha Component</key> 655 - <real>0.75</real> 1784 + <real>0.5</real> 1785 + <key>Blue Component</key> 1786 + <real>0.13960540294647217</real> 1787 + <key>Color Space</key> 1788 + <string>P3</string> 1789 + <key>Green Component</key> 1790 + <real>0.25479039549827576</real> 1791 + <key>Red Component</key> 1792 + <real>0.92929404973983765</real> 1793 + </dict> 1794 + <key>Badge Color (Dark)</key> 1795 + <dict> 1796 + <key>Alpha Component</key> 1797 + <real>0.5</real> 656 1798 <key>Blue Component</key> 657 - <integer>0</integer> 1799 + <real>0.13960540294647217</real> 658 1800 <key>Color Space</key> 659 - <string>sRGB</string> 1801 + <string>P3</string> 660 1802 <key>Green Component</key> 661 - <real>0.14999999999999999</real> 1803 + <real>0.25479039549827576</real> 662 1804 <key>Red Component</key> 663 - <integer>1</integer> 1805 + <real>0.92929404973983765</real> 1806 + </dict> 1807 + <key>Badge Color (Light)</key> 1808 + <dict> 1809 + <key>Alpha Component</key> 1810 + <real>0.5</real> 1811 + <key>Blue Component</key> 1812 + <real>0.13960540294647217</real> 1813 + <key>Color Space</key> 1814 + <string>P3</string> 1815 + <key>Green Component</key> 1816 + <real>0.25479039549827576</real> 1817 + <key>Red Component</key> 1818 + <real>0.92929404973983765</real> 664 1819 </dict> 665 1820 <key>Badge Font</key> 666 1821 <string>MonaspaceKrypton-Bold</string> ··· 684 1839 <real>8.3475194321065995</real> 685 1840 <key>Bold Color</key> 686 1841 <dict> 687 - <key>Alpha Component</key> 1842 + <key>Blue Component</key> 1843 + <real>0.32549019607843138</real> 1844 + <key>Color Space</key> 1845 + <string>sRGB</string> 1846 + <key>Green Component</key> 1847 + <real>0.24705882352941178</real> 1848 + <key>Red Component</key> 1849 + <real>0.25098039215686274</real> 1850 + </dict> 1851 + <key>Bold Color (Dark)</key> 1852 + <dict> 1853 + <key>Blue Component</key> 1854 + <integer>0</integer> 1855 + <key>Green Component</key> 688 1856 <integer>1</integer> 1857 + <key>Red Component</key> 1858 + <integer>0</integer> 1859 + </dict> 1860 + <key>Bold Color (Light)</key> 1861 + <dict> 689 1862 <key>Blue Component</key> 690 - <real>0.18352475762367249</real> 1863 + <real>0.32549019607843138</real> 691 1864 <key>Color Space</key> 692 1865 <string>sRGB</string> 693 1866 <key>Green Component</key> 694 - <real>0.95898884534835815</real> 1867 + <real>0.24705882352941178</real> 695 1868 <key>Red Component</key> 696 - <integer>0</integer> 1869 + <real>0.25098039215686274</real> 697 1870 </dict> 698 1871 <key>Bound Hosts</key> 699 1872 <array> ··· 704 1877 <string>ichamberlain@Ians-Macbook-Pro.local</string> 705 1878 <string>ichamberlain@ichamberlain-mbp</string> 706 1879 </array> 1880 + <key>Brighten Bold Text (Dark)</key> 1881 + <false/> 1882 + <key>Brighten Bold Text (Light)</key> 1883 + <false/> 707 1884 <key>Character Encoding</key> 708 1885 <integer>4</integer> 709 1886 <key>Close Sessions On End</key> ··· 712 1889 <integer>80</integer> 713 1890 <key>Command</key> 714 1891 <string>/usr/local/bin/fish -il</string> 1892 + <key>Cursor Boost (Dark)</key> 1893 + <integer>0</integer> 1894 + <key>Cursor Boost (Light)</key> 1895 + <integer>0</integer> 715 1896 <key>Cursor Color</key> 716 1897 <dict> 717 - <key>Alpha Component</key> 1898 + <key>Blue Component</key> 1899 + <real>0.32549019607843138</real> 1900 + <key>Color Space</key> 1901 + <string>sRGB</string> 1902 + <key>Green Component</key> 1903 + <real>0.24705882352941178</real> 1904 + <key>Red Component</key> 1905 + <real>0.25098039215686274</real> 1906 + </dict> 1907 + <key>Cursor Color (Dark)</key> 1908 + <dict> 1909 + <key>Blue Component</key> 1910 + <real>0.094117647058823528</real> 1911 + <key>Green Component</key> 718 1912 <integer>1</integer> 1913 + <key>Red Component</key> 1914 + <real>0.13725490196078433</real> 1915 + </dict> 1916 + <key>Cursor Color (Light)</key> 1917 + <dict> 719 1918 <key>Blue Component</key> 720 - <real>0.28506788611412048</real> 1919 + <real>0.32549019607843138</real> 721 1920 <key>Color Space</key> 722 1921 <string>sRGB</string> 723 1922 <key>Green Component</key> 724 - <real>0.9755217432975769</real> 1923 + <real>0.24705882352941178</real> 725 1924 <key>Red Component</key> 726 - <real>0.27456897497177124</real> 1925 + <real>0.25098039215686274</real> 727 1926 </dict> 728 1927 <key>Cursor Guide Color</key> 729 1928 <dict> 730 1929 <key>Alpha Component</key> 731 1930 <real>0.25</real> 732 1931 <key>Blue Component</key> 733 - <integer>1</integer> 1932 + <real>0.99125725030899048</real> 1933 + <key>Color Space</key> 1934 + <string>P3</string> 1935 + <key>Green Component</key> 1936 + <real>0.92047786712646484</real> 1937 + <key>Red Component</key> 1938 + <real>0.7486259937286377</real> 1939 + </dict> 1940 + <key>Cursor Guide Color (Dark)</key> 1941 + <dict> 1942 + <key>Alpha Component</key> 1943 + <real>0.25</real> 1944 + <key>Blue Component</key> 1945 + <real>0.99125725030899048</real> 1946 + <key>Color Space</key> 1947 + <string>P3</string> 1948 + <key>Green Component</key> 1949 + <real>0.92047786712646484</real> 1950 + <key>Red Component</key> 1951 + <real>0.7486259937286377</real> 1952 + </dict> 1953 + <key>Cursor Guide Color (Light)</key> 1954 + <dict> 1955 + <key>Alpha Component</key> 1956 + <real>0.25</real> 1957 + <key>Blue Component</key> 1958 + <real>0.99125725030899048</real> 734 1959 <key>Color Space</key> 735 - <string>sRGB</string> 1960 + <string>P3</string> 736 1961 <key>Green Component</key> 737 - <real>0.9268307089805603</real> 1962 + <real>0.92047786712646484</real> 738 1963 <key>Red Component</key> 739 - <real>0.70213186740875244</real> 1964 + <real>0.7486259937286377</real> 740 1965 </dict> 741 1966 <key>Cursor Text Color</key> 742 1967 <dict> 743 1968 <key>Blue Component</key> 744 - <integer>1</integer> 1969 + <real>0.98431372549019602</real> 1970 + <key>Color Space</key> 1971 + <string>sRGB</string> 745 1972 <key>Green Component</key> 746 - <integer>1</integer> 1973 + <real>0.98431372549019602</real> 1974 + <key>Red Component</key> 1975 + <real>0.98431372549019602</real> 1976 + </dict> 1977 + <key>Cursor Text Color (Dark)</key> 1978 + <dict> 1979 + <key>Blue Component</key> 1980 + <real>0.0940093994140625</real> 1981 + <key>Green Component</key> 1982 + <integer>0</integer> 747 1983 <key>Red Component</key> 748 1984 <integer>1</integer> 749 1985 </dict> 1986 + <key>Cursor Text Color (Light)</key> 1987 + <dict> 1988 + <key>Blue Component</key> 1989 + <real>0.98431372549019602</real> 1990 + <key>Color Space</key> 1991 + <string>sRGB</string> 1992 + <key>Green Component</key> 1993 + <real>0.98431372549019602</real> 1994 + <key>Red Component</key> 1995 + <real>0.98431372549019602</real> 1996 + </dict> 750 1997 <key>Custom Command</key> 751 1998 <string>No</string> 752 1999 <key>Custom Directory</key> ··· 761 2008 <true/> 762 2009 <key>Dynamic Profile Filename</key> 763 2010 <string>/Users/ichamberlain/.config/iterm2/profiles/Default.json</string> 2011 + <key>Faint Text Alpha (Dark)</key> 2012 + <real>0.5</real> 2013 + <key>Faint Text Alpha (Light)</key> 2014 + <real>0.5</real> 764 2015 <key>Flashing Bell</key> 765 2016 <true/> 766 2017 <key>Foreground Color</key> 767 2018 <dict> 768 - <key>Alpha Component</key> 769 - <integer>1</integer> 770 2019 <key>Blue Component</key> 771 - <real>0.23137255012989044</real> 2020 + <real>0.32549019607843138</real> 772 2021 <key>Color Space</key> 773 2022 <string>sRGB</string> 774 2023 <key>Green Component</key> 2024 + <real>0.24705882352941178</real> 2025 + <key>Red Component</key> 2026 + <real>0.25098039215686274</real> 2027 + </dict> 2028 + <key>Foreground Color (Dark)</key> 2029 + <dict> 2030 + <key>Blue Component</key> 2031 + <integer>0</integer> 2032 + <key>Green Component</key> 775 2033 <integer>1</integer> 776 2034 <key>Red Component</key> 777 - <real>0.19607843458652496</real> 2035 + <integer>0</integer> 2036 + </dict> 2037 + <key>Foreground Color (Light)</key> 2038 + <dict> 2039 + <key>Blue Component</key> 2040 + <real>0.32549019607843138</real> 2041 + <key>Color Space</key> 2042 + <string>sRGB</string> 2043 + <key>Green Component</key> 2044 + <real>0.24705882352941178</real> 2045 + <key>Red Component</key> 2046 + <real>0.25098039215686274</real> 778 2047 </dict> 779 2048 <key>Guid</key> 780 2049 <string>21922352-0CDF-42DB-B31E-C78ABCAAEA80</string> 2050 + <key>Has Hotkey</key> 2051 + <false/> 781 2052 <key>Horizontal Spacing</key> 782 - <integer>1</integer> 2053 + <real>1</real> 783 2054 <key>Idle Code</key> 784 2055 <integer>0</integer> 785 2056 <key>Jobs to Ignore</key> ··· 926 2197 <key>Text</key> 927 2198 <string>0x1B 0x08</string> 928 2199 </dict> 2200 + <key>0xd-0x80000-0x24</key> 2201 + <dict> 2202 + <key>Action</key> 2203 + <integer>10</integer> 2204 + <key>Label</key> 2205 + <string></string> 2206 + <key>Text</key> 2207 + <string> 2208 + </string> 2209 + <key>Version</key> 2210 + <integer>1</integer> 2211 + </dict> 929 2212 <key>0xf702-0x280000</key> 930 2213 <dict> 931 2214 <key>Action</key> ··· 987 2270 <key>Alpha Component</key> 988 2271 <integer>1</integer> 989 2272 <key>Blue Component</key> 990 - <real>0.73423302173614502</real> 2273 + <real>0.70932406187057495</real> 991 2274 <key>Color Space</key> 992 - <string>sRGB</string> 2275 + <string>P3</string> 993 2276 <key>Green Component</key> 994 - <real>0.35916060209274292</real> 2277 + <real>0.35333043336868286</real> 2278 + <key>Red Component</key> 2279 + <real>0.1451396644115448</real> 2280 + </dict> 2281 + <key>Link Color (Dark)</key> 2282 + <dict> 2283 + <key>Alpha Component</key> 2284 + <integer>1</integer> 2285 + <key>Blue Component</key> 2286 + <real>0.70932406187057495</real> 2287 + <key>Color Space</key> 2288 + <string>P3</string> 2289 + <key>Green Component</key> 2290 + <real>0.35333043336868286</real> 2291 + <key>Red Component</key> 2292 + <real>0.1451396644115448</real> 2293 + </dict> 2294 + <key>Link Color (Light)</key> 2295 + <dict> 2296 + <key>Alpha Component</key> 2297 + <integer>1</integer> 2298 + <key>Blue Component</key> 2299 + <real>0.70932406187057495</real> 2300 + <key>Color Space</key> 2301 + <string>P3</string> 2302 + <key>Green Component</key> 2303 + <real>0.35333043336868286</real> 2304 + <key>Red Component</key> 2305 + <real>0.1451396644115448</real> 2306 + </dict> 2307 + <key>Match Background Color</key> 2308 + <dict> 2309 + <key>Alpha Component</key> 2310 + <integer>1</integer> 2311 + <key>Blue Component</key> 2312 + <integer>0</integer> 2313 + <key>Color Space</key> 2314 + <string>P3</string> 2315 + <key>Green Component</key> 2316 + <integer>1</integer> 995 2317 <key>Red Component</key> 2318 + <integer>1</integer> 2319 + </dict> 2320 + <key>Match Background Color (Dark)</key> 2321 + <dict> 2322 + <key>Alpha Component</key> 2323 + <integer>1</integer> 2324 + <key>Blue Component</key> 996 2325 <integer>0</integer> 2326 + <key>Color Space</key> 2327 + <string>P3</string> 2328 + <key>Green Component</key> 2329 + <integer>1</integer> 2330 + <key>Red Component</key> 2331 + <integer>1</integer> 997 2332 </dict> 2333 + <key>Match Background Color (Light)</key> 2334 + <dict> 2335 + <key>Alpha Component</key> 2336 + <integer>1</integer> 2337 + <key>Blue Component</key> 2338 + <integer>0</integer> 2339 + <key>Color Space</key> 2340 + <string>P3</string> 2341 + <key>Green Component</key> 2342 + <integer>1</integer> 2343 + <key>Red Component</key> 2344 + <integer>1</integer> 2345 + </dict> 2346 + <key>Minimum Contrast</key> 2347 + <integer>0</integer> 2348 + <key>Minimum Contrast (Dark)</key> 2349 + <integer>0</integer> 2350 + <key>Minimum Contrast (Light)</key> 2351 + <integer>0</integer> 998 2352 <key>Mouse Reporting</key> 999 2353 <true/> 1000 2354 <key>Name</key> ··· 1004 2358 <key>Non-ASCII Anti Aliased</key> 1005 2359 <true/> 1006 2360 <key>Normal Font</key> 1007 - <string>MonaspaceArgon-Regular 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 2361 + <string>MonaspaceArgon-Regular 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 1008 2362 <key>Only The Default BG Color Uses Transparency</key> 1009 2363 <false/> 1010 2364 <key>Open Toolbelt</key> ··· 1025 2379 <integer>0</integer> 1026 2380 <key>Selected Text Color</key> 1027 2381 <dict> 1028 - <key>Alpha Component</key> 2382 + <key>Blue Component</key> 2383 + <real>0.32549019607843138</real> 2384 + <key>Color Space</key> 2385 + <string>sRGB</string> 2386 + <key>Green Component</key> 2387 + <real>0.24705882352941178</real> 2388 + <key>Red Component</key> 2389 + <real>0.25098039215686274</real> 2390 + </dict> 2391 + <key>Selected Text Color (Dark)</key> 2392 + <dict> 2393 + <key>Blue Component</key> 2394 + <integer>1</integer> 2395 + <key>Green Component</key> 2396 + <integer>1</integer> 2397 + <key>Red Component</key> 1029 2398 <integer>1</integer> 2399 + </dict> 2400 + <key>Selected Text Color (Light)</key> 2401 + <dict> 1030 2402 <key>Blue Component</key> 1031 - <real>0.95729249715805054</real> 2403 + <real>0.32549019607843138</real> 1032 2404 <key>Color Space</key> 1033 2405 <string>sRGB</string> 1034 2406 <key>Green Component</key> 1035 - <real>0.54609501361846924</real> 2407 + <real>0.24705882352941178</real> 1036 2408 <key>Red Component</key> 1037 - <real>0.47127401828765869</real> 2409 + <real>0.25098039215686274</real> 1038 2410 </dict> 1039 2411 <key>Selection Color</key> 1040 2412 <dict> 1041 - <key>Alpha Component</key> 1042 - <integer>1</integer> 1043 2413 <key>Blue Component</key> 1044 - <real>0.6616329550743103</real> 2414 + <real>0.94999999999999996</real> 1045 2415 <key>Color Space</key> 1046 2416 <string>sRGB</string> 1047 2417 <key>Green Component</key> 1048 - <real>0.18451127409934998</real> 2418 + <real>0.94999999999999996</real> 1049 2419 <key>Red Component</key> 1050 - <real>0.053524382412433603</real> 2420 + <real>0.94999999999999996</real> 2421 + </dict> 2422 + <key>Selection Color (Dark)</key> 2423 + <dict> 2424 + <key>Blue Component</key> 2425 + <real>0.019607843137254902</real> 2426 + <key>Green Component</key> 2427 + <real>0.22352941176470587</real> 2428 + <key>Red Component</key> 2429 + <real>0.031372549019607843</real> 2430 + </dict> 2431 + <key>Selection Color (Light)</key> 2432 + <dict> 2433 + <key>Blue Component</key> 2434 + <real>0.94999999999999996</real> 2435 + <key>Color Space</key> 2436 + <string>sRGB</string> 2437 + <key>Green Component</key> 2438 + <real>0.94999999999999996</real> 2439 + <key>Red Component</key> 2440 + <real>0.94999999999999996</real> 1051 2441 </dict> 1052 2442 <key>Semantic History</key> 1053 2443 <dict> ··· 1073 2463 <key>Show Status Bar</key> 1074 2464 <true/> 1075 2465 <key>Silence Bell</key> 2466 + <false/> 2467 + <key>Smart Cursor Color (Dark)</key> 2468 + <false/> 2469 + <key>Smart Cursor Color (Light)</key> 1076 2470 <false/> 1077 2471 <key>Space</key> 1078 2472 <integer>0</integer> ··· 1318 2712 <true/> 1319 2713 <key>Use Bright Bold</key> 1320 2714 <false/> 2715 + <key>Use Bright Bold (Dark)</key> 2716 + <false/> 2717 + <key>Use Bright Bold (Light)</key> 2718 + <false/> 2719 + <key>Use Cursor Guide (Dark)</key> 2720 + <false/> 2721 + <key>Use Cursor Guide (Light)</key> 2722 + <false/> 1321 2723 <key>Use Italic Font</key> 1322 2724 <true/> 1323 2725 <key>Use Non-ASCII Font</key> 1324 2726 <false/> 2727 + <key>Use Selected Text Color (Dark)</key> 2728 + <true/> 2729 + <key>Use Selected Text Color (Light)</key> 2730 + <true/> 2731 + <key>Use Separate Colors for Light and Dark Mode</key> 2732 + <true/> 2733 + <key>Use Tab Color</key> 2734 + <false/> 2735 + <key>Use Tab Color (Dark)</key> 2736 + <false/> 2737 + <key>Use Tab Color (Light)</key> 2738 + <false/> 2739 + <key>Use Underline Color</key> 2740 + <false/> 2741 + <key>Use Underline Color (Dark)</key> 2742 + <false/> 2743 + <key>Use Underline Color (Light)</key> 2744 + <false/> 1325 2745 <key>Vertical Spacing</key> 1326 - <integer>1</integer> 2746 + <real>1</real> 1327 2747 <key>Visual Bell</key> 1328 2748 <true/> 1329 2749 <key>Window Type</key> ··· 1335 2755 <key>ASCII Anti Aliased</key> 1336 2756 <true/> 1337 2757 <key>ASCII Ligatures</key> 1338 - <false/> 2758 + <true/> 1339 2759 <key>AWDS Pane Directory</key> 1340 2760 <string></string> 1341 2761 <key>AWDS Pane Option</key> ··· 1365 2785 <key>Red Component</key> 1366 2786 <integer>0</integer> 1367 2787 </dict> 2788 + <key>Ansi 0 Color (Dark)</key> 2789 + <dict> 2790 + <key>Blue Component</key> 2791 + <integer>0</integer> 2792 + <key>Green Component</key> 2793 + <integer>0</integer> 2794 + <key>Red Component</key> 2795 + <integer>0</integer> 2796 + </dict> 2797 + <key>Ansi 0 Color (Light)</key> 2798 + <dict> 2799 + <key>Blue Component</key> 2800 + <real>0.15294117647058825</real> 2801 + <key>Color Space</key> 2802 + <string>sRGB</string> 2803 + <key>Green Component</key> 2804 + <real>0.086274509803921567</real> 2805 + <key>Red Component</key> 2806 + <real>0.0039215686274509803</real> 2807 + </dict> 1368 2808 <key>Ansi 1 Color</key> 1369 2809 <dict> 1370 2810 <key>Alpha Component</key> ··· 1378 2818 <key>Red Component</key> 1379 2819 <real>0.66812098026275635</real> 1380 2820 </dict> 2821 + <key>Ansi 1 Color (Dark)</key> 2822 + <dict> 2823 + <key>Blue Component</key> 2824 + <integer>0</integer> 2825 + <key>Green Component</key> 2826 + <integer>0</integer> 2827 + <key>Red Component</key> 2828 + <real>0.59999999999999998</real> 2829 + </dict> 2830 + <key>Ansi 1 Color (Light)</key> 2831 + <dict> 2832 + <key>Blue Component</key> 2833 + <real>0.24313725490196078</real> 2834 + <key>Color Space</key> 2835 + <string>sRGB</string> 2836 + <key>Green Component</key> 2837 + <real>0.25882352941176473</real> 2838 + <key>Red Component</key> 2839 + <real>0.82745098039215681</real> 2840 + </dict> 1381 2841 <key>Ansi 10 Color</key> 1382 2842 <dict> 1383 2843 <key>Alpha Component</key> ··· 1391 2851 <key>Red Component</key> 1392 2852 <integer>0</integer> 1393 2853 </dict> 2854 + <key>Ansi 10 Color (Dark)</key> 2855 + <dict> 2856 + <key>Blue Component</key> 2857 + <integer>0</integer> 2858 + <key>Green Component</key> 2859 + <real>0.85098039215686272</real> 2860 + <key>Red Component</key> 2861 + <integer>0</integer> 2862 + </dict> 2863 + <key>Ansi 10 Color (Light)</key> 2864 + <dict> 2865 + <key>Blue Component</key> 2866 + <real>0.77254901960784317</real> 2867 + <key>Color Space</key> 2868 + <string>sRGB</string> 2869 + <key>Green Component</key> 2870 + <real>0.81568627450980391</real> 2871 + <key>Red Component</key> 2872 + <real>0.28627450980392155</real> 2873 + </dict> 1394 2874 <key>Ansi 11 Color</key> 1395 2875 <dict> 1396 2876 <key>Alpha Component</key> ··· 1404 2884 <key>Red Component</key> 1405 2885 <real>0.91766214370727539</real> 1406 2886 </dict> 2887 + <key>Ansi 11 Color (Dark)</key> 2888 + <dict> 2889 + <key>Blue Component</key> 2890 + <integer>0</integer> 2891 + <key>Green Component</key> 2892 + <real>0.89803921568627454</real> 2893 + <key>Red Component</key> 2894 + <real>0.89803921568627454</real> 2895 + </dict> 2896 + <key>Ansi 11 Color (Light)</key> 2897 + <dict> 2898 + <key>Blue Component</key> 2899 + <real>0.41960784313725491</real> 2900 + <key>Color Space</key> 2901 + <string>sRGB</string> 2902 + <key>Green Component</key> 2903 + <real>0.76078431372549016</real> 2904 + <key>Red Component</key> 2905 + <real>0.85490196078431369</real> 2906 + </dict> 1407 2907 <key>Ansi 12 Color</key> 1408 2908 <dict> 1409 2909 <key>Alpha Component</key> ··· 1417 2917 <key>Red Component</key> 1418 2918 <real>0.52499485015869141</real> 1419 2919 </dict> 2920 + <key>Ansi 12 Color (Dark)</key> 2921 + <dict> 2922 + <key>Blue Component</key> 2923 + <integer>1</integer> 2924 + <key>Green Component</key> 2925 + <integer>0</integer> 2926 + <key>Red Component</key> 2927 + <integer>0</integer> 2928 + </dict> 2929 + <key>Ansi 12 Color (Light)</key> 2930 + <dict> 2931 + <key>Blue Component</key> 2932 + <real>0.89411764705882357</real> 2933 + <key>Color Space</key> 2934 + <string>sRGB</string> 2935 + <key>Green Component</key> 2936 + <real>0.65490196078431373</real> 2937 + <key>Red Component</key> 2938 + <real>0.36078431372549019</real> 2939 + </dict> 1420 2940 <key>Ansi 13 Color</key> 1421 2941 <dict> 1422 2942 <key>Alpha Component</key> ··· 1430 2950 <key>Red Component</key> 1431 2951 <real>0.92568391561508179</real> 1432 2952 </dict> 2953 + <key>Ansi 13 Color (Dark)</key> 2954 + <dict> 2955 + <key>Blue Component</key> 2956 + <real>0.89803921568627454</real> 2957 + <key>Green Component</key> 2958 + <integer>0</integer> 2959 + <key>Red Component</key> 2960 + <real>0.89803921568627454</real> 2961 + </dict> 2962 + <key>Ansi 13 Color (Light)</key> 2963 + <dict> 2964 + <key>Blue Component</key> 2965 + <real>0.59607843137254901</real> 2966 + <key>Color Space</key> 2967 + <string>sRGB</string> 2968 + <key>Green Component</key> 2969 + <real>0.4392156862745098</real> 2970 + <key>Red Component</key> 2971 + <real>0.41176470588235292</real> 2972 + </dict> 1433 2973 <key>Ansi 14 Color</key> 1434 2974 <dict> 1435 2975 <key>Alpha Component</key> ··· 1443 2983 <key>Red Component</key> 1444 2984 <integer>0</integer> 1445 2985 </dict> 2986 + <key>Ansi 14 Color (Dark)</key> 2987 + <dict> 2988 + <key>Blue Component</key> 2989 + <real>0.89803921568627454</real> 2990 + <key>Green Component</key> 2991 + <real>0.89803921568627454</real> 2992 + <key>Red Component</key> 2993 + <integer>0</integer> 2994 + </dict> 2995 + <key>Ansi 14 Color (Light)</key> 2996 + <dict> 2997 + <key>Blue Component</key> 2998 + <real>0.56470588235294117</real> 2999 + <key>Color Space</key> 3000 + <string>sRGB</string> 3001 + <key>Green Component</key> 3002 + <real>0.78823529411764703</real> 3003 + <key>Red Component</key> 3004 + <integer>0</integer> 3005 + </dict> 1446 3006 <key>Ansi 15 Color</key> 1447 3007 <dict> 1448 3008 <key>Alpha Component</key> ··· 1456 3016 <key>Red Component</key> 1457 3017 <real>0.92151540517807007</real> 1458 3018 </dict> 3019 + <key>Ansi 15 Color (Dark)</key> 3020 + <dict> 3021 + <key>Blue Component</key> 3022 + <real>0.89803921568627454</real> 3023 + <key>Green Component</key> 3024 + <real>0.89803921568627454</real> 3025 + <key>Red Component</key> 3026 + <real>0.89803921568627454</real> 3027 + </dict> 3028 + <key>Ansi 15 Color (Light)</key> 3029 + <dict> 3030 + <key>Blue Component</key> 3031 + <real>0.69411764705882351</real> 3032 + <key>Color Space</key> 3033 + <string>sRGB</string> 3034 + <key>Green Component</key> 3035 + <real>0.62352941176470589</real> 3036 + <key>Red Component</key> 3037 + <real>0.59607843137254901</real> 3038 + </dict> 1459 3039 <key>Ansi 2 Color</key> 1460 3040 <dict> 1461 3041 <key>Alpha Component</key> ··· 1469 3049 <key>Red Component</key> 1470 3050 <integer>0</integer> 1471 3051 </dict> 3052 + <key>Ansi 2 Color (Dark)</key> 3053 + <dict> 3054 + <key>Blue Component</key> 3055 + <integer>0</integer> 3056 + <key>Green Component</key> 3057 + <real>0.65098039215686276</real> 3058 + <key>Red Component</key> 3059 + <integer>0</integer> 3060 + </dict> 3061 + <key>Ansi 2 Color (Light)</key> 3062 + <dict> 3063 + <key>Blue Component</key> 3064 + <real>0.59607843137254901</real> 3065 + <key>Color Space</key> 3066 + <string>sRGB</string> 3067 + <key>Green Component</key> 3068 + <real>0.63529411764705879</real> 3069 + <key>Red Component</key> 3070 + <real>0.16470588235294117</real> 3071 + </dict> 1472 3072 <key>Ansi 3 Color</key> 1473 3073 <dict> 1474 3074 <key>Alpha Component</key> ··· 1482 3082 <key>Red Component</key> 1483 3083 <real>0.66385143995285034</real> 1484 3084 </dict> 3085 + <key>Ansi 3 Color (Dark)</key> 3086 + <dict> 3087 + <key>Blue Component</key> 3088 + <integer>0</integer> 3089 + <key>Green Component</key> 3090 + <real>0.59999999999999998</real> 3091 + <key>Red Component</key> 3092 + <real>0.59999999999999998</real> 3093 + </dict> 3094 + <key>Ansi 3 Color (Light)</key> 3095 + <dict> 3096 + <key>Blue Component</key> 3097 + <real>0.0039215686274509803</real> 3098 + <key>Color Space</key> 3099 + <string>sRGB</string> 3100 + <key>Green Component</key> 3101 + <real>0.66666666666666663</real> 3102 + <key>Red Component</key> 3103 + <real>0.85490196078431369</real> 3104 + </dict> 1485 3105 <key>Ansi 4 Color</key> 1486 3106 <dict> 1487 3107 <key>Alpha Component</key> ··· 1495 3115 <key>Red Component</key> 1496 3116 <real>0.30479651689529419</real> 1497 3117 </dict> 3118 + <key>Ansi 4 Color (Dark)</key> 3119 + <dict> 3120 + <key>Blue Component</key> 3121 + <real>0.69803921568627447</real> 3122 + <key>Green Component</key> 3123 + <integer>0</integer> 3124 + <key>Red Component</key> 3125 + <integer>0</integer> 3126 + </dict> 3127 + <key>Ansi 4 Color (Light)</key> 3128 + <dict> 3129 + <key>Blue Component</key> 3130 + <real>0.83921568627450982</real> 3131 + <key>Color Space</key> 3132 + <string>sRGB</string> 3133 + <key>Green Component</key> 3134 + <real>0.46274509803921571</real> 3135 + <key>Red Component</key> 3136 + <real>0.28235294117647058</real> 3137 + </dict> 1498 3138 <key>Ansi 5 Color</key> 1499 3139 <dict> 1500 3140 <key>Alpha Component</key> ··· 1508 3148 <key>Red Component</key> 1509 3149 <real>0.75607430934906006</real> 1510 3150 </dict> 3151 + <key>Ansi 5 Color (Dark)</key> 3152 + <dict> 3153 + <key>Blue Component</key> 3154 + <real>0.69803921568627447</real> 3155 + <key>Green Component</key> 3156 + <integer>0</integer> 3157 + <key>Red Component</key> 3158 + <real>0.69803921568627447</real> 3159 + </dict> 3160 + <key>Ansi 5 Color (Light)</key> 3161 + <dict> 3162 + <key>Blue Component</key> 3163 + <real>0.32549019607843138</real> 3164 + <key>Color Space</key> 3165 + <string>sRGB</string> 3166 + <key>Green Component</key> 3167 + <real>0.24705882352941178</real> 3168 + <key>Red Component</key> 3169 + <real>0.25098039215686274</real> 3170 + </dict> 1511 3171 <key>Ansi 6 Color</key> 1512 3172 <dict> 1513 3173 <key>Alpha Component</key> ··· 1521 3181 <key>Red Component</key> 1522 3182 <integer>0</integer> 1523 3183 </dict> 3184 + <key>Ansi 6 Color (Dark)</key> 3185 + <dict> 3186 + <key>Blue Component</key> 3187 + <real>0.69803921568627447</real> 3188 + <key>Green Component</key> 3189 + <real>0.65098039215686276</real> 3190 + <key>Red Component</key> 3191 + <integer>0</integer> 3192 + </dict> 3193 + <key>Ansi 6 Color (Light)</key> 3194 + <dict> 3195 + <key>Blue Component</key> 3196 + <real>0.41568627450980394</real> 3197 + <key>Color Space</key> 3198 + <string>sRGB</string> 3199 + <key>Green Component</key> 3200 + <real>0.56862745098039214</real> 3201 + <key>Red Component</key> 3202 + <real>0.031372549019607843</real> 3203 + </dict> 1524 3204 <key>Ansi 7 Color</key> 1525 3205 <dict> 1526 3206 <key>Alpha Component</key> ··· 1534 3214 <key>Red Component</key> 1535 3215 <real>0.79441660642623901</real> 1536 3216 </dict> 3217 + <key>Ansi 7 Color (Dark)</key> 3218 + <dict> 3219 + <key>Blue Component</key> 3220 + <real>0.74901960784313726</real> 3221 + <key>Green Component</key> 3222 + <real>0.74901960784313726</real> 3223 + <key>Red Component</key> 3224 + <real>0.74901960784313726</real> 3225 + </dict> 3226 + <key>Ansi 7 Color (Light)</key> 3227 + <dict> 3228 + <key>Blue Component</key> 3229 + <real>0.50588235294117645</real> 3230 + <key>Color Space</key> 3231 + <string>sRGB</string> 3232 + <key>Green Component</key> 3233 + <real>0.50588235294117645</real> 3234 + <key>Red Component</key> 3235 + <real>0.47843137254901963</real> 3236 + </dict> 1537 3237 <key>Ansi 8 Color</key> 1538 3238 <dict> 1539 3239 <key>Alpha Component</key> ··· 1547 3247 <key>Red Component</key> 1548 3248 <real>0.47563493251800537</real> 1549 3249 </dict> 3250 + <key>Ansi 8 Color (Dark)</key> 3251 + <dict> 3252 + <key>Blue Component</key> 3253 + <real>0.40000000000000002</real> 3254 + <key>Green Component</key> 3255 + <real>0.40000000000000002</real> 3256 + <key>Red Component</key> 3257 + <real>0.40000000000000002</real> 3258 + </dict> 3259 + <key>Ansi 8 Color (Light)</key> 3260 + <dict> 3261 + <key>Blue Component</key> 3262 + <real>0.50588235294117645</real> 3263 + <key>Color Space</key> 3264 + <string>sRGB</string> 3265 + <key>Green Component</key> 3266 + <real>0.50588235294117645</real> 3267 + <key>Red Component</key> 3268 + <real>0.47843137254901963</real> 3269 + </dict> 1550 3270 <key>Ansi 9 Color</key> 1551 3271 <dict> 1552 3272 <key>Alpha Component</key> ··· 1560 3280 <key>Red Component</key> 1561 3281 <real>0.92504602670669556</real> 1562 3282 </dict> 3283 + <key>Ansi 9 Color (Dark)</key> 3284 + <dict> 3285 + <key>Blue Component</key> 3286 + <integer>0</integer> 3287 + <key>Green Component</key> 3288 + <integer>0</integer> 3289 + <key>Red Component</key> 3290 + <real>0.89803921568627454</real> 3291 + </dict> 3292 + <key>Ansi 9 Color (Light)</key> 3293 + <dict> 3294 + <key>Blue Component</key> 3295 + <real>0.43137254901960786</real> 3296 + <key>Color Space</key> 3297 + <string>sRGB</string> 3298 + <key>Green Component</key> 3299 + <real>0.43137254901960786</real> 3300 + <key>Red Component</key> 3301 + <real>0.96862745098039216</real> 3302 + </dict> 1563 3303 <key>Application Keypad Allowed</key> 1564 3304 <true/> 1565 3305 <key>BM Growl</key> ··· 1573 3313 <key>Red Component</key> 1574 3314 <integer>0</integer> 1575 3315 </dict> 3316 + <key>Background Color (Dark)</key> 3317 + <dict> 3318 + <key>Blue Component</key> 3319 + <integer>0</integer> 3320 + <key>Green Component</key> 3321 + <integer>0</integer> 3322 + <key>Red Component</key> 3323 + <integer>0</integer> 3324 + </dict> 3325 + <key>Background Color (Light)</key> 3326 + <dict> 3327 + <key>Blue Component</key> 3328 + <integer>1</integer> 3329 + <key>Color Space</key> 3330 + <string>sRGB</string> 3331 + <key>Green Component</key> 3332 + <integer>1</integer> 3333 + <key>Red Component</key> 3334 + <integer>1</integer> 3335 + </dict> 1576 3336 <key>Background Image Location</key> 1577 3337 <string></string> 1578 3338 <key>Badge Color</key> ··· 1588 3348 <key>Red Component</key> 1589 3349 <integer>1</integer> 1590 3350 </dict> 3351 + <key>Badge Color (Dark)</key> 3352 + <dict> 3353 + <key>Alpha Component</key> 3354 + <real>0.5</real> 3355 + <key>Blue Component</key> 3356 + <real>0.13960540294647217</real> 3357 + <key>Color Space</key> 3358 + <string>P3</string> 3359 + <key>Green Component</key> 3360 + <real>0.25479039549827576</real> 3361 + <key>Red Component</key> 3362 + <real>0.92929404973983765</real> 3363 + </dict> 3364 + <key>Badge Color (Light)</key> 3365 + <dict> 3366 + <key>Alpha Component</key> 3367 + <real>0.5</real> 3368 + <key>Blue Component</key> 3369 + <real>0.13960540294647217</real> 3370 + <key>Color Space</key> 3371 + <string>P3</string> 3372 + <key>Green Component</key> 3373 + <real>0.25479039549827576</real> 3374 + <key>Red Component</key> 3375 + <real>0.92929404973983765</real> 3376 + </dict> 1591 3377 <key>Badge Font</key> 1592 - <string>MonaspaceKrypton-Bold</string> 3378 + <string>MonaspaceNeon-Bold</string> 1593 3379 <key>Badge Max Height</key> 1594 3380 <real>0.29999999999999999</real> 1595 3381 <key>Badge Max Width</key> ··· 1621 3407 <key>Red Component</key> 1622 3408 <integer>0</integer> 1623 3409 </dict> 3410 + <key>Bold Color (Dark)</key> 3411 + <dict> 3412 + <key>Blue Component</key> 3413 + <integer>0</integer> 3414 + <key>Green Component</key> 3415 + <integer>1</integer> 3416 + <key>Red Component</key> 3417 + <integer>0</integer> 3418 + </dict> 3419 + <key>Bold Color (Light)</key> 3420 + <dict> 3421 + <key>Blue Component</key> 3422 + <real>0.32549019607843138</real> 3423 + <key>Color Space</key> 3424 + <string>sRGB</string> 3425 + <key>Green Component</key> 3426 + <real>0.24705882352941178</real> 3427 + <key>Red Component</key> 3428 + <real>0.25098039215686274</real> 3429 + </dict> 1624 3430 <key>Bound Hosts</key> 1625 3431 <array> 1626 3432 <string>!128t-support-host-jmp</string> ··· 1632 3438 <string>!tp-cond-primary</string> 1633 3439 <string>!tp-cond-secondary</string> 1634 3440 </array> 3441 + <key>Brighten Bold Text (Dark)</key> 3442 + <false/> 3443 + <key>Brighten Bold Text (Light)</key> 3444 + <false/> 1635 3445 <key>Character Encoding</key> 1636 3446 <integer>4</integer> 1637 3447 <key>Close Sessions On End</key> ··· 1640 3450 <integer>80</integer> 1641 3451 <key>Command</key> 1642 3452 <string></string> 3453 + <key>Cursor Boost (Dark)</key> 3454 + <integer>0</integer> 3455 + <key>Cursor Boost (Light)</key> 3456 + <integer>0</integer> 1643 3457 <key>Cursor Color</key> 1644 3458 <dict> 1645 3459 <key>Alpha Component</key> ··· 1653 3467 <key>Red Component</key> 1654 3468 <real>0.27456897497177124</real> 1655 3469 </dict> 3470 + <key>Cursor Color (Dark)</key> 3471 + <dict> 3472 + <key>Blue Component</key> 3473 + <real>0.094117647058823528</real> 3474 + <key>Green Component</key> 3475 + <integer>1</integer> 3476 + <key>Red Component</key> 3477 + <real>0.13725490196078433</real> 3478 + </dict> 3479 + <key>Cursor Color (Light)</key> 3480 + <dict> 3481 + <key>Blue Component</key> 3482 + <real>0.32549019607843138</real> 3483 + <key>Color Space</key> 3484 + <string>sRGB</string> 3485 + <key>Green Component</key> 3486 + <real>0.24705882352941178</real> 3487 + <key>Red Component</key> 3488 + <real>0.25098039215686274</real> 3489 + </dict> 1656 3490 <key>Cursor Guide Color</key> 1657 3491 <dict> 1658 3492 <key>Alpha Component</key> ··· 1666 3500 <key>Red Component</key> 1667 3501 <real>0.70213186740875244</real> 1668 3502 </dict> 3503 + <key>Cursor Guide Color (Dark)</key> 3504 + <dict> 3505 + <key>Alpha Component</key> 3506 + <real>0.25</real> 3507 + <key>Blue Component</key> 3508 + <real>0.99125725030899048</real> 3509 + <key>Color Space</key> 3510 + <string>P3</string> 3511 + <key>Green Component</key> 3512 + <real>0.92047786712646484</real> 3513 + <key>Red Component</key> 3514 + <real>0.7486259937286377</real> 3515 + </dict> 3516 + <key>Cursor Guide Color (Light)</key> 3517 + <dict> 3518 + <key>Alpha Component</key> 3519 + <real>0.25</real> 3520 + <key>Blue Component</key> 3521 + <real>0.99125725030899048</real> 3522 + <key>Color Space</key> 3523 + <string>P3</string> 3524 + <key>Green Component</key> 3525 + <real>0.92047786712646484</real> 3526 + <key>Red Component</key> 3527 + <real>0.7486259937286377</real> 3528 + </dict> 1669 3529 <key>Cursor Text Color</key> 1670 3530 <dict> 1671 3531 <key>Blue Component</key> ··· 1675 3535 <key>Red Component</key> 1676 3536 <integer>1</integer> 1677 3537 </dict> 3538 + <key>Cursor Text Color (Dark)</key> 3539 + <dict> 3540 + <key>Blue Component</key> 3541 + <real>0.0940093994140625</real> 3542 + <key>Green Component</key> 3543 + <integer>0</integer> 3544 + <key>Red Component</key> 3545 + <integer>1</integer> 3546 + </dict> 3547 + <key>Cursor Text Color (Light)</key> 3548 + <dict> 3549 + <key>Blue Component</key> 3550 + <real>0.98431372549019602</real> 3551 + <key>Color Space</key> 3552 + <string>sRGB</string> 3553 + <key>Green Component</key> 3554 + <real>0.98431372549019602</real> 3555 + <key>Red Component</key> 3556 + <real>0.98431372549019602</real> 3557 + </dict> 1678 3558 <key>Custom Command</key> 1679 3559 <string>No</string> 1680 3560 <key>Custom Directory</key> ··· 1689 3569 <true/> 1690 3570 <key>Dynamic Profile Filename</key> 1691 3571 <string>/Users/ichamberlain/.config/iterm2/profiles/Production.json</string> 3572 + <key>Faint Text Alpha (Dark)</key> 3573 + <real>0.5</real> 3574 + <key>Faint Text Alpha (Light)</key> 3575 + <real>0.5</real> 1692 3576 <key>Flashing Bell</key> 1693 3577 <true/> 1694 3578 <key>Foreground Color</key> ··· 1703 3587 <integer>1</integer> 1704 3588 <key>Red Component</key> 1705 3589 <real>0.19607843458652496</real> 3590 + </dict> 3591 + <key>Foreground Color (Dark)</key> 3592 + <dict> 3593 + <key>Blue Component</key> 3594 + <integer>0</integer> 3595 + <key>Green Component</key> 3596 + <integer>1</integer> 3597 + <key>Red Component</key> 3598 + <integer>0</integer> 3599 + </dict> 3600 + <key>Foreground Color (Light)</key> 3601 + <dict> 3602 + <key>Blue Component</key> 3603 + <real>0.32549019607843138</real> 3604 + <key>Color Space</key> 3605 + <string>sRGB</string> 3606 + <key>Green Component</key> 3607 + <real>0.24705882352941178</real> 3608 + <key>Red Component</key> 3609 + <real>0.25098039215686274</real> 1706 3610 </dict> 1707 3611 <key>Guid</key> 1708 3612 <string>B976845B-577C-4535-B6EC-FB73B8469926</string> ··· 1856 3760 <key>Text</key> 1857 3761 <string>0x1B 0x08</string> 1858 3762 </dict> 3763 + <key>0xd-0x80000-0x24</key> 3764 + <dict> 3765 + <key>Action</key> 3766 + <integer>10</integer> 3767 + <key>Label</key> 3768 + <string></string> 3769 + <key>Text</key> 3770 + <string> 3771 + </string> 3772 + <key>Version</key> 3773 + <integer>1</integer> 3774 + </dict> 1859 3775 <key>0xf702-0x280000</key> 1860 3776 <dict> 1861 3777 <key>Action</key> ··· 1884 3800 <key>Text</key> 1885 3801 <string>[F</string> 1886 3802 </dict> 1887 - <key>0xf728-0x100000-0x75</key> 1888 - <dict> 1889 - <key>Action</key> 1890 - <integer>11</integer> 1891 - <key>Apply Mode</key> 1892 - <integer>0</integer> 1893 - <key>Escaping</key> 1894 - <integer>2</integer> 1895 - <key>Text</key> 1896 - <string>0B</string> 1897 - <key>Version</key> 1898 - <integer>2</integer> 1899 - </dict> 1900 3803 <key>0xf728-0x80000</key> 1901 3804 <dict> 1902 3805 <key>Action</key> ··· 1925 3828 <key>Red Component</key> 1926 3829 <integer>0</integer> 1927 3830 </dict> 3831 + <key>Link Color (Dark)</key> 3832 + <dict> 3833 + <key>Alpha Component</key> 3834 + <integer>1</integer> 3835 + <key>Blue Component</key> 3836 + <real>0.70932406187057495</real> 3837 + <key>Color Space</key> 3838 + <string>P3</string> 3839 + <key>Green Component</key> 3840 + <real>0.35333043336868286</real> 3841 + <key>Red Component</key> 3842 + <real>0.1451396644115448</real> 3843 + </dict> 3844 + <key>Link Color (Light)</key> 3845 + <dict> 3846 + <key>Alpha Component</key> 3847 + <integer>1</integer> 3848 + <key>Blue Component</key> 3849 + <real>0.70932406187057495</real> 3850 + <key>Color Space</key> 3851 + <string>P3</string> 3852 + <key>Green Component</key> 3853 + <real>0.35333043336868286</real> 3854 + <key>Red Component</key> 3855 + <real>0.1451396644115448</real> 3856 + </dict> 3857 + <key>Match Background Color</key> 3858 + <dict> 3859 + <key>Alpha Component</key> 3860 + <integer>1</integer> 3861 + <key>Blue Component</key> 3862 + <integer>0</integer> 3863 + <key>Color Space</key> 3864 + <string>P3</string> 3865 + <key>Green Component</key> 3866 + <integer>1</integer> 3867 + <key>Red Component</key> 3868 + <integer>1</integer> 3869 + </dict> 3870 + <key>Match Background Color (Dark)</key> 3871 + <dict> 3872 + <key>Alpha Component</key> 3873 + <integer>1</integer> 3874 + <key>Blue Component</key> 3875 + <integer>0</integer> 3876 + <key>Color Space</key> 3877 + <string>P3</string> 3878 + <key>Green Component</key> 3879 + <integer>1</integer> 3880 + <key>Red Component</key> 3881 + <integer>1</integer> 3882 + </dict> 3883 + <key>Match Background Color (Light)</key> 3884 + <dict> 3885 + <key>Alpha Component</key> 3886 + <integer>1</integer> 3887 + <key>Blue Component</key> 3888 + <integer>0</integer> 3889 + <key>Color Space</key> 3890 + <string>P3</string> 3891 + <key>Green Component</key> 3892 + <integer>1</integer> 3893 + <key>Red Component</key> 3894 + <integer>1</integer> 3895 + </dict> 1928 3896 <key>Minimum Contrast</key> 1929 3897 <integer>0</integer> 3898 + <key>Minimum Contrast (Dark)</key> 3899 + <integer>0</integer> 3900 + <key>Minimum Contrast (Light)</key> 3901 + <integer>0</integer> 1930 3902 <key>Mouse Reporting</key> 1931 3903 <true/> 1932 3904 <key>Name</key> ··· 1936 3908 <key>Non-ASCII Anti Aliased</key> 1937 3909 <true/> 1938 3910 <key>Normal Font</key> 1939 - <string>MonaspaceArgon-Regular 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 3911 + <string>MonaspaceArgonVar-Medium 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 1940 3912 <key>Only The Default BG Color Uses Transparency</key> 1941 3913 <false/> 1942 3914 <key>Open Toolbelt</key> ··· 1968 3940 <key>Red Component</key> 1969 3941 <real>0.47127401828765869</real> 1970 3942 </dict> 3943 + <key>Selected Text Color (Dark)</key> 3944 + <dict> 3945 + <key>Blue Component</key> 3946 + <integer>1</integer> 3947 + <key>Green Component</key> 3948 + <integer>1</integer> 3949 + <key>Red Component</key> 3950 + <integer>1</integer> 3951 + </dict> 3952 + <key>Selected Text Color (Light)</key> 3953 + <dict> 3954 + <key>Blue Component</key> 3955 + <real>0.32549019607843138</real> 3956 + <key>Color Space</key> 3957 + <string>sRGB</string> 3958 + <key>Green Component</key> 3959 + <real>0.24705882352941178</real> 3960 + <key>Red Component</key> 3961 + <real>0.25098039215686274</real> 3962 + </dict> 1971 3963 <key>Selection Color</key> 1972 3964 <dict> 1973 3965 <key>Alpha Component</key> ··· 1981 3973 <key>Red Component</key> 1982 3974 <real>0.053524382412433603</real> 1983 3975 </dict> 3976 + <key>Selection Color (Dark)</key> 3977 + <dict> 3978 + <key>Blue Component</key> 3979 + <real>0.019607843137254902</real> 3980 + <key>Green Component</key> 3981 + <real>0.22352941176470587</real> 3982 + <key>Red Component</key> 3983 + <real>0.031372549019607843</real> 3984 + </dict> 3985 + <key>Selection Color (Light)</key> 3986 + <dict> 3987 + <key>Blue Component</key> 3988 + <real>0.94999999999999996</real> 3989 + <key>Color Space</key> 3990 + <string>sRGB</string> 3991 + <key>Green Component</key> 3992 + <real>0.94999999999999996</real> 3993 + <key>Red Component</key> 3994 + <real>0.94999999999999996</real> 3995 + </dict> 1984 3996 <key>Semantic History</key> 1985 3997 <dict> 1986 3998 <key>action</key> ··· 2006 4018 <true/> 2007 4019 <key>Silence Bell</key> 2008 4020 <false/> 4021 + <key>Smart Cursor Color (Dark)</key> 4022 + <false/> 4023 + <key>Smart Cursor Color (Light)</key> 4024 + <false/> 2009 4025 <key>Space</key> 2010 4026 <integer>0</integer> 2011 4027 <key>Status Bar Layout</key> ··· 2015 4031 <key>algorithm</key> 2016 4032 <integer>0</integer> 2017 4033 <key>font</key> 2018 - <string>MonaspaceArgonVar-Medium 12</string> 4034 + <string>MonaspaceArgon-Regular 11</string> 2019 4035 </dict> 2020 4036 <key>components</key> 2021 4037 <array> ··· 2053 4069 <key>algorithm</key> 2054 4070 <integer>0</integer> 2055 4071 <key>font</key> 2056 - <string>MonaspaceArgonVar-Medium 12</string> 4072 + <string>MonaspaceArgon-Regular 11</string> 2057 4073 </dict> 2058 4074 </dict> 2059 4075 </dict> ··· 2093 4109 <key>algorithm</key> 2094 4110 <integer>0</integer> 2095 4111 <key>font</key> 2096 - <string>MonaspaceArgonVar-Medium 12</string> 4112 + <string>MonaspaceArgon-Regular 11</string> 2097 4113 </dict> 2098 4114 </dict> 2099 4115 </dict> ··· 2133 4149 <key>algorithm</key> 2134 4150 <integer>0</integer> 2135 4151 <key>font</key> 2136 - <string>MonaspaceArgonVar-Medium 12</string> 4152 + <string>MonaspaceArgon-Regular 11</string> 2137 4153 </dict> 2138 4154 </dict> 2139 4155 </dict> ··· 2167 4183 <key>algorithm</key> 2168 4184 <integer>0</integer> 2169 4185 <key>font</key> 2170 - <string>MonaspaceArgonVar-Medium 12</string> 4186 + <string>MonaspaceArgon-Regular 11</string> 2171 4187 </dict> 2172 4188 </dict> 2173 4189 </dict> ··· 2201 4217 <key>algorithm</key> 2202 4218 <integer>0</integer> 2203 4219 <key>font</key> 2204 - <string>MonaspaceArgonVar-Medium 12</string> 4220 + <string>MonaspaceArgon-Regular 11</string> 2205 4221 </dict> 2206 4222 </dict> 2207 4223 </dict> ··· 2216 4232 <key>Terminal Type</key> 2217 4233 <string>xterm-256color-italic</string> 2218 4234 <key>Thin Strokes</key> 2219 - <integer>0</integer> 4235 + <integer>4</integer> 2220 4236 <key>Transparency</key> 2221 4237 <integer>0</integer> 2222 4238 <key>Triggers</key> ··· 2250 4266 <true/> 2251 4267 <key>Use Bright Bold</key> 2252 4268 <false/> 4269 + <key>Use Bright Bold (Dark)</key> 4270 + <false/> 4271 + <key>Use Bright Bold (Light)</key> 4272 + <false/> 4273 + <key>Use Cursor Guide (Dark)</key> 4274 + <false/> 4275 + <key>Use Cursor Guide (Light)</key> 4276 + <false/> 2253 4277 <key>Use Italic Font</key> 2254 4278 <true/> 2255 4279 <key>Use Non-ASCII Font</key> 2256 4280 <false/> 4281 + <key>Use Selected Text Color (Dark)</key> 4282 + <true/> 4283 + <key>Use Selected Text Color (Light)</key> 4284 + <true/> 4285 + <key>Use Separate Colors for Light and Dark Mode</key> 4286 + <true/> 2257 4287 <key>Use Tab Color</key> 2258 4288 <false/> 4289 + <key>Use Tab Color (Dark)</key> 4290 + <false/> 4291 + <key>Use Tab Color (Light)</key> 4292 + <false/> 2259 4293 <key>Use Underline Color</key> 4294 + <false/> 4295 + <key>Use Underline Color (Dark)</key> 4296 + <false/> 4297 + <key>Use Underline Color (Light)</key> 2260 4298 <false/> 2261 4299 <key>Vertical Spacing</key> 2262 4300 <integer>1</integer> ··· 2271 4309 <key>ASCII Anti Aliased</key> 2272 4310 <true/> 2273 4311 <key>ASCII Ligatures</key> 2274 - <false/> 4312 + <true/> 2275 4313 <key>AWDS Pane Directory</key> 2276 4314 <string></string> 2277 4315 <key>AWDS Pane Option</key> ··· 2301 4339 <key>Red Component</key> 2302 4340 <integer>0</integer> 2303 4341 </dict> 4342 + <key>Ansi 0 Color (Dark)</key> 4343 + <dict> 4344 + <key>Blue Component</key> 4345 + <integer>0</integer> 4346 + <key>Green Component</key> 4347 + <integer>0</integer> 4348 + <key>Red Component</key> 4349 + <integer>0</integer> 4350 + </dict> 4351 + <key>Ansi 0 Color (Light)</key> 4352 + <dict> 4353 + <key>Blue Component</key> 4354 + <real>0.15294117647058825</real> 4355 + <key>Color Space</key> 4356 + <string>sRGB</string> 4357 + <key>Green Component</key> 4358 + <real>0.086274509803921567</real> 4359 + <key>Red Component</key> 4360 + <real>0.0039215686274509803</real> 4361 + </dict> 2304 4362 <key>Ansi 1 Color</key> 2305 4363 <dict> 2306 4364 <key>Alpha Component</key> ··· 2314 4372 <key>Red Component</key> 2315 4373 <real>0.66812098026275635</real> 2316 4374 </dict> 4375 + <key>Ansi 1 Color (Dark)</key> 4376 + <dict> 4377 + <key>Blue Component</key> 4378 + <integer>0</integer> 4379 + <key>Green Component</key> 4380 + <integer>0</integer> 4381 + <key>Red Component</key> 4382 + <real>0.59999999999999998</real> 4383 + </dict> 4384 + <key>Ansi 1 Color (Light)</key> 4385 + <dict> 4386 + <key>Blue Component</key> 4387 + <real>0.24313725490196078</real> 4388 + <key>Color Space</key> 4389 + <string>sRGB</string> 4390 + <key>Green Component</key> 4391 + <real>0.25882352941176473</real> 4392 + <key>Red Component</key> 4393 + <real>0.82745098039215681</real> 4394 + </dict> 2317 4395 <key>Ansi 10 Color</key> 2318 4396 <dict> 2319 4397 <key>Alpha Component</key> ··· 2327 4405 <key>Red Component</key> 2328 4406 <integer>0</integer> 2329 4407 </dict> 4408 + <key>Ansi 10 Color (Dark)</key> 4409 + <dict> 4410 + <key>Blue Component</key> 4411 + <integer>0</integer> 4412 + <key>Green Component</key> 4413 + <real>0.85098039215686272</real> 4414 + <key>Red Component</key> 4415 + <integer>0</integer> 4416 + </dict> 4417 + <key>Ansi 10 Color (Light)</key> 4418 + <dict> 4419 + <key>Blue Component</key> 4420 + <real>0.77254901960784317</real> 4421 + <key>Color Space</key> 4422 + <string>sRGB</string> 4423 + <key>Green Component</key> 4424 + <real>0.81568627450980391</real> 4425 + <key>Red Component</key> 4426 + <real>0.28627450980392155</real> 4427 + </dict> 2330 4428 <key>Ansi 11 Color</key> 2331 4429 <dict> 2332 4430 <key>Alpha Component</key> ··· 2340 4438 <key>Red Component</key> 2341 4439 <real>0.91766214370727539</real> 2342 4440 </dict> 4441 + <key>Ansi 11 Color (Dark)</key> 4442 + <dict> 4443 + <key>Blue Component</key> 4444 + <integer>0</integer> 4445 + <key>Green Component</key> 4446 + <real>0.89803921568627454</real> 4447 + <key>Red Component</key> 4448 + <real>0.89803921568627454</real> 4449 + </dict> 4450 + <key>Ansi 11 Color (Light)</key> 4451 + <dict> 4452 + <key>Blue Component</key> 4453 + <real>0.41960784313725491</real> 4454 + <key>Color Space</key> 4455 + <string>sRGB</string> 4456 + <key>Green Component</key> 4457 + <real>0.76078431372549016</real> 4458 + <key>Red Component</key> 4459 + <real>0.85490196078431369</real> 4460 + </dict> 2343 4461 <key>Ansi 12 Color</key> 2344 4462 <dict> 2345 4463 <key>Alpha Component</key> ··· 2353 4471 <key>Red Component</key> 2354 4472 <real>0.52499485015869141</real> 2355 4473 </dict> 4474 + <key>Ansi 12 Color (Dark)</key> 4475 + <dict> 4476 + <key>Blue Component</key> 4477 + <integer>1</integer> 4478 + <key>Green Component</key> 4479 + <integer>0</integer> 4480 + <key>Red Component</key> 4481 + <integer>0</integer> 4482 + </dict> 4483 + <key>Ansi 12 Color (Light)</key> 4484 + <dict> 4485 + <key>Blue Component</key> 4486 + <real>0.89411764705882357</real> 4487 + <key>Color Space</key> 4488 + <string>sRGB</string> 4489 + <key>Green Component</key> 4490 + <real>0.65490196078431373</real> 4491 + <key>Red Component</key> 4492 + <real>0.36078431372549019</real> 4493 + </dict> 2356 4494 <key>Ansi 13 Color</key> 2357 4495 <dict> 2358 4496 <key>Alpha Component</key> ··· 2366 4504 <key>Red Component</key> 2367 4505 <real>0.92568391561508179</real> 2368 4506 </dict> 4507 + <key>Ansi 13 Color (Dark)</key> 4508 + <dict> 4509 + <key>Blue Component</key> 4510 + <real>0.89803921568627454</real> 4511 + <key>Green Component</key> 4512 + <integer>0</integer> 4513 + <key>Red Component</key> 4514 + <real>0.89803921568627454</real> 4515 + </dict> 4516 + <key>Ansi 13 Color (Light)</key> 4517 + <dict> 4518 + <key>Blue Component</key> 4519 + <real>0.59607843137254901</real> 4520 + <key>Color Space</key> 4521 + <string>sRGB</string> 4522 + <key>Green Component</key> 4523 + <real>0.4392156862745098</real> 4524 + <key>Red Component</key> 4525 + <real>0.41176470588235292</real> 4526 + </dict> 2369 4527 <key>Ansi 14 Color</key> 2370 4528 <dict> 2371 4529 <key>Alpha Component</key> ··· 2379 4537 <key>Red Component</key> 2380 4538 <integer>0</integer> 2381 4539 </dict> 4540 + <key>Ansi 14 Color (Dark)</key> 4541 + <dict> 4542 + <key>Blue Component</key> 4543 + <real>0.89803921568627454</real> 4544 + <key>Green Component</key> 4545 + <real>0.89803921568627454</real> 4546 + <key>Red Component</key> 4547 + <integer>0</integer> 4548 + </dict> 4549 + <key>Ansi 14 Color (Light)</key> 4550 + <dict> 4551 + <key>Blue Component</key> 4552 + <real>0.56470588235294117</real> 4553 + <key>Color Space</key> 4554 + <string>sRGB</string> 4555 + <key>Green Component</key> 4556 + <real>0.78823529411764703</real> 4557 + <key>Red Component</key> 4558 + <integer>0</integer> 4559 + </dict> 2382 4560 <key>Ansi 15 Color</key> 2383 4561 <dict> 2384 4562 <key>Alpha Component</key> ··· 2392 4570 <key>Red Component</key> 2393 4571 <real>0.92151540517807007</real> 2394 4572 </dict> 4573 + <key>Ansi 15 Color (Dark)</key> 4574 + <dict> 4575 + <key>Blue Component</key> 4576 + <real>0.89803921568627454</real> 4577 + <key>Green Component</key> 4578 + <real>0.89803921568627454</real> 4579 + <key>Red Component</key> 4580 + <real>0.89803921568627454</real> 4581 + </dict> 4582 + <key>Ansi 15 Color (Light)</key> 4583 + <dict> 4584 + <key>Blue Component</key> 4585 + <real>0.69411764705882351</real> 4586 + <key>Color Space</key> 4587 + <string>sRGB</string> 4588 + <key>Green Component</key> 4589 + <real>0.62352941176470589</real> 4590 + <key>Red Component</key> 4591 + <real>0.59607843137254901</real> 4592 + </dict> 2395 4593 <key>Ansi 2 Color</key> 2396 4594 <dict> 2397 4595 <key>Alpha Component</key> ··· 2405 4603 <key>Red Component</key> 2406 4604 <integer>0</integer> 2407 4605 </dict> 4606 + <key>Ansi 2 Color (Dark)</key> 4607 + <dict> 4608 + <key>Blue Component</key> 4609 + <integer>0</integer> 4610 + <key>Green Component</key> 4611 + <real>0.65098039215686276</real> 4612 + <key>Red Component</key> 4613 + <integer>0</integer> 4614 + </dict> 4615 + <key>Ansi 2 Color (Light)</key> 4616 + <dict> 4617 + <key>Blue Component</key> 4618 + <real>0.59607843137254901</real> 4619 + <key>Color Space</key> 4620 + <string>sRGB</string> 4621 + <key>Green Component</key> 4622 + <real>0.63529411764705879</real> 4623 + <key>Red Component</key> 4624 + <real>0.16470588235294117</real> 4625 + </dict> 2408 4626 <key>Ansi 3 Color</key> 2409 4627 <dict> 2410 4628 <key>Alpha Component</key> ··· 2418 4636 <key>Red Component</key> 2419 4637 <real>0.66385143995285034</real> 2420 4638 </dict> 4639 + <key>Ansi 3 Color (Dark)</key> 4640 + <dict> 4641 + <key>Blue Component</key> 4642 + <integer>0</integer> 4643 + <key>Green Component</key> 4644 + <real>0.59999999999999998</real> 4645 + <key>Red Component</key> 4646 + <real>0.59999999999999998</real> 4647 + </dict> 4648 + <key>Ansi 3 Color (Light)</key> 4649 + <dict> 4650 + <key>Blue Component</key> 4651 + <real>0.0039215686274509803</real> 4652 + <key>Color Space</key> 4653 + <string>sRGB</string> 4654 + <key>Green Component</key> 4655 + <real>0.66666666666666663</real> 4656 + <key>Red Component</key> 4657 + <real>0.85490196078431369</real> 4658 + </dict> 2421 4659 <key>Ansi 4 Color</key> 2422 4660 <dict> 2423 4661 <key>Alpha Component</key> ··· 2431 4669 <key>Red Component</key> 2432 4670 <real>0.30479651689529419</real> 2433 4671 </dict> 4672 + <key>Ansi 4 Color (Dark)</key> 4673 + <dict> 4674 + <key>Blue Component</key> 4675 + <real>0.69803921568627447</real> 4676 + <key>Green Component</key> 4677 + <integer>0</integer> 4678 + <key>Red Component</key> 4679 + <integer>0</integer> 4680 + </dict> 4681 + <key>Ansi 4 Color (Light)</key> 4682 + <dict> 4683 + <key>Blue Component</key> 4684 + <real>0.83921568627450982</real> 4685 + <key>Color Space</key> 4686 + <string>sRGB</string> 4687 + <key>Green Component</key> 4688 + <real>0.46274509803921571</real> 4689 + <key>Red Component</key> 4690 + <real>0.28235294117647058</real> 4691 + </dict> 2434 4692 <key>Ansi 5 Color</key> 2435 4693 <dict> 2436 4694 <key>Alpha Component</key> ··· 2444 4702 <key>Red Component</key> 2445 4703 <real>0.75607430934906006</real> 2446 4704 </dict> 4705 + <key>Ansi 5 Color (Dark)</key> 4706 + <dict> 4707 + <key>Blue Component</key> 4708 + <real>0.69803921568627447</real> 4709 + <key>Green Component</key> 4710 + <integer>0</integer> 4711 + <key>Red Component</key> 4712 + <real>0.69803921568627447</real> 4713 + </dict> 4714 + <key>Ansi 5 Color (Light)</key> 4715 + <dict> 4716 + <key>Blue Component</key> 4717 + <real>0.32549019607843138</real> 4718 + <key>Color Space</key> 4719 + <string>sRGB</string> 4720 + <key>Green Component</key> 4721 + <real>0.24705882352941178</real> 4722 + <key>Red Component</key> 4723 + <real>0.25098039215686274</real> 4724 + </dict> 2447 4725 <key>Ansi 6 Color</key> 2448 4726 <dict> 2449 4727 <key>Alpha Component</key> ··· 2457 4735 <key>Red Component</key> 2458 4736 <integer>0</integer> 2459 4737 </dict> 4738 + <key>Ansi 6 Color (Dark)</key> 4739 + <dict> 4740 + <key>Blue Component</key> 4741 + <real>0.69803921568627447</real> 4742 + <key>Green Component</key> 4743 + <real>0.65098039215686276</real> 4744 + <key>Red Component</key> 4745 + <integer>0</integer> 4746 + </dict> 4747 + <key>Ansi 6 Color (Light)</key> 4748 + <dict> 4749 + <key>Blue Component</key> 4750 + <real>0.41568627450980394</real> 4751 + <key>Color Space</key> 4752 + <string>sRGB</string> 4753 + <key>Green Component</key> 4754 + <real>0.56862745098039214</real> 4755 + <key>Red Component</key> 4756 + <real>0.031372549019607843</real> 4757 + </dict> 2460 4758 <key>Ansi 7 Color</key> 2461 4759 <dict> 2462 4760 <key>Alpha Component</key> ··· 2470 4768 <key>Red Component</key> 2471 4769 <real>0.79441660642623901</real> 2472 4770 </dict> 4771 + <key>Ansi 7 Color (Dark)</key> 4772 + <dict> 4773 + <key>Blue Component</key> 4774 + <real>0.74901960784313726</real> 4775 + <key>Green Component</key> 4776 + <real>0.74901960784313726</real> 4777 + <key>Red Component</key> 4778 + <real>0.74901960784313726</real> 4779 + </dict> 4780 + <key>Ansi 7 Color (Light)</key> 4781 + <dict> 4782 + <key>Blue Component</key> 4783 + <real>0.50588235294117645</real> 4784 + <key>Color Space</key> 4785 + <string>sRGB</string> 4786 + <key>Green Component</key> 4787 + <real>0.50588235294117645</real> 4788 + <key>Red Component</key> 4789 + <real>0.47843137254901963</real> 4790 + </dict> 2473 4791 <key>Ansi 8 Color</key> 2474 4792 <dict> 2475 4793 <key>Alpha Component</key> ··· 2483 4801 <key>Red Component</key> 2484 4802 <real>0.47563493251800537</real> 2485 4803 </dict> 4804 + <key>Ansi 8 Color (Dark)</key> 4805 + <dict> 4806 + <key>Blue Component</key> 4807 + <real>0.40000000000000002</real> 4808 + <key>Green Component</key> 4809 + <real>0.40000000000000002</real> 4810 + <key>Red Component</key> 4811 + <real>0.40000000000000002</real> 4812 + </dict> 4813 + <key>Ansi 8 Color (Light)</key> 4814 + <dict> 4815 + <key>Blue Component</key> 4816 + <real>0.50588235294117645</real> 4817 + <key>Color Space</key> 4818 + <string>sRGB</string> 4819 + <key>Green Component</key> 4820 + <real>0.50588235294117645</real> 4821 + <key>Red Component</key> 4822 + <real>0.47843137254901963</real> 4823 + </dict> 2486 4824 <key>Ansi 9 Color</key> 2487 4825 <dict> 2488 4826 <key>Alpha Component</key> ··· 2496 4834 <key>Red Component</key> 2497 4835 <real>0.92504602670669556</real> 2498 4836 </dict> 4837 + <key>Ansi 9 Color (Dark)</key> 4838 + <dict> 4839 + <key>Blue Component</key> 4840 + <integer>0</integer> 4841 + <key>Green Component</key> 4842 + <integer>0</integer> 4843 + <key>Red Component</key> 4844 + <real>0.89803921568627454</real> 4845 + </dict> 4846 + <key>Ansi 9 Color (Light)</key> 4847 + <dict> 4848 + <key>Blue Component</key> 4849 + <real>0.43137254901960786</real> 4850 + <key>Color Space</key> 4851 + <string>sRGB</string> 4852 + <key>Green Component</key> 4853 + <real>0.43137254901960786</real> 4854 + <key>Red Component</key> 4855 + <real>0.96862745098039216</real> 4856 + </dict> 2499 4857 <key>Application Keypad Allowed</key> 2500 4858 <true/> 2501 4859 <key>BM Growl</key> ··· 2509 4867 <key>Red Component</key> 2510 4868 <integer>0</integer> 2511 4869 </dict> 4870 + <key>Background Color (Dark)</key> 4871 + <dict> 4872 + <key>Blue Component</key> 4873 + <integer>0</integer> 4874 + <key>Green Component</key> 4875 + <integer>0</integer> 4876 + <key>Red Component</key> 4877 + <integer>0</integer> 4878 + </dict> 4879 + <key>Background Color (Light)</key> 4880 + <dict> 4881 + <key>Blue Component</key> 4882 + <integer>1</integer> 4883 + <key>Color Space</key> 4884 + <string>sRGB</string> 4885 + <key>Green Component</key> 4886 + <integer>1</integer> 4887 + <key>Red Component</key> 4888 + <integer>1</integer> 4889 + </dict> 2512 4890 <key>Background Image Location</key> 2513 4891 <string></string> 2514 4892 <key>Badge Color</key> ··· 2524 4902 <key>Red Component</key> 2525 4903 <integer>1</integer> 2526 4904 </dict> 4905 + <key>Badge Color (Dark)</key> 4906 + <dict> 4907 + <key>Alpha Component</key> 4908 + <real>0.5</real> 4909 + <key>Blue Component</key> 4910 + <real>0.13960540294647217</real> 4911 + <key>Color Space</key> 4912 + <string>P3</string> 4913 + <key>Green Component</key> 4914 + <real>0.25479039549827576</real> 4915 + <key>Red Component</key> 4916 + <real>0.92929404973983765</real> 4917 + </dict> 4918 + <key>Badge Color (Light)</key> 4919 + <dict> 4920 + <key>Alpha Component</key> 4921 + <real>0.5</real> 4922 + <key>Blue Component</key> 4923 + <real>0.13960540294647217</real> 4924 + <key>Color Space</key> 4925 + <string>P3</string> 4926 + <key>Green Component</key> 4927 + <real>0.25479039549827576</real> 4928 + <key>Red Component</key> 4929 + <real>0.92929404973983765</real> 4930 + </dict> 2527 4931 <key>Badge Font</key> 2528 - <string>MonaspaceKrypton-Bold</string> 4932 + <string>MonaspaceNeon-Bold</string> 2529 4933 <key>Badge Max Height</key> 2530 4934 <real>0.29999999999999999</real> 2531 4935 <key>Badge Max Width</key> ··· 2533 4937 <key>Badge Right Margin</key> 2534 4938 <integer>30</integer> 2535 4939 <key>Badge Text</key> 2536 - <string></string> 4940 + <string>PROD</string> 2537 4941 <key>Badge Top Margin</key> 2538 4942 <integer>0</integer> 2539 4943 <key>Blink Allowed</key> ··· 2557 4961 <key>Red Component</key> 2558 4962 <integer>0</integer> 2559 4963 </dict> 4964 + <key>Bold Color (Dark)</key> 4965 + <dict> 4966 + <key>Blue Component</key> 4967 + <integer>0</integer> 4968 + <key>Green Component</key> 4969 + <integer>1</integer> 4970 + <key>Red Component</key> 4971 + <integer>0</integer> 4972 + </dict> 4973 + <key>Bold Color (Light)</key> 4974 + <dict> 4975 + <key>Blue Component</key> 4976 + <real>0.32549019607843138</real> 4977 + <key>Color Space</key> 4978 + <string>sRGB</string> 4979 + <key>Green Component</key> 4980 + <real>0.24705882352941178</real> 4981 + <key>Red Component</key> 4982 + <real>0.25098039215686274</real> 4983 + </dict> 2560 4984 <key>Bound Hosts</key> 2561 4985 <array/> 4986 + <key>Brighten Bold Text (Dark)</key> 4987 + <false/> 4988 + <key>Brighten Bold Text (Light)</key> 4989 + <false/> 2562 4990 <key>Character Encoding</key> 2563 4991 <integer>4</integer> 2564 4992 <key>Close Sessions On End</key> ··· 2567 4995 <integer>80</integer> 2568 4996 <key>Command</key> 2569 4997 <string>/usr/local/bin/fish -liC 'ssh $$USER$$@$$HOST$$'</string> 4998 + <key>Cursor Boost (Dark)</key> 4999 + <integer>0</integer> 5000 + <key>Cursor Boost (Light)</key> 5001 + <integer>0</integer> 2570 5002 <key>Cursor Color</key> 2571 5003 <dict> 2572 5004 <key>Alpha Component</key> ··· 2580 5012 <key>Red Component</key> 2581 5013 <real>0.27456897497177124</real> 2582 5014 </dict> 5015 + <key>Cursor Color (Dark)</key> 5016 + <dict> 5017 + <key>Blue Component</key> 5018 + <real>0.094117647058823528</real> 5019 + <key>Green Component</key> 5020 + <integer>1</integer> 5021 + <key>Red Component</key> 5022 + <real>0.13725490196078433</real> 5023 + </dict> 5024 + <key>Cursor Color (Light)</key> 5025 + <dict> 5026 + <key>Blue Component</key> 5027 + <real>0.32549019607843138</real> 5028 + <key>Color Space</key> 5029 + <string>sRGB</string> 5030 + <key>Green Component</key> 5031 + <real>0.24705882352941178</real> 5032 + <key>Red Component</key> 5033 + <real>0.25098039215686274</real> 5034 + </dict> 2583 5035 <key>Cursor Guide Color</key> 2584 5036 <dict> 2585 5037 <key>Alpha Component</key> ··· 2593 5045 <key>Red Component</key> 2594 5046 <real>0.70213186740875244</real> 2595 5047 </dict> 5048 + <key>Cursor Guide Color (Dark)</key> 5049 + <dict> 5050 + <key>Alpha Component</key> 5051 + <real>0.25</real> 5052 + <key>Blue Component</key> 5053 + <real>0.99125725030899048</real> 5054 + <key>Color Space</key> 5055 + <string>P3</string> 5056 + <key>Green Component</key> 5057 + <real>0.92047786712646484</real> 5058 + <key>Red Component</key> 5059 + <real>0.7486259937286377</real> 5060 + </dict> 5061 + <key>Cursor Guide Color (Light)</key> 5062 + <dict> 5063 + <key>Alpha Component</key> 5064 + <real>0.25</real> 5065 + <key>Blue Component</key> 5066 + <real>0.99125725030899048</real> 5067 + <key>Color Space</key> 5068 + <string>P3</string> 5069 + <key>Green Component</key> 5070 + <real>0.92047786712646484</real> 5071 + <key>Red Component</key> 5072 + <real>0.7486259937286377</real> 5073 + </dict> 2596 5074 <key>Cursor Text Color</key> 2597 5075 <dict> 2598 5076 <key>Blue Component</key> ··· 2602 5080 <key>Red Component</key> 2603 5081 <integer>1</integer> 2604 5082 </dict> 5083 + <key>Cursor Text Color (Dark)</key> 5084 + <dict> 5085 + <key>Blue Component</key> 5086 + <real>0.0940093994140625</real> 5087 + <key>Green Component</key> 5088 + <integer>0</integer> 5089 + <key>Red Component</key> 5090 + <integer>1</integer> 5091 + </dict> 5092 + <key>Cursor Text Color (Light)</key> 5093 + <dict> 5094 + <key>Blue Component</key> 5095 + <real>0.98431372549019602</real> 5096 + <key>Color Space</key> 5097 + <string>sRGB</string> 5098 + <key>Green Component</key> 5099 + <real>0.98431372549019602</real> 5100 + <key>Red Component</key> 5101 + <real>0.98431372549019602</real> 5102 + </dict> 2605 5103 <key>Custom Command</key> 2606 5104 <string>Yes</string> 2607 5105 <key>Custom Directory</key> 2608 - <string>Advanced</string> 5106 + <string>Recycle</string> 2609 5107 <key>Default Bookmark</key> 2610 5108 <string>No</string> 2611 5109 <key>Description</key> ··· 2616 5114 <true/> 2617 5115 <key>Dynamic Profile Filename</key> 2618 5116 <string>/Users/ichamberlain/.config/iterm2/profiles/SSH Session (xterm-256color).json</string> 5117 + <key>Faint Text Alpha (Dark)</key> 5118 + <real>0.5</real> 5119 + <key>Faint Text Alpha (Light)</key> 5120 + <real>0.5</real> 2619 5121 <key>Flashing Bell</key> 2620 5122 <true/> 2621 5123 <key>Foreground Color</key> ··· 2631 5133 <key>Red Component</key> 2632 5134 <real>0.19607843458652496</real> 2633 5135 </dict> 5136 + <key>Foreground Color (Dark)</key> 5137 + <dict> 5138 + <key>Blue Component</key> 5139 + <integer>0</integer> 5140 + <key>Green Component</key> 5141 + <integer>1</integer> 5142 + <key>Red Component</key> 5143 + <integer>0</integer> 5144 + </dict> 5145 + <key>Foreground Color (Light)</key> 5146 + <dict> 5147 + <key>Blue Component</key> 5148 + <real>0.32549019607843138</real> 5149 + <key>Color Space</key> 5150 + <string>sRGB</string> 5151 + <key>Green Component</key> 5152 + <real>0.24705882352941178</real> 5153 + <key>Red Component</key> 5154 + <real>0.25098039215686274</real> 5155 + </dict> 2634 5156 <key>Guid</key> 2635 5157 <string>2E1FFBC4-0DA6-4AC7-BA2A-340E6787C9B9</string> 2636 5158 <key>Has Hotkey</key> ··· 2785 5307 <key>Text</key> 2786 5308 <string>0x1B 0x08</string> 2787 5309 </dict> 5310 + <key>0xd-0x80000-0x24</key> 5311 + <dict> 5312 + <key>Action</key> 5313 + <integer>10</integer> 5314 + <key>Label</key> 5315 + <string></string> 5316 + <key>Text</key> 5317 + <string> 5318 + </string> 5319 + <key>Version</key> 5320 + <integer>1</integer> 5321 + </dict> 2788 5322 <key>0xf702-0x280000</key> 2789 5323 <dict> 2790 5324 <key>Action</key> ··· 2813 5347 <key>Text</key> 2814 5348 <string>[F</string> 2815 5349 </dict> 2816 - <key>0xf728-0x100000-0x75</key> 2817 - <dict> 2818 - <key>Action</key> 2819 - <integer>11</integer> 2820 - <key>Apply Mode</key> 2821 - <integer>0</integer> 2822 - <key>Escaping</key> 2823 - <integer>2</integer> 2824 - <key>Text</key> 2825 - <string>0B</string> 2826 - <key>Version</key> 2827 - <integer>2</integer> 2828 - </dict> 2829 5350 <key>0xf728-0x80000</key> 2830 5351 <dict> 2831 5352 <key>Action</key> ··· 2854 5375 <key>Red Component</key> 2855 5376 <integer>0</integer> 2856 5377 </dict> 5378 + <key>Link Color (Dark)</key> 5379 + <dict> 5380 + <key>Alpha Component</key> 5381 + <integer>1</integer> 5382 + <key>Blue Component</key> 5383 + <real>0.70932406187057495</real> 5384 + <key>Color Space</key> 5385 + <string>P3</string> 5386 + <key>Green Component</key> 5387 + <real>0.35333043336868286</real> 5388 + <key>Red Component</key> 5389 + <real>0.1451396644115448</real> 5390 + </dict> 5391 + <key>Link Color (Light)</key> 5392 + <dict> 5393 + <key>Alpha Component</key> 5394 + <integer>1</integer> 5395 + <key>Blue Component</key> 5396 + <real>0.70932406187057495</real> 5397 + <key>Color Space</key> 5398 + <string>P3</string> 5399 + <key>Green Component</key> 5400 + <real>0.35333043336868286</real> 5401 + <key>Red Component</key> 5402 + <real>0.1451396644115448</real> 5403 + </dict> 5404 + <key>Match Background Color</key> 5405 + <dict> 5406 + <key>Alpha Component</key> 5407 + <integer>1</integer> 5408 + <key>Blue Component</key> 5409 + <integer>0</integer> 5410 + <key>Color Space</key> 5411 + <string>P3</string> 5412 + <key>Green Component</key> 5413 + <integer>1</integer> 5414 + <key>Red Component</key> 5415 + <integer>1</integer> 5416 + </dict> 5417 + <key>Match Background Color (Dark)</key> 5418 + <dict> 5419 + <key>Alpha Component</key> 5420 + <integer>1</integer> 5421 + <key>Blue Component</key> 5422 + <integer>0</integer> 5423 + <key>Color Space</key> 5424 + <string>P3</string> 5425 + <key>Green Component</key> 5426 + <integer>1</integer> 5427 + <key>Red Component</key> 5428 + <integer>1</integer> 5429 + </dict> 5430 + <key>Match Background Color (Light)</key> 5431 + <dict> 5432 + <key>Alpha Component</key> 5433 + <integer>1</integer> 5434 + <key>Blue Component</key> 5435 + <integer>0</integer> 5436 + <key>Color Space</key> 5437 + <string>P3</string> 5438 + <key>Green Component</key> 5439 + <integer>1</integer> 5440 + <key>Red Component</key> 5441 + <integer>1</integer> 5442 + </dict> 5443 + <key>Minimum Contrast</key> 5444 + <integer>0</integer> 5445 + <key>Minimum Contrast (Dark)</key> 5446 + <integer>0</integer> 5447 + <key>Minimum Contrast (Light)</key> 5448 + <integer>0</integer> 2857 5449 <key>Mouse Reporting</key> 2858 5450 <true/> 2859 5451 <key>Name</key> ··· 2863 5455 <key>Non-ASCII Anti Aliased</key> 2864 5456 <true/> 2865 5457 <key>Normal Font</key> 2866 - <string>MonaspaceArgon-Regular 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 5458 + <string>MonaspaceArgonVar-Medium 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 2867 5459 <key>Only The Default BG Color Uses Transparency</key> 2868 5460 <false/> 2869 5461 <key>Open Toolbelt</key> ··· 2897 5489 <key>Red Component</key> 2898 5490 <real>0.47127401828765869</real> 2899 5491 </dict> 5492 + <key>Selected Text Color (Dark)</key> 5493 + <dict> 5494 + <key>Blue Component</key> 5495 + <integer>1</integer> 5496 + <key>Green Component</key> 5497 + <integer>1</integer> 5498 + <key>Red Component</key> 5499 + <integer>1</integer> 5500 + </dict> 5501 + <key>Selected Text Color (Light)</key> 5502 + <dict> 5503 + <key>Blue Component</key> 5504 + <real>0.32549019607843138</real> 5505 + <key>Color Space</key> 5506 + <string>sRGB</string> 5507 + <key>Green Component</key> 5508 + <real>0.24705882352941178</real> 5509 + <key>Red Component</key> 5510 + <real>0.25098039215686274</real> 5511 + </dict> 2900 5512 <key>Selection Color</key> 2901 5513 <dict> 2902 5514 <key>Alpha Component</key> ··· 2909 5521 <real>0.18451127409934998</real> 2910 5522 <key>Red Component</key> 2911 5523 <real>0.053524382412433603</real> 5524 + </dict> 5525 + <key>Selection Color (Dark)</key> 5526 + <dict> 5527 + <key>Blue Component</key> 5528 + <real>0.019607843137254902</real> 5529 + <key>Green Component</key> 5530 + <real>0.22352941176470587</real> 5531 + <key>Red Component</key> 5532 + <real>0.031372549019607843</real> 5533 + </dict> 5534 + <key>Selection Color (Light)</key> 5535 + <dict> 5536 + <key>Blue Component</key> 5537 + <real>0.94999999999999996</real> 5538 + <key>Color Space</key> 5539 + <string>sRGB</string> 5540 + <key>Green Component</key> 5541 + <real>0.94999999999999996</real> 5542 + <key>Red Component</key> 5543 + <real>0.94999999999999996</real> 2912 5544 </dict> 2913 5545 <key>Semantic History</key> 2914 5546 <dict> ··· 2935 5567 <true/> 2936 5568 <key>Silence Bell</key> 2937 5569 <false/> 5570 + <key>Smart Cursor Color (Dark)</key> 5571 + <false/> 5572 + <key>Smart Cursor Color (Light)</key> 5573 + <false/> 2938 5574 <key>Space</key> 2939 5575 <integer>0</integer> 2940 5576 <key>Status Bar Layout</key> ··· 2944 5580 <key>algorithm</key> 2945 5581 <integer>0</integer> 2946 5582 <key>font</key> 2947 - <string>MonaspaceArgonVar-Medium 12</string> 5583 + <string>MonaspaceArgon-Regular 11</string> 2948 5584 </dict> 2949 5585 <key>components</key> 2950 5586 <array> ··· 2982 5618 <key>algorithm</key> 2983 5619 <integer>0</integer> 2984 5620 <key>font</key> 2985 - <string>MonaspaceArgonVar-Medium 12</string> 5621 + <string>MonaspaceArgon-Regular 11</string> 2986 5622 </dict> 2987 5623 </dict> 2988 5624 </dict> ··· 3022 5658 <key>algorithm</key> 3023 5659 <integer>0</integer> 3024 5660 <key>font</key> 3025 - <string>MonaspaceArgonVar-Medium 12</string> 5661 + <string>MonaspaceArgon-Regular 11</string> 3026 5662 </dict> 3027 5663 </dict> 3028 5664 </dict> ··· 3062 5698 <key>algorithm</key> 3063 5699 <integer>0</integer> 3064 5700 <key>font</key> 3065 - <string>MonaspaceArgonVar-Medium 12</string> 5701 + <string>MonaspaceArgon-Regular 11</string> 3066 5702 </dict> 3067 5703 </dict> 3068 5704 </dict> ··· 3096 5732 <key>algorithm</key> 3097 5733 <integer>0</integer> 3098 5734 <key>font</key> 3099 - <string>MonaspaceArgonVar-Medium 12</string> 5735 + <string>MonaspaceArgon-Regular 11</string> 3100 5736 </dict> 3101 5737 </dict> 3102 5738 </dict> ··· 3130 5766 <key>algorithm</key> 3131 5767 <integer>0</integer> 3132 5768 <key>font</key> 3133 - <string>MonaspaceArgonVar-Medium 12</string> 5769 + <string>MonaspaceArgon-Regular 11</string> 3134 5770 </dict> 3135 5771 </dict> 3136 5772 </dict> ··· 3145 5781 <key>Terminal Type</key> 3146 5782 <string>xterm-256color</string> 3147 5783 <key>Thin Strokes</key> 3148 - <integer>0</integer> 5784 + <integer>4</integer> 3149 5785 <key>Transparency</key> 3150 5786 <integer>0</integer> 3151 5787 <key>Triggers</key> ··· 3179 5815 <true/> 3180 5816 <key>Use Bright Bold</key> 3181 5817 <false/> 5818 + <key>Use Bright Bold (Dark)</key> 5819 + <false/> 5820 + <key>Use Bright Bold (Light)</key> 5821 + <false/> 5822 + <key>Use Cursor Guide (Dark)</key> 5823 + <false/> 5824 + <key>Use Cursor Guide (Light)</key> 5825 + <false/> 3182 5826 <key>Use Italic Font</key> 3183 5827 <true/> 3184 5828 <key>Use Non-ASCII Font</key> 3185 5829 <false/> 5830 + <key>Use Selected Text Color (Dark)</key> 5831 + <true/> 5832 + <key>Use Selected Text Color (Light)</key> 5833 + <true/> 5834 + <key>Use Separate Colors for Light and Dark Mode</key> 5835 + <true/> 5836 + <key>Use Tab Color</key> 5837 + <false/> 5838 + <key>Use Tab Color (Dark)</key> 5839 + <false/> 5840 + <key>Use Tab Color (Light)</key> 5841 + <false/> 5842 + <key>Use Underline Color</key> 5843 + <false/> 5844 + <key>Use Underline Color (Dark)</key> 5845 + <false/> 5846 + <key>Use Underline Color (Light)</key> 5847 + <false/> 3186 5848 <key>Vertical Spacing</key> 3187 5849 <integer>1</integer> 3188 5850 <key>Visual Bell</key> ··· 3190 5852 <key>Window Type</key> 3191 5853 <integer>0</integer> 3192 5854 <key>Working Directory</key> 3193 - <string>~/Documents</string> 5855 + <string></string> 3194 5856 </dict> 3195 5857 <dict> 3196 5858 <key>ASCII Anti Aliased</key> 3197 5859 <true/> 3198 5860 <key>ASCII Ligatures</key> 3199 - <false/> 5861 + <true/> 3200 5862 <key>AWDS Pane Directory</key> 3201 5863 <string></string> 3202 5864 <key>AWDS Pane Option</key> ··· 3226 5888 <key>Red Component</key> 3227 5889 <integer>0</integer> 3228 5890 </dict> 5891 + <key>Ansi 0 Color (Dark)</key> 5892 + <dict> 5893 + <key>Blue Component</key> 5894 + <integer>0</integer> 5895 + <key>Green Component</key> 5896 + <integer>0</integer> 5897 + <key>Red Component</key> 5898 + <integer>0</integer> 5899 + </dict> 5900 + <key>Ansi 0 Color (Light)</key> 5901 + <dict> 5902 + <key>Blue Component</key> 5903 + <real>0.15294117647058825</real> 5904 + <key>Color Space</key> 5905 + <string>sRGB</string> 5906 + <key>Green Component</key> 5907 + <real>0.086274509803921567</real> 5908 + <key>Red Component</key> 5909 + <real>0.0039215686274509803</real> 5910 + </dict> 3229 5911 <key>Ansi 1 Color</key> 3230 5912 <dict> 3231 5913 <key>Alpha Component</key> ··· 3239 5921 <key>Red Component</key> 3240 5922 <real>0.66812098026275635</real> 3241 5923 </dict> 5924 + <key>Ansi 1 Color (Dark)</key> 5925 + <dict> 5926 + <key>Blue Component</key> 5927 + <integer>0</integer> 5928 + <key>Green Component</key> 5929 + <integer>0</integer> 5930 + <key>Red Component</key> 5931 + <real>0.59999999999999998</real> 5932 + </dict> 5933 + <key>Ansi 1 Color (Light)</key> 5934 + <dict> 5935 + <key>Blue Component</key> 5936 + <real>0.24313725490196078</real> 5937 + <key>Color Space</key> 5938 + <string>sRGB</string> 5939 + <key>Green Component</key> 5940 + <real>0.25882352941176473</real> 5941 + <key>Red Component</key> 5942 + <real>0.82745098039215681</real> 5943 + </dict> 3242 5944 <key>Ansi 10 Color</key> 3243 5945 <dict> 3244 5946 <key>Alpha Component</key> ··· 3252 5954 <key>Red Component</key> 3253 5955 <integer>0</integer> 3254 5956 </dict> 5957 + <key>Ansi 10 Color (Dark)</key> 5958 + <dict> 5959 + <key>Blue Component</key> 5960 + <integer>0</integer> 5961 + <key>Green Component</key> 5962 + <real>0.85098039215686272</real> 5963 + <key>Red Component</key> 5964 + <integer>0</integer> 5965 + </dict> 5966 + <key>Ansi 10 Color (Light)</key> 5967 + <dict> 5968 + <key>Blue Component</key> 5969 + <real>0.77254901960784317</real> 5970 + <key>Color Space</key> 5971 + <string>sRGB</string> 5972 + <key>Green Component</key> 5973 + <real>0.81568627450980391</real> 5974 + <key>Red Component</key> 5975 + <real>0.28627450980392155</real> 5976 + </dict> 3255 5977 <key>Ansi 11 Color</key> 3256 5978 <dict> 3257 5979 <key>Alpha Component</key> ··· 3265 5987 <key>Red Component</key> 3266 5988 <real>0.91766214370727539</real> 3267 5989 </dict> 5990 + <key>Ansi 11 Color (Dark)</key> 5991 + <dict> 5992 + <key>Blue Component</key> 5993 + <integer>0</integer> 5994 + <key>Green Component</key> 5995 + <real>0.89803921568627454</real> 5996 + <key>Red Component</key> 5997 + <real>0.89803921568627454</real> 5998 + </dict> 5999 + <key>Ansi 11 Color (Light)</key> 6000 + <dict> 6001 + <key>Blue Component</key> 6002 + <real>0.41960784313725491</real> 6003 + <key>Color Space</key> 6004 + <string>sRGB</string> 6005 + <key>Green Component</key> 6006 + <real>0.76078431372549016</real> 6007 + <key>Red Component</key> 6008 + <real>0.85490196078431369</real> 6009 + </dict> 3268 6010 <key>Ansi 12 Color</key> 3269 6011 <dict> 3270 6012 <key>Alpha Component</key> ··· 3278 6020 <key>Red Component</key> 3279 6021 <real>0.52499485015869141</real> 3280 6022 </dict> 6023 + <key>Ansi 12 Color (Dark)</key> 6024 + <dict> 6025 + <key>Blue Component</key> 6026 + <integer>1</integer> 6027 + <key>Green Component</key> 6028 + <integer>0</integer> 6029 + <key>Red Component</key> 6030 + <integer>0</integer> 6031 + </dict> 6032 + <key>Ansi 12 Color (Light)</key> 6033 + <dict> 6034 + <key>Blue Component</key> 6035 + <real>0.89411764705882357</real> 6036 + <key>Color Space</key> 6037 + <string>sRGB</string> 6038 + <key>Green Component</key> 6039 + <real>0.65490196078431373</real> 6040 + <key>Red Component</key> 6041 + <real>0.36078431372549019</real> 6042 + </dict> 3281 6043 <key>Ansi 13 Color</key> 3282 6044 <dict> 3283 6045 <key>Alpha Component</key> ··· 3291 6053 <key>Red Component</key> 3292 6054 <real>0.92568391561508179</real> 3293 6055 </dict> 6056 + <key>Ansi 13 Color (Dark)</key> 6057 + <dict> 6058 + <key>Blue Component</key> 6059 + <real>0.89803921568627454</real> 6060 + <key>Green Component</key> 6061 + <integer>0</integer> 6062 + <key>Red Component</key> 6063 + <real>0.89803921568627454</real> 6064 + </dict> 6065 + <key>Ansi 13 Color (Light)</key> 6066 + <dict> 6067 + <key>Blue Component</key> 6068 + <real>0.59607843137254901</real> 6069 + <key>Color Space</key> 6070 + <string>sRGB</string> 6071 + <key>Green Component</key> 6072 + <real>0.4392156862745098</real> 6073 + <key>Red Component</key> 6074 + <real>0.41176470588235292</real> 6075 + </dict> 3294 6076 <key>Ansi 14 Color</key> 3295 6077 <dict> 3296 6078 <key>Alpha Component</key> ··· 3304 6086 <key>Red Component</key> 3305 6087 <integer>0</integer> 3306 6088 </dict> 6089 + <key>Ansi 14 Color (Dark)</key> 6090 + <dict> 6091 + <key>Blue Component</key> 6092 + <real>0.89803921568627454</real> 6093 + <key>Green Component</key> 6094 + <real>0.89803921568627454</real> 6095 + <key>Red Component</key> 6096 + <integer>0</integer> 6097 + </dict> 6098 + <key>Ansi 14 Color (Light)</key> 6099 + <dict> 6100 + <key>Blue Component</key> 6101 + <real>0.56470588235294117</real> 6102 + <key>Color Space</key> 6103 + <string>sRGB</string> 6104 + <key>Green Component</key> 6105 + <real>0.78823529411764703</real> 6106 + <key>Red Component</key> 6107 + <integer>0</integer> 6108 + </dict> 3307 6109 <key>Ansi 15 Color</key> 3308 6110 <dict> 3309 6111 <key>Alpha Component</key> ··· 3317 6119 <key>Red Component</key> 3318 6120 <real>0.92151540517807007</real> 3319 6121 </dict> 6122 + <key>Ansi 15 Color (Dark)</key> 6123 + <dict> 6124 + <key>Blue Component</key> 6125 + <real>0.89803921568627454</real> 6126 + <key>Green Component</key> 6127 + <real>0.89803921568627454</real> 6128 + <key>Red Component</key> 6129 + <real>0.89803921568627454</real> 6130 + </dict> 6131 + <key>Ansi 15 Color (Light)</key> 6132 + <dict> 6133 + <key>Blue Component</key> 6134 + <real>0.69411764705882351</real> 6135 + <key>Color Space</key> 6136 + <string>sRGB</string> 6137 + <key>Green Component</key> 6138 + <real>0.62352941176470589</real> 6139 + <key>Red Component</key> 6140 + <real>0.59607843137254901</real> 6141 + </dict> 3320 6142 <key>Ansi 2 Color</key> 3321 6143 <dict> 3322 6144 <key>Alpha Component</key> ··· 3329 6151 <real>0.59999999999999998</real> 3330 6152 <key>Red Component</key> 3331 6153 <integer>0</integer> 6154 + </dict> 6155 + <key>Ansi 2 Color (Dark)</key> 6156 + <dict> 6157 + <key>Blue Component</key> 6158 + <integer>0</integer> 6159 + <key>Green Component</key> 6160 + <real>0.65098039215686276</real> 6161 + <key>Red Component</key> 6162 + <integer>0</integer> 6163 + </dict> 6164 + <key>Ansi 2 Color (Light)</key> 6165 + <dict> 6166 + <key>Blue Component</key> 6167 + <real>0.59607843137254901</real> 6168 + <key>Color Space</key> 6169 + <string>sRGB</string> 6170 + <key>Green Component</key> 6171 + <real>0.63529411764705879</real> 6172 + <key>Red Component</key> 6173 + <real>0.16470588235294117</real> 3332 6174 </dict> 3333 6175 <key>Ansi 3 Color</key> 3334 6176 <dict> ··· 3343 6185 <key>Red Component</key> 3344 6186 <real>0.66385143995285034</real> 3345 6187 </dict> 6188 + <key>Ansi 3 Color (Dark)</key> 6189 + <dict> 6190 + <key>Blue Component</key> 6191 + <integer>0</integer> 6192 + <key>Green Component</key> 6193 + <real>0.59999999999999998</real> 6194 + <key>Red Component</key> 6195 + <real>0.59999999999999998</real> 6196 + </dict> 6197 + <key>Ansi 3 Color (Light)</key> 6198 + <dict> 6199 + <key>Blue Component</key> 6200 + <real>0.0039215686274509803</real> 6201 + <key>Color Space</key> 6202 + <string>sRGB</string> 6203 + <key>Green Component</key> 6204 + <real>0.66666666666666663</real> 6205 + <key>Red Component</key> 6206 + <real>0.85490196078431369</real> 6207 + </dict> 3346 6208 <key>Ansi 4 Color</key> 3347 6209 <dict> 3348 6210 <key>Alpha Component</key> ··· 3356 6218 <key>Red Component</key> 3357 6219 <real>0.30479651689529419</real> 3358 6220 </dict> 6221 + <key>Ansi 4 Color (Dark)</key> 6222 + <dict> 6223 + <key>Blue Component</key> 6224 + <real>0.69803921568627447</real> 6225 + <key>Green Component</key> 6226 + <integer>0</integer> 6227 + <key>Red Component</key> 6228 + <integer>0</integer> 6229 + </dict> 6230 + <key>Ansi 4 Color (Light)</key> 6231 + <dict> 6232 + <key>Blue Component</key> 6233 + <real>0.83921568627450982</real> 6234 + <key>Color Space</key> 6235 + <string>sRGB</string> 6236 + <key>Green Component</key> 6237 + <real>0.46274509803921571</real> 6238 + <key>Red Component</key> 6239 + <real>0.28235294117647058</real> 6240 + </dict> 3359 6241 <key>Ansi 5 Color</key> 3360 6242 <dict> 3361 6243 <key>Alpha Component</key> ··· 3369 6251 <key>Red Component</key> 3370 6252 <real>0.75607430934906006</real> 3371 6253 </dict> 6254 + <key>Ansi 5 Color (Dark)</key> 6255 + <dict> 6256 + <key>Blue Component</key> 6257 + <real>0.69803921568627447</real> 6258 + <key>Green Component</key> 6259 + <integer>0</integer> 6260 + <key>Red Component</key> 6261 + <real>0.69803921568627447</real> 6262 + </dict> 6263 + <key>Ansi 5 Color (Light)</key> 6264 + <dict> 6265 + <key>Blue Component</key> 6266 + <real>0.32549019607843138</real> 6267 + <key>Color Space</key> 6268 + <string>sRGB</string> 6269 + <key>Green Component</key> 6270 + <real>0.24705882352941178</real> 6271 + <key>Red Component</key> 6272 + <real>0.25098039215686274</real> 6273 + </dict> 3372 6274 <key>Ansi 6 Color</key> 3373 6275 <dict> 3374 6276 <key>Alpha Component</key> ··· 3382 6284 <key>Red Component</key> 3383 6285 <integer>0</integer> 3384 6286 </dict> 6287 + <key>Ansi 6 Color (Dark)</key> 6288 + <dict> 6289 + <key>Blue Component</key> 6290 + <real>0.69803921568627447</real> 6291 + <key>Green Component</key> 6292 + <real>0.65098039215686276</real> 6293 + <key>Red Component</key> 6294 + <integer>0</integer> 6295 + </dict> 6296 + <key>Ansi 6 Color (Light)</key> 6297 + <dict> 6298 + <key>Blue Component</key> 6299 + <real>0.41568627450980394</real> 6300 + <key>Color Space</key> 6301 + <string>sRGB</string> 6302 + <key>Green Component</key> 6303 + <real>0.56862745098039214</real> 6304 + <key>Red Component</key> 6305 + <real>0.031372549019607843</real> 6306 + </dict> 3385 6307 <key>Ansi 7 Color</key> 3386 6308 <dict> 3387 6309 <key>Alpha Component</key> ··· 3395 6317 <key>Red Component</key> 3396 6318 <real>0.79441660642623901</real> 3397 6319 </dict> 6320 + <key>Ansi 7 Color (Dark)</key> 6321 + <dict> 6322 + <key>Blue Component</key> 6323 + <real>0.74901960784313726</real> 6324 + <key>Green Component</key> 6325 + <real>0.74901960784313726</real> 6326 + <key>Red Component</key> 6327 + <real>0.74901960784313726</real> 6328 + </dict> 6329 + <key>Ansi 7 Color (Light)</key> 6330 + <dict> 6331 + <key>Blue Component</key> 6332 + <real>0.50588235294117645</real> 6333 + <key>Color Space</key> 6334 + <string>sRGB</string> 6335 + <key>Green Component</key> 6336 + <real>0.50588235294117645</real> 6337 + <key>Red Component</key> 6338 + <real>0.47843137254901963</real> 6339 + </dict> 3398 6340 <key>Ansi 8 Color</key> 3399 6341 <dict> 3400 6342 <key>Alpha Component</key> ··· 3408 6350 <key>Red Component</key> 3409 6351 <real>0.47563493251800537</real> 3410 6352 </dict> 6353 + <key>Ansi 8 Color (Dark)</key> 6354 + <dict> 6355 + <key>Blue Component</key> 6356 + <real>0.40000000000000002</real> 6357 + <key>Green Component</key> 6358 + <real>0.40000000000000002</real> 6359 + <key>Red Component</key> 6360 + <real>0.40000000000000002</real> 6361 + </dict> 6362 + <key>Ansi 8 Color (Light)</key> 6363 + <dict> 6364 + <key>Blue Component</key> 6365 + <real>0.50588235294117645</real> 6366 + <key>Color Space</key> 6367 + <string>sRGB</string> 6368 + <key>Green Component</key> 6369 + <real>0.50588235294117645</real> 6370 + <key>Red Component</key> 6371 + <real>0.47843137254901963</real> 6372 + </dict> 3411 6373 <key>Ansi 9 Color</key> 3412 6374 <dict> 3413 6375 <key>Alpha Component</key> ··· 3421 6383 <key>Red Component</key> 3422 6384 <real>0.92504602670669556</real> 3423 6385 </dict> 6386 + <key>Ansi 9 Color (Dark)</key> 6387 + <dict> 6388 + <key>Blue Component</key> 6389 + <integer>0</integer> 6390 + <key>Green Component</key> 6391 + <integer>0</integer> 6392 + <key>Red Component</key> 6393 + <real>0.89803921568627454</real> 6394 + </dict> 6395 + <key>Ansi 9 Color (Light)</key> 6396 + <dict> 6397 + <key>Blue Component</key> 6398 + <real>0.43137254901960786</real> 6399 + <key>Color Space</key> 6400 + <string>sRGB</string> 6401 + <key>Green Component</key> 6402 + <real>0.43137254901960786</real> 6403 + <key>Red Component</key> 6404 + <real>0.96862745098039216</real> 6405 + </dict> 3424 6406 <key>Application Keypad Allowed</key> 3425 6407 <true/> 3426 6408 <key>BM Growl</key> ··· 3434 6416 <key>Red Component</key> 3435 6417 <integer>0</integer> 3436 6418 </dict> 6419 + <key>Background Color (Dark)</key> 6420 + <dict> 6421 + <key>Blue Component</key> 6422 + <integer>0</integer> 6423 + <key>Green Component</key> 6424 + <integer>0</integer> 6425 + <key>Red Component</key> 6426 + <integer>0</integer> 6427 + </dict> 6428 + <key>Background Color (Light)</key> 6429 + <dict> 6430 + <key>Blue Component</key> 6431 + <integer>1</integer> 6432 + <key>Color Space</key> 6433 + <string>sRGB</string> 6434 + <key>Green Component</key> 6435 + <integer>1</integer> 6436 + <key>Red Component</key> 6437 + <integer>1</integer> 6438 + </dict> 3437 6439 <key>Background Image Location</key> 3438 6440 <string></string> 3439 6441 <key>Badge Color</key> ··· 3449 6451 <key>Red Component</key> 3450 6452 <integer>0</integer> 3451 6453 </dict> 6454 + <key>Badge Color (Dark)</key> 6455 + <dict> 6456 + <key>Alpha Component</key> 6457 + <real>0.5</real> 6458 + <key>Blue Component</key> 6459 + <real>0.13960540294647217</real> 6460 + <key>Color Space</key> 6461 + <string>P3</string> 6462 + <key>Green Component</key> 6463 + <real>0.25479039549827576</real> 6464 + <key>Red Component</key> 6465 + <real>0.92929404973983765</real> 6466 + </dict> 6467 + <key>Badge Color (Light)</key> 6468 + <dict> 6469 + <key>Alpha Component</key> 6470 + <real>0.5</real> 6471 + <key>Blue Component</key> 6472 + <real>0.13960540294647217</real> 6473 + <key>Color Space</key> 6474 + <string>P3</string> 6475 + <key>Green Component</key> 6476 + <real>0.25479039549827576</real> 6477 + <key>Red Component</key> 6478 + <real>0.92929404973983765</real> 6479 + </dict> 3452 6480 <key>Badge Font</key> 3453 - <string>MonaspaceKrypton-Bold</string> 6481 + <string>MonaspaceNeon-Bold</string> 3454 6482 <key>Badge Max Height</key> 3455 6483 <real>0.29999999999999999</real> 3456 6484 <key>Badge Max Width</key> ··· 3482 6510 <key>Red Component</key> 3483 6511 <integer>0</integer> 3484 6512 </dict> 6513 + <key>Bold Color (Dark)</key> 6514 + <dict> 6515 + <key>Blue Component</key> 6516 + <integer>0</integer> 6517 + <key>Green Component</key> 6518 + <integer>1</integer> 6519 + <key>Red Component</key> 6520 + <integer>0</integer> 6521 + </dict> 6522 + <key>Bold Color (Light)</key> 6523 + <dict> 6524 + <key>Blue Component</key> 6525 + <real>0.32549019607843138</real> 6526 + <key>Color Space</key> 6527 + <string>sRGB</string> 6528 + <key>Green Component</key> 6529 + <real>0.24705882352941178</real> 6530 + <key>Red Component</key> 6531 + <real>0.25098039215686274</real> 6532 + </dict> 3485 6533 <key>Bound Hosts</key> 3486 6534 <array> 3487 6535 <string>!pharmacy-jumper</string> 3488 6536 <string>!root@172.17.*.*</string> 3489 6537 <string>!@t*-dut*</string> 3490 6538 </array> 6539 + <key>Brighten Bold Text (Dark)</key> 6540 + <false/> 6541 + <key>Brighten Bold Text (Light)</key> 6542 + <false/> 3491 6543 <key>Character Encoding</key> 3492 6544 <integer>4</integer> 3493 6545 <key>Close Sessions On End</key> ··· 3496 6548 <integer>80</integer> 3497 6549 <key>Command</key> 3498 6550 <string></string> 6551 + <key>Cursor Boost (Dark)</key> 6552 + <integer>0</integer> 6553 + <key>Cursor Boost (Light)</key> 6554 + <integer>0</integer> 3499 6555 <key>Cursor Color</key> 3500 6556 <dict> 3501 6557 <key>Alpha Component</key> ··· 3509 6565 <key>Red Component</key> 3510 6566 <real>0.27456897497177124</real> 3511 6567 </dict> 6568 + <key>Cursor Color (Dark)</key> 6569 + <dict> 6570 + <key>Blue Component</key> 6571 + <real>0.094117647058823528</real> 6572 + <key>Green Component</key> 6573 + <integer>1</integer> 6574 + <key>Red Component</key> 6575 + <real>0.13725490196078433</real> 6576 + </dict> 6577 + <key>Cursor Color (Light)</key> 6578 + <dict> 6579 + <key>Blue Component</key> 6580 + <real>0.32549019607843138</real> 6581 + <key>Color Space</key> 6582 + <string>sRGB</string> 6583 + <key>Green Component</key> 6584 + <real>0.24705882352941178</real> 6585 + <key>Red Component</key> 6586 + <real>0.25098039215686274</real> 6587 + </dict> 3512 6588 <key>Cursor Guide Color</key> 3513 6589 <dict> 3514 6590 <key>Alpha Component</key> ··· 3522 6598 <key>Red Component</key> 3523 6599 <real>0.70213186740875244</real> 3524 6600 </dict> 6601 + <key>Cursor Guide Color (Dark)</key> 6602 + <dict> 6603 + <key>Alpha Component</key> 6604 + <real>0.25</real> 6605 + <key>Blue Component</key> 6606 + <real>0.99125725030899048</real> 6607 + <key>Color Space</key> 6608 + <string>P3</string> 6609 + <key>Green Component</key> 6610 + <real>0.92047786712646484</real> 6611 + <key>Red Component</key> 6612 + <real>0.7486259937286377</real> 6613 + </dict> 6614 + <key>Cursor Guide Color (Light)</key> 6615 + <dict> 6616 + <key>Alpha Component</key> 6617 + <real>0.25</real> 6618 + <key>Blue Component</key> 6619 + <real>0.99125725030899048</real> 6620 + <key>Color Space</key> 6621 + <string>P3</string> 6622 + <key>Green Component</key> 6623 + <real>0.92047786712646484</real> 6624 + <key>Red Component</key> 6625 + <real>0.7486259937286377</real> 6626 + </dict> 3525 6627 <key>Cursor Text Color</key> 3526 6628 <dict> 3527 6629 <key>Blue Component</key> ··· 3531 6633 <key>Red Component</key> 3532 6634 <integer>1</integer> 3533 6635 </dict> 6636 + <key>Cursor Text Color (Dark)</key> 6637 + <dict> 6638 + <key>Blue Component</key> 6639 + <real>0.0940093994140625</real> 6640 + <key>Green Component</key> 6641 + <integer>0</integer> 6642 + <key>Red Component</key> 6643 + <integer>1</integer> 6644 + </dict> 6645 + <key>Cursor Text Color (Light)</key> 6646 + <dict> 6647 + <key>Blue Component</key> 6648 + <real>0.98431372549019602</real> 6649 + <key>Color Space</key> 6650 + <string>sRGB</string> 6651 + <key>Green Component</key> 6652 + <real>0.98431372549019602</real> 6653 + <key>Red Component</key> 6654 + <real>0.98431372549019602</real> 6655 + </dict> 3534 6656 <key>Custom Command</key> 3535 6657 <string>No</string> 3536 6658 <key>Custom Directory</key> ··· 3545 6667 <true/> 3546 6668 <key>Dynamic Profile Filename</key> 3547 6669 <string>/Users/ichamberlain/.config/iterm2/profiles/SolutionTest.json</string> 6670 + <key>Faint Text Alpha (Dark)</key> 6671 + <real>0.5</real> 6672 + <key>Faint Text Alpha (Light)</key> 6673 + <real>0.5</real> 3548 6674 <key>Flashing Bell</key> 3549 6675 <true/> 3550 6676 <key>Foreground Color</key> ··· 3559 6685 <integer>1</integer> 3560 6686 <key>Red Component</key> 3561 6687 <real>0.19607843458652496</real> 6688 + </dict> 6689 + <key>Foreground Color (Dark)</key> 6690 + <dict> 6691 + <key>Blue Component</key> 6692 + <integer>0</integer> 6693 + <key>Green Component</key> 6694 + <integer>1</integer> 6695 + <key>Red Component</key> 6696 + <integer>0</integer> 6697 + </dict> 6698 + <key>Foreground Color (Light)</key> 6699 + <dict> 6700 + <key>Blue Component</key> 6701 + <real>0.32549019607843138</real> 6702 + <key>Color Space</key> 6703 + <string>sRGB</string> 6704 + <key>Green Component</key> 6705 + <real>0.24705882352941178</real> 6706 + <key>Red Component</key> 6707 + <real>0.25098039215686274</real> 3562 6708 </dict> 3563 6709 <key>Guid</key> 3564 6710 <string>E1E432AC-E0BC-48C8-A7C7-8B0630E9D404</string> ··· 3712 6858 <key>Text</key> 3713 6859 <string>0x1B 0x08</string> 3714 6860 </dict> 6861 + <key>0xd-0x80000-0x24</key> 6862 + <dict> 6863 + <key>Action</key> 6864 + <integer>10</integer> 6865 + <key>Label</key> 6866 + <string></string> 6867 + <key>Text</key> 6868 + <string> 6869 + </string> 6870 + <key>Version</key> 6871 + <integer>1</integer> 6872 + </dict> 3715 6873 <key>0xf702-0x280000</key> 3716 6874 <dict> 3717 6875 <key>Action</key> ··· 3740 6898 <key>Text</key> 3741 6899 <string>[F</string> 3742 6900 </dict> 3743 - <key>0xf728-0x100000-0x75</key> 3744 - <dict> 3745 - <key>Action</key> 3746 - <integer>11</integer> 3747 - <key>Apply Mode</key> 3748 - <integer>0</integer> 3749 - <key>Escaping</key> 3750 - <integer>2</integer> 3751 - <key>Text</key> 3752 - <string>0B</string> 3753 - <key>Version</key> 3754 - <integer>2</integer> 3755 - </dict> 3756 6901 <key>0xf728-0x80000</key> 3757 6902 <dict> 3758 6903 <key>Action</key> ··· 3781 6926 <key>Red Component</key> 3782 6927 <integer>0</integer> 3783 6928 </dict> 6929 + <key>Link Color (Dark)</key> 6930 + <dict> 6931 + <key>Alpha Component</key> 6932 + <integer>1</integer> 6933 + <key>Blue Component</key> 6934 + <real>0.70932406187057495</real> 6935 + <key>Color Space</key> 6936 + <string>P3</string> 6937 + <key>Green Component</key> 6938 + <real>0.35333043336868286</real> 6939 + <key>Red Component</key> 6940 + <real>0.1451396644115448</real> 6941 + </dict> 6942 + <key>Link Color (Light)</key> 6943 + <dict> 6944 + <key>Alpha Component</key> 6945 + <integer>1</integer> 6946 + <key>Blue Component</key> 6947 + <real>0.70932406187057495</real> 6948 + <key>Color Space</key> 6949 + <string>P3</string> 6950 + <key>Green Component</key> 6951 + <real>0.35333043336868286</real> 6952 + <key>Red Component</key> 6953 + <real>0.1451396644115448</real> 6954 + </dict> 6955 + <key>Match Background Color</key> 6956 + <dict> 6957 + <key>Alpha Component</key> 6958 + <integer>1</integer> 6959 + <key>Blue Component</key> 6960 + <integer>0</integer> 6961 + <key>Color Space</key> 6962 + <string>P3</string> 6963 + <key>Green Component</key> 6964 + <integer>1</integer> 6965 + <key>Red Component</key> 6966 + <integer>1</integer> 6967 + </dict> 6968 + <key>Match Background Color (Dark)</key> 6969 + <dict> 6970 + <key>Alpha Component</key> 6971 + <integer>1</integer> 6972 + <key>Blue Component</key> 6973 + <integer>0</integer> 6974 + <key>Color Space</key> 6975 + <string>P3</string> 6976 + <key>Green Component</key> 6977 + <integer>1</integer> 6978 + <key>Red Component</key> 6979 + <integer>1</integer> 6980 + </dict> 6981 + <key>Match Background Color (Light)</key> 6982 + <dict> 6983 + <key>Alpha Component</key> 6984 + <integer>1</integer> 6985 + <key>Blue Component</key> 6986 + <integer>0</integer> 6987 + <key>Color Space</key> 6988 + <string>P3</string> 6989 + <key>Green Component</key> 6990 + <integer>1</integer> 6991 + <key>Red Component</key> 6992 + <integer>1</integer> 6993 + </dict> 3784 6994 <key>Minimum Contrast</key> 3785 6995 <integer>0</integer> 6996 + <key>Minimum Contrast (Dark)</key> 6997 + <integer>0</integer> 6998 + <key>Minimum Contrast (Light)</key> 6999 + <integer>0</integer> 3786 7000 <key>Mouse Reporting</key> 3787 7001 <true/> 3788 7002 <key>Name</key> ··· 3792 7006 <key>Non-ASCII Anti Aliased</key> 3793 7007 <true/> 3794 7008 <key>Normal Font</key> 3795 - <string>MonaspaceArgon-Regular 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 7009 + <string>MonaspaceArgonVar-Medium 12 {"featureSettings":[{"CTFeatureSelectorIdentifier":14,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":8,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":16,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":12,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":18,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":10,"CTFeatureTypeIdentifier":35},{"CTFeatureSelectorIdentifier":6,"CTFeatureTypeIdentifier":35}]}</string> 3796 7010 <key>Only The Default BG Color Uses Transparency</key> 3797 7011 <false/> 3798 7012 <key>Open Toolbelt</key> ··· 3824 7038 <key>Red Component</key> 3825 7039 <real>0.47127401828765869</real> 3826 7040 </dict> 7041 + <key>Selected Text Color (Dark)</key> 7042 + <dict> 7043 + <key>Blue Component</key> 7044 + <integer>1</integer> 7045 + <key>Green Component</key> 7046 + <integer>1</integer> 7047 + <key>Red Component</key> 7048 + <integer>1</integer> 7049 + </dict> 7050 + <key>Selected Text Color (Light)</key> 7051 + <dict> 7052 + <key>Blue Component</key> 7053 + <real>0.32549019607843138</real> 7054 + <key>Color Space</key> 7055 + <string>sRGB</string> 7056 + <key>Green Component</key> 7057 + <real>0.24705882352941178</real> 7058 + <key>Red Component</key> 7059 + <real>0.25098039215686274</real> 7060 + </dict> 3827 7061 <key>Selection Color</key> 3828 7062 <dict> 3829 7063 <key>Alpha Component</key> ··· 3837 7071 <key>Red Component</key> 3838 7072 <real>0.053524382412433603</real> 3839 7073 </dict> 7074 + <key>Selection Color (Dark)</key> 7075 + <dict> 7076 + <key>Blue Component</key> 7077 + <real>0.019607843137254902</real> 7078 + <key>Green Component</key> 7079 + <real>0.22352941176470587</real> 7080 + <key>Red Component</key> 7081 + <real>0.031372549019607843</real> 7082 + </dict> 7083 + <key>Selection Color (Light)</key> 7084 + <dict> 7085 + <key>Blue Component</key> 7086 + <real>0.94999999999999996</real> 7087 + <key>Color Space</key> 7088 + <string>sRGB</string> 7089 + <key>Green Component</key> 7090 + <real>0.94999999999999996</real> 7091 + <key>Red Component</key> 7092 + <real>0.94999999999999996</real> 7093 + </dict> 3840 7094 <key>Semantic History</key> 3841 7095 <dict> 3842 7096 <key>action</key> ··· 3862 7116 <true/> 3863 7117 <key>Silence Bell</key> 3864 7118 <false/> 7119 + <key>Smart Cursor Color (Dark)</key> 7120 + <false/> 7121 + <key>Smart Cursor Color (Light)</key> 7122 + <false/> 3865 7123 <key>Space</key> 3866 7124 <integer>0</integer> 3867 7125 <key>Status Bar Layout</key> ··· 3871 7129 <key>algorithm</key> 3872 7130 <integer>0</integer> 3873 7131 <key>font</key> 3874 - <string>MonaspaceArgonVar-Medium 12</string> 7132 + <string>MonaspaceArgon-Regular 11</string> 3875 7133 </dict> 3876 7134 <key>components</key> 3877 7135 <array> ··· 3909 7167 <key>algorithm</key> 3910 7168 <integer>0</integer> 3911 7169 <key>font</key> 3912 - <string>MonaspaceArgonVar-Medium 12</string> 7170 + <string>MonaspaceArgon-Regular 11</string> 3913 7171 </dict> 3914 7172 </dict> 3915 7173 </dict> ··· 3949 7207 <key>algorithm</key> 3950 7208 <integer>0</integer> 3951 7209 <key>font</key> 3952 - <string>MonaspaceArgonVar-Medium 12</string> 7210 + <string>MonaspaceArgon-Regular 11</string> 3953 7211 </dict> 3954 7212 </dict> 3955 7213 </dict> ··· 3989 7247 <key>algorithm</key> 3990 7248 <integer>0</integer> 3991 7249 <key>font</key> 3992 - <string>MonaspaceArgonVar-Medium 12</string> 7250 + <string>MonaspaceArgon-Regular 11</string> 3993 7251 </dict> 3994 7252 </dict> 3995 7253 </dict> ··· 4023 7281 <key>algorithm</key> 4024 7282 <integer>0</integer> 4025 7283 <key>font</key> 4026 - <string>MonaspaceArgonVar-Medium 12</string> 7284 + <string>MonaspaceArgon-Regular 11</string> 4027 7285 </dict> 4028 7286 </dict> 4029 7287 </dict> ··· 4057 7315 <key>algorithm</key> 4058 7316 <integer>0</integer> 4059 7317 <key>font</key> 4060 - <string>MonaspaceArgonVar-Medium 12</string> 7318 + <string>MonaspaceArgon-Regular 11</string> 4061 7319 </dict> 4062 7320 </dict> 4063 7321 </dict> ··· 4072 7330 <key>Terminal Type</key> 4073 7331 <string>xterm-256color-italic</string> 4074 7332 <key>Thin Strokes</key> 4075 - <integer>0</integer> 7333 + <integer>4</integer> 4076 7334 <key>Transparency</key> 4077 7335 <integer>0</integer> 4078 7336 <key>Triggers</key> ··· 4106 7364 <true/> 4107 7365 <key>Use Bright Bold</key> 4108 7366 <false/> 7367 + <key>Use Bright Bold (Dark)</key> 7368 + <false/> 7369 + <key>Use Bright Bold (Light)</key> 7370 + <false/> 7371 + <key>Use Cursor Guide (Dark)</key> 7372 + <false/> 7373 + <key>Use Cursor Guide (Light)</key> 7374 + <false/> 4109 7375 <key>Use Italic Font</key> 4110 7376 <true/> 4111 7377 <key>Use Non-ASCII Font</key> 4112 7378 <false/> 7379 + <key>Use Selected Text Color (Dark)</key> 7380 + <true/> 7381 + <key>Use Selected Text Color (Light)</key> 7382 + <true/> 7383 + <key>Use Separate Colors for Light and Dark Mode</key> 7384 + <true/> 4113 7385 <key>Use Tab Color</key> 7386 + <false/> 7387 + <key>Use Tab Color (Dark)</key> 7388 + <false/> 7389 + <key>Use Tab Color (Light)</key> 7390 + <false/> 7391 + <key>Use Underline Color</key> 7392 + <false/> 7393 + <key>Use Underline Color (Dark)</key> 7394 + <false/> 7395 + <key>Use Underline Color (Light)</key> 4114 7396 <false/> 4115 7397 <key>Vertical Spacing</key> 4116 7398 <integer>1</integer>
.config/yadm/alt/.ssh/config.local##class.work

This is a binary file and will not be displayed.

.config/yadm/alt/.ssh/known_hosts##class.work

This is a binary file and will not be displayed.

+523
.config/yadm/alt/Library/Application Support/Stretchly/config.json##os.Darwin
··· 1 + { 2 + "__internal__": { 3 + "migrations": { 4 + "version": "1.15.1" 5 + } 6 + }, 7 + "allScreens": true, 8 + "appExclusions": [], 9 + "appExclusionsCheckInterval": 1000, 10 + "audio": "reverie", 11 + "break": true, 12 + "breakDuration": 300000, 13 + "breakIdeas": [ 14 + { 15 + "data": [ 16 + "Not alone", 17 + "Do you find it hard to take a break alone? Try to do it with a co-worker. Aside from making it easier to stick to breaks, you will have a chance to get to know them better. Taking breaks together increases productivity." 18 + ], 19 + "enabled": true 20 + }, 21 + { 22 + "data": [ 23 + "Step away", 24 + "Do you ever notice how your brain can figure things out by itself? All it takes is to step away from the computer and take a break to think about something totally unrelated." 25 + ], 26 + "enabled": true 27 + }, 28 + { 29 + "data": [ 30 + "Microbreaks", 31 + "Rest is a key component in ensuring the performance of the musculoskeletal system. Frequent breaks can decrease the duration of a task and help lower the exposure to ergonomic injury risk." 32 + ], 33 + "enabled": true 34 + }, 35 + { 36 + "data": [ 37 + "Meditation", 38 + "Research studies suggest that mindfulness-based exercises help decrease anxiety, depression, stress, and pain, and help improve general health, mental health, and quality of life. Not sure how to start? There are numerous apps to help you out." 39 + ], 40 + "enabled": true 41 + }, 42 + { 43 + "data": [ 44 + "Blink", 45 + "Looking at screens for a long time causes you to blink less, thus exposing your eyes to the air. Blink rapidly for a few seconds to refresh the tear film and clear dust from the eye surface." 46 + ], 47 + "enabled": true 48 + }, 49 + { 50 + "data": [ 51 + "Ergonomics", 52 + "Improper height and angle of the keyboard, mouse, monitor or working surface can cause health problems. Take some time to read about desk ergonomics." 53 + ], 54 + "enabled": true 55 + }, 56 + { 57 + "data": [ 58 + "Move", 59 + "There are a lot of ways you can exercise within your office. Try marching in place or doing desk push-ups." 60 + ], 61 + "enabled": true 62 + }, 63 + { 64 + "data": [ 65 + "Change", 66 + "Do you have a stability ball or standing work desk? Consider replacing your desk chair with them for a while." 67 + ], 68 + "enabled": true 69 + }, 70 + { 71 + "data": [ 72 + "Notice", 73 + "Are you daydreaming or having trouble focusing? It is a sign that you need to take a break." 74 + ], 75 + "enabled": true 76 + }, 77 + { 78 + "data": [ 79 + "Tech", 80 + "How about taking a no-tech walk?" 81 + ], 82 + "enabled": true 83 + }, 84 + { 85 + "data": [ 86 + "Metabolism", 87 + "Emerging research shows that sitting for long periods of time contributes to risk of metabolic syndrome, heart attack and stroke risk and overall death risk, among others. Taking regular walking breaks can help your circulation, working to counteract some of those problems." 88 + ], 89 + "enabled": true 90 + }, 91 + { 92 + "data": [ 93 + "Active Meetings", 94 + "How about moving meetings from the conference room to the concourse? Walking not only burns calories but it may even foster a sense of collaboration." 95 + ], 96 + "enabled": true 97 + }, 98 + { 99 + "data": [ 100 + "Fruit", 101 + "Take your time and eat some fruit. Slowly. Notice the flavor, the texture, the freshness." 102 + ], 103 + "enabled": true 104 + }, 105 + { 106 + "data": [ 107 + "Bathrooms", 108 + "Walk to the farthest bathroom in the worksite facility when going to the restroom." 109 + ], 110 + "enabled": true 111 + }, 112 + { 113 + "data": [ 114 + "Coffee break", 115 + "Going on coffee break? Consider doing a 5-minute walk every time you go for one." 116 + ], 117 + "enabled": true 118 + }, 119 + { 120 + "data": [ 121 + "Colleagues", 122 + "Do not email or message office colleagues, walk to their desks to communicate with them." 123 + ], 124 + "enabled": true 125 + }, 126 + { 127 + "data": [ 128 + "Learning", 129 + "In a study of healthy volunteers, NIH researchers found that taking short breaks, early and often, may help our brains learn new skills." 130 + ], 131 + "enabled": true 132 + }, 133 + { 134 + "data": [ 135 + "Exercise", 136 + "Evidence suggests small amounts of regular exercise can bring dramatic health benefits, including measurably reducing stress." 137 + ], 138 + "enabled": true 139 + }, 140 + { 141 + "data": [ 142 + "Repeat", 143 + "Have you found your stretch-ly-routine? Do not forget to repeat it for more than once to better fight effects of prolonged sitting." 144 + ], 145 + "enabled": true 146 + }, 147 + { 148 + "data": [ 149 + "Wrist and forearm", 150 + "Extend your arms with the palms facing towards you, then slowly rotate the hands four times clockwise, then four times counter-clockwise." 151 + ], 152 + "enabled": true 153 + }, 154 + { 155 + "data": [ 156 + "Back stretching", 157 + "Join your hands behind your head, then lift them together up above your head ending with your palms facing upward." 158 + ], 159 + "enabled": true 160 + }, 161 + { 162 + "data": [ 163 + "Mobilize", 164 + "For every thirty minutes of stagnation, you should have at least one minute of stimulation." 165 + ], 166 + "enabled": true 167 + }, 168 + { 169 + "data": [ 170 + "7 Minute Workout", 171 + "This workout packs in a full-body exercise routine in a fraction of the time. But as with any exercise, be careful. There are numerous apps to get you started." 172 + ], 173 + "enabled": true 174 + }, 175 + { 176 + "data": [ 177 + "Pulse", 178 + " Raise your pulse rate to 120 beats per minute for 20 straight minutes four or five times a week doing anything you enjoy. Regularly raising your heart rate results in improved cardiovascular health." 179 + ], 180 + "enabled": true 181 + }, 182 + { 183 + "data": [ 184 + "Take the stairs ", 185 + "Studies have shown that stair climbing, which is considered vigorous-intensity physical activity, burns more calories per minute than jogging." 186 + ], 187 + "enabled": true 188 + }, 189 + { 190 + "data": [ 191 + "Make art", 192 + "Art therapy is known to have great mental health benefits, especially when it comes to stress management. How about writing a quick poem, taking a picture or painting something small?" 193 + ], 194 + "enabled": true 195 + }, 196 + { 197 + "data": [ 198 + "Declutter", 199 + "A clean space helps your focus at work and is often linked to positive emotions like happiness." 200 + ], 201 + "enabled": true 202 + }, 203 + { 204 + "data": [ 205 + "Lunch outside", 206 + "Nature is linked to positive emotions and decreased stress and anxiety. Whenever possible, try to take your daily lunch break outside, surrounded by some greenery." 207 + ], 208 + "enabled": true 209 + }, 210 + { 211 + "data": [ 212 + "Public transport", 213 + "If you use public transport regularly, you can stand instead of sitting. If it is possible, try to replace as many of your daily trips as possible with walking or cycling." 214 + ], 215 + "enabled": true 216 + }, 217 + { 218 + "data": [ 219 + "Yawning", 220 + "Yawning can be really helpful, as it produces tears to help moisten and lubricate the eyes." 221 + ], 222 + "enabled": true 223 + }, 224 + { 225 + "data": [ 226 + "Focus change", 227 + "Hold one finger close to the eye and focus on it. Slowly move the finger away, focus far into the distance and then back to the finger. Bring the finger back and focus on something far away." 228 + ], 229 + "enabled": true 230 + }, 231 + { 232 + "data": [ 233 + "Palming", 234 + "While seated, brace elbows on the desk and close to the desk edge. Let your weight fall forward and cup hands over eyes. Close your eyes and inhale slowly through nose and hold for few seconds. Continue deep breathing." 235 + ], 236 + "enabled": true 237 + }, 238 + { 239 + "data": [ 240 + "Hand squeezes", 241 + "Squeeze a pair of balled-up socks or a soft rubber ball, hold for 5 seconds. Repeat whole process a few times." 242 + ], 243 + "enabled": true 244 + }, 245 + { 246 + "data": [ 247 + "Slow Breathing", 248 + "Emerging research suggests potential for use of controlled slow breathing techniques as a means of optimising physiological parameters that appear to be associated with health and longevity." 249 + ], 250 + "enabled": true 251 + }, 252 + { 253 + "data": [ 254 + "Imaginative visualization", 255 + "Close your eyes and imagine yourself in a peaceful and calming place, such as a beach or a forest, focusing on the sights, sounds, and sensations of that environment." 256 + ], 257 + "enabled": true 258 + } 259 + ], 260 + "breakInterval": 2, 261 + "breakNotification": true, 262 + "breakNotificationInterval": 30000, 263 + "breakPostponableDurationPercent": 30, 264 + "breakPostpone": true, 265 + "breakPostponeTime": 300000, 266 + "breakPostponesLimit": 1, 267 + "breakStartSoundPlaying": false, 268 + "breakStrictMode": false, 269 + "breakWindowHeight": 0.85, 270 + "breakWindowWidth": 0.85, 271 + "checkNewVersion": true, 272 + "currentTimeInBreaks": false, 273 + "endBreakShortcut": "CmdOrCtrl+Esc", 274 + "fullscreen": false, 275 + "ideas": true, 276 + "isFirstRun": false, 277 + "language": "en", 278 + "mainColor": "#633738", 279 + "microbreak": true, 280 + "microbreakDuration": 20000, 281 + "microbreakIdeas": [ 282 + { 283 + "data": "Go grab a glass of water.", 284 + "enabled": true 285 + }, 286 + { 287 + "data": "Slowly look all the way left, then right.", 288 + "enabled": true 289 + }, 290 + { 291 + "data": "Slowly look all the way up, then down.", 292 + "enabled": true 293 + }, 294 + { 295 + "data": "Close your eyes and take few deep breaths.", 296 + "enabled": true 297 + }, 298 + { 299 + "data": "Close your eyes and relax.", 300 + "enabled": true 301 + }, 302 + { 303 + "data": "Stretch your legs.", 304 + "enabled": true 305 + }, 306 + { 307 + "data": "Stretch your arms.", 308 + "enabled": true 309 + }, 310 + { 311 + "data": "Is your sitting posture correct?", 312 + "enabled": true 313 + }, 314 + { 315 + "data": "Slowly turn head to side and hold for 10 seconds.", 316 + "enabled": true 317 + }, 318 + { 319 + "data": "Slowly tilt head to side and hold for 5-10 seconds.", 320 + "enabled": true 321 + }, 322 + { 323 + "data": "Stand from your chair and stretch.", 324 + "enabled": true 325 + }, 326 + { 327 + "data": "Refocus your eyes on an object at least 20 meters away.", 328 + "enabled": true 329 + }, 330 + { 331 + "data": "Take a moment to think about something you appreciate.", 332 + "enabled": true 333 + }, 334 + { 335 + "data": "Take a moment to smile at being alive.", 336 + "enabled": true 337 + }, 338 + { 339 + "data": "A truly ergonomic workstation is one that you regularly push away from.", 340 + "enabled": true 341 + }, 342 + { 343 + "data": "Close your eyes and count your breaths.", 344 + "enabled": true 345 + }, 346 + { 347 + "data": "Close your eyes and name the things you hear.", 348 + "enabled": true 349 + }, 350 + { 351 + "data": "Place your fingertips on your shoulders. Roll your shoulders forward for 10 seconds, then backward.", 352 + "enabled": true 353 + }, 354 + { 355 + "data": "Raise your right arm, stretch it over your head to the left, and hold for 10 seconds. Repeat on the other side.", 356 + "enabled": true 357 + }, 358 + { 359 + "data": "With your right hand, grab each finger of your left hand in turn and squeeze. Repeat on the other side.", 360 + "enabled": true 361 + }, 362 + { 363 + "data": "Stand up and do a lunge. Hold for 10 seconds, then do the other leg.", 364 + "enabled": true 365 + }, 366 + { 367 + "data": "Close your eyes and simply notice whatever arises in current moment, without judgement.", 368 + "enabled": true 369 + }, 370 + { 371 + "data": "Focus every 20 minutes for 20 seconds on an object at 20 feet distance.", 372 + "enabled": true 373 + }, 374 + { 375 + "data": "If you need help, ask for it.", 376 + "enabled": true 377 + }, 378 + { 379 + "data": "Do one thing at a time.", 380 + "enabled": true 381 + }, 382 + { 383 + "data": "Is your attention spent wisely?", 384 + "enabled": true 385 + }, 386 + { 387 + "data": "Change your sitting posture.", 388 + "enabled": true 389 + }, 390 + { 391 + "data": "Expose your eyes to natural light.", 392 + "enabled": true 393 + }, 394 + { 395 + "data": "With your eyes closed, slowly and gently raise your eyes to the ceiling and back down to the floor.", 396 + "enabled": true 397 + }, 398 + { 399 + "data": "With your eyes closed, slowly and gently move your eyes to the left, then slowly to the right.", 400 + "enabled": true 401 + }, 402 + { 403 + "data": "Shake your hands out to get some relief.", 404 + "enabled": true 405 + }, 406 + { 407 + "data": "One at a time, touch the tip of each finger to the tip of your thumb so they make an O-shape.", 408 + "enabled": true 409 + }, 410 + { 411 + "data": "Make a fist and then slide your fingers up until they point toward the ceiling, like you're telling someone to stop.", 412 + "enabled": true 413 + }, 414 + { 415 + "data": "Make a fist and then fan your fingers out and stretch them as far as you can.", 416 + "enabled": true 417 + }, 418 + { 419 + "data": "Sit tall, arms hanging at your sides, and slowly rotate neck in one direction in a large circle.", 420 + "enabled": true 421 + }, 422 + { 423 + "data": "Stand tall and slowly tilt your head toward the shoulder using the same hand until you feel a stretch.", 424 + "enabled": true 425 + }, 426 + { 427 + "data": "Stand tall with your arms by your side. Squeeze your shoulder blades together and hold.", 428 + "enabled": true 429 + }, 430 + { 431 + "data": "Stand tall with your arms raised along your shoulders. Move hands slightly behind your back, hold for a second and return.", 432 + "enabled": true 433 + }, 434 + { 435 + "data": "Sit on the edge of your chair, twist your torso to one side and hold for 10-15 seconds. Repeat on the other side.", 436 + "enabled": true 437 + }, 438 + { 439 + "data": "Stand up and put one foot on a nearby object, like a chair or step stool. Keep your knee bent and hold for 10-15 seconds. Repeat with the other foot.", 440 + "enabled": true 441 + }, 442 + { 443 + "data": "Stand with your feet shoulder-width apart, lower your body down as if you were sitting back into a chair, then stand back up. Repeat several times.", 444 + "enabled": true 445 + }, 446 + { 447 + "data": "Stand with you back and hands on a wall, then slowly move your arms up and down as if you were making snow angels.", 448 + "enabled": true 449 + }, 450 + { 451 + "data": "Stand facing a wall and place your hands on it, then do several push-ups.", 452 + "enabled": true 453 + }, 454 + { 455 + "data": "Sit on the edge of your chair and extend one leg straight out in front of you, holding for 10-15 seconds. Repeat with the other leg.", 456 + "enabled": true 457 + }, 458 + { 459 + "data": "Stand facing a wall, put one foot back and the other foot forward, then lean into the wall. Repeat with the other leg.", 460 + "enabled": true 461 + }, 462 + { 463 + "data": "Hold one arm straight up, then use the other arm to gently push the elbow of the first arm towards your head. Hold for 10-15 seconds. Repeat with the other arm.", 464 + "enabled": true 465 + }, 466 + { 467 + "data": "Tilt your head to one side, then to the other side, and then gently tilt it forward and backward.", 468 + "enabled": true 469 + }, 470 + { 471 + "data": "Reach one arm across your chest, hold onto the elbow with the other hand, and gently pull it in towards your chest. Repeat with the other arm.", 472 + "enabled": true 473 + }, 474 + { 475 + "data": "Stand up, put one foot on a nearby object, like a chair or step stool, and reach down to touch your toes. Repeat with the other leg.", 476 + "enabled": true 477 + }, 478 + { 479 + "data": "Stand in a doorway and place one arm on each side of the doorway, then gently lean forward until you feel a stretch in your chest.", 480 + "enabled": true 481 + }, 482 + { 483 + "data": "Sit on the edge of a chair or on the floor, and place the soles of your feet together, gently pressing down with your elbows to stretch your inner thighs.", 484 + "enabled": true 485 + } 486 + ], 487 + "microbreakInterval": 2400000, 488 + "microbreakNotification": true, 489 + "microbreakNotificationInterval": 10000, 490 + "microbreakPostponableDurationPercent": 30, 491 + "microbreakPostpone": true, 492 + "microbreakPostponeTime": 120000, 493 + "microbreakPostponesLimit": 1, 494 + "microbreakStartSoundPlaying": false, 495 + "microbreakStrictMode": false, 496 + "miniBreakAudio": "reverie", 497 + "miniBreakColor": "#633738", 498 + "monitorDnd": true, 499 + "morningHour": "sunrise", 500 + "naturalBreaks": true, 501 + "naturalBreaksInactivityResetTime": 300000, 502 + "notifyNewVersion": true, 503 + "opacity": 0.9, 504 + "pauseBreaksToggleShortcut": "", 505 + "pauseForSuspendOrLock": true, 506 + "posLatitude": 42.37, 507 + "posLongitude": 71.10, 508 + "resetBreaksShortcut": "", 509 + "screen": "primary", 510 + "showBreaksAsRegularWindows": false, 511 + "showTrayIcon": true, 512 + "silentNotifications": false, 513 + "skipToNextLongBreakShortcut": "", 514 + "skipToNextMiniBreakShortcut": "", 515 + "skipToNextScheduledBreakShortcut": "", 516 + "themeSource": "system", 517 + "timeToBreakInTray": false, 518 + "transparentMode": false, 519 + "useIdeasFromSettings": false, 520 + "useMonochromeInvertedTrayIcon": false, 521 + "useMonochromeTrayIcon": true, 522 + "volume": 1 523 + }
+1 -1
.gitmodules
··· 36 36 url = https://github.com/beloglazov/vim-textobj-quotes.git 37 37 [submodule ".config/nvim/pack/bundle/start/monokai-nightasty"] 38 38 path = .config/nvim/pack/bundle/start/monokai-nightasty 39 - url = https://github.com/polirritmico/monokai-nightasty.nvim 39 + url = https://github.com/polirritmico/monokai-nightasty.nvim.git
+1 -1
.tmux.conf .config/tmux/tmux.conf
··· 1 1 set -g mode-keys vi 2 2 set -g mouse on 3 - set -g default-terminal "screen-256color" 3 + set -g default-terminal "tmux-256color" 4 4 set -g default-shell $SHELL 5 5