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

+1089 -1039
+26 -17
.config/Code/User/settings.json
··· 48 48 "[go]": { 49 49 "editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToImplementation", 50 50 "editor.gotoLocation.alternativeImplementationCommand": "editor.action.goToReferences", 51 + "editor.wordWrap": "on", 51 52 }, 52 53 "[html]": { 53 54 "editor.defaultFormatter": "vscode.html-language-features" ··· 71 72 }, 72 73 "[latex]": { 73 74 "editor.formatOnSave": true, 75 + }, 76 + "[lua]": { 77 + "editor.defaultFormatter": "JohnnyMorganz.stylua", 74 78 }, 75 79 "[markdown]": { 76 80 "editor.wordWrap": "on", ··· 402 406 "editor.letterSpacing": -0.2, 403 407 "editor.linkedEditing": true, 404 408 "editor.minimap.enabled": true, 409 + "editor.minimap.sectionHeaderFontSize": 12, 410 + "editor.minimap.sectionHeaderLetterSpacing": 0, 405 411 "editor.minimap.showSlider": "always", 406 412 "editor.multiCursorModifier": "alt", 407 413 "editor.lineNumbers": "on", ··· 639 645 "editor.stickyScroll.maxLineCount": 10, 640 646 "editor.suggest.localityBonus": true, 641 647 "editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-_", 648 + "editor.wrappingIndent": "deepIndent", 642 649 643 650 "emojisense.unicodeCompletionsEnabled": false, 644 651 "emojisense.markupCompletionsEnabled": true, ··· 818 825 "git.openDiffOnClick": true, 819 826 "git.showInlineOpenFileAction": true, 820 827 828 + "github.copilot.chat.welcomeMessage": "never", 829 + "github.copilot.editor.enableAutoCompletions": true, 830 + "github.copilot.editor.enableCodeActions": false, 821 831 "github.copilot.enable": { 822 832 "*": true, 823 833 "plaintext": false, 824 834 "markdown": false, 825 - "scminput": false 835 + "scminput": false, 826 836 }, 827 - "github.copilot.editor.enableAutoCompletions": true, 828 - "github.copilot.editor.enableCodeActions": false, 837 + "github.copilot.preferredAccount": "ichamberlain_JNPR", 829 838 830 839 "githubIssues.useBranchForIssues": "prompt", 831 840 "githubIssues.assignWhenWorking": false, ··· 1044 1053 "multiDiffEditor.experimental.enabled": false, 1045 1054 1046 1055 "nginx-conf-hint.syntax": "sublime", 1056 + 1057 + "nix.enableLanguageServer": false, 1047 1058 1048 1059 "notebook.output.textLineLimit": 500, 1049 1060 "notebook.cellToolbarVisibility": "hover", ··· 1355 1366 1356 1367 "typescript.check.npmIsInstalled": false, 1357 1368 1358 - "vscode_custom_css.imports": [ 1359 - "file:///home/deck/.config/Code/User/custom.css", 1360 - "file:///Users/ichamberlain/.config/Code/User/custom.css", 1361 - "file:///Users/ianchamberlain/.config/Code/User/custom.css", 1362 - 1363 - // https://github.com/be5invis/vscode-custom-css/issues/194 1364 - // "file:///${userHome}/.config/Code/User/custom.css", 1365 - ], 1366 - 1367 - // Mouse selection seems to cause more problems than it's worth... 1368 - // TODO maybe worth reconsidering 1369 - "vscode-neovim.mouseSelectionStartVisualMode": false, 1370 - 1371 1369 "vscode-neovim.logOutputToConsole": true, 1372 - "vscode-neovim.neovimClean": true, 1370 + "vscode-neovim.neovimClean": false, 1373 1371 "vscode-neovim.afterInitConfig": [], 1374 1372 "vscode-neovim.neovimExecutablePaths.darwin": "nvim", 1375 1373 "vscode-neovim.statusLineSeparator": " ⏐ ", // alternatively maybe § but it's a bit noisy ··· 1447 1445 "terminal.ansiYellow": "#a9a722", 1448 1446 }, 1449 1447 1448 + "[Cute]": { 1449 + // "activityBar.background": "#fceaf1", 1450 + "activityBar.inactiveForeground": "#333333b3", 1451 + "activityBar.background":"#fcdee9",// "#fceaf1", 1452 + "activityBar.foreground": "#333333", 1453 + "activityBar.dropBorder": "#ff4574", 1454 + "activityBar.activeBorder": "#ff4574", 1455 + "activityBar.border": "#f4b4cc", 1456 + }, 1457 + 1450 1458 // light theme (Night Owlish Light): 1451 1459 "terminal.background": "#ffffff", 1452 1460 "terminal.foreground": "#403f53", ··· 1482 1490 "workbench.fontAliasing": "auto", 1483 1491 "workbench.settings.editor": "json", 1484 1492 "workbench.startupEditor": "newUntitledFile", 1493 + "workbench.trustedDomains.promptInTrustedWorkspace": true, 1485 1494 1486 1495 "xmlTools.enforcePrettySelfClosingTagOnFormat": true, 1487 1496 "xmlTools.splitAttributesOnFormat": true,
+3
.config/fish/conf.d/50-config.fish
··· 93 93 test -f ~/.nix-profile/etc/profile.d/nix.fish 94 94 and source ~/.nix-profile/etc/profile.d/nix.fish 95 95 96 + test -d ~/.nix-profile/share/terminfo 97 + and set -gx TERMINFO_DIRS ":$HOME/.nix-profile/share/terminfo" 98 + 96 99 set -gx nvm_default_version lts/iron 97 100 if status is-interactive; and test -f .nvmrc; and functions -q nvm 98 101 nvm use --silent
+2 -3
.config/fish/functions/__fish_bind_dollar.fish
··· 5 5 # typing `!\$`). Probably overkill. 6 6 commandline --insert '$' 7 7 case "!" "*!" 8 - set -l last_cmd $history[1] 9 - set -l tokenized (string split ' ' -- $last_cmd) 10 - commandline --current-token -- $tokenized[-1] 8 + echo $history[1] | read --list --tokenize last_cmdline 9 + commandline --current-token -- (string escape --no-quoted -- $last_cmdline[-1]) 11 10 commandline --function repaint 12 11 case "*" 13 12 commandline --insert '$'
+3
.config/fish/functions/yadm.fish
··· 1 + function yadm --wraps=git --description 'alias yadm git' 2 + command yadm $argv 3 + end
+11 -11
.config/home-manager/flake.lock
··· 36 36 "type": "github" 37 37 } 38 38 }, 39 - "root": { 40 - "inputs": { 41 - "home-manager": "home-manager", 42 - "nixpkgs": "nixpkgs", 43 - "unstable": "unstable" 44 - } 45 - }, 46 - "unstable": { 39 + "nixpkgs-unstable": { 47 40 "locked": { 48 - "lastModified": 1718160348, 49 - "narHash": "sha256-9YrUjdztqi4Gz8n3mBuqvCkMo4ojrA6nASwyIKWMpus=", 41 + "lastModified": 1720418205, 42 + "narHash": "sha256-cPJoFPXU44GlhWg4pUk9oUPqurPlCFZ11ZQPk21GTPU=", 50 43 "owner": "nixos", 51 44 "repo": "nixpkgs", 52 - "rev": "57d6973abba7ea108bac64ae7629e7431e0199b6", 45 + "rev": "655a58a72a6601292512670343087c2d75d859c1", 53 46 "type": "github" 54 47 }, 55 48 "original": { ··· 57 50 "ref": "nixos-unstable", 58 51 "repo": "nixpkgs", 59 52 "type": "github" 53 + } 54 + }, 55 + "root": { 56 + "inputs": { 57 + "home-manager": "home-manager", 58 + "nixpkgs": "nixpkgs", 59 + "nixpkgs-unstable": "nixpkgs-unstable" 60 60 } 61 61 } 62 62 },
+6 -9
.config/home-manager/flake.nix
··· 1 1 { 2 - description = "Home Manager configuration of ichamberlain"; 2 + description = "Home Manager flake configuration"; 3 3 4 4 inputs = { 5 - # Specify the source of Home Manager and Nixpkgs. 6 5 nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; 7 - unstable.url = "github:nixos/nixpkgs/nixos-unstable"; 8 6 home-manager = { 9 7 url = "github:nix-community/home-manager"; 10 8 inputs.nixpkgs.follows = "nixpkgs"; 11 9 }; 10 + 11 + nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; 12 12 }; 13 13 14 - outputs = { nixpkgs, home-manager, ... }: 14 + outputs = { nixpkgs, home-manager, nixpkgs-unstable, ... }: 15 15 let 16 16 system = "x86_64-linux"; 17 17 pkgs = nixpkgs.legacyPackages.${system}; 18 + pkgsUnstable = nixpkgs-unstable.legacyPackages.${system}; 18 19 in { 19 20 homeConfigurations."ichamberlain" = home-manager.lib.homeManagerConfiguration { 20 21 inherit pkgs; 21 22 22 - # Specify your home configuration modules here, for example, 23 - # the path to your home.nix. 23 + extraSpecialArgs = { inherit pkgsUnstable; }; 24 24 modules = [ ./home.nix ]; 25 - 26 - # Optionally use extraSpecialArgs 27 - # to pass through arguments to home.nix 28 25 }; 29 26 }; 30 27 }
+20 -26
.config/home-manager/home.nix
··· 1 - { config, pkgs, lib, ... }: 1 + { config, pkgs, lib, pkgsUnstable, ... }: 2 + { 2 3 3 - { 4 + # TODO: may need to use lix-installer to upgrade to a non-beta version: 5 + # https://git.lix.systems/lix-project/lix/issues/411 6 + # https://git.lix.systems/lix-project/lix/issues/431 7 + # https://git.lix.systems/lix-project/lix-installer/issues/10 8 + nix.package = pkgs.lix; 9 + 4 10 programs = { 5 11 # Let Home Manager install and manage itself. 6 12 home-manager.enable = true; ··· 13 19 htop.enable = true; 14 20 neovim.enable = true; 15 21 ripgrep.enable = true; 16 - thefuck.enable = true; 17 22 }; 18 23 19 24 # Just use my own configs for these instead of having home-manager generate ··· 45 50 # syncthing.enable = true; 46 51 }; 47 52 48 - nixpkgs.overlays = [ 49 - (final: prev: { 50 - lnav = prev.lnav.overrideAttrs (_: rec { 51 - version = "0.12.2"; 52 - 53 - # Can't just use an override, since lnav doesn't use finalAttrs pattern: 54 - # https://github.com/NixOS/nixpkgs/issues/293452 55 - src = pkgs.fetchFromGitHub { 56 - owner = "tstack"; 57 - repo = "lnav"; 58 - rev = "v${version}"; 59 - sha256 = "grEW3J50osKJzulNQFN7Gir5+wk1qFPc/YaT+EZMAqs="; 60 - }; 61 - 62 - patches = []; 63 - }); 64 - }) 65 - ]; 66 - 67 53 home.packages = with pkgs; [ 54 + # Fish completions + path setup stuff, needed since I'm not letting 55 + # home-manager do all the shell setup for me. Most notably, this creates 56 + # ~/.nix-profile/etc/profile.d/nix.fish - don't remove without a replacement! 57 + config.nix.package 58 + 68 59 cacert 69 60 docker-compose 70 61 git-crypt 71 - lix # For e.g. fish completions 72 - lnav 62 + pkgsUnstable.lnav 73 63 shellcheck 64 + thefuck 74 65 tree 75 66 tmux 76 67 tmux.terminfo ··· 78 69 yadm 79 70 ]; 80 71 81 - # https://github.com/NixOS/nixpkgs/issues/66716 82 - # https://github.com/NixOS/nixpkgs/issues/210223 72 + # TODO: https://github.com/nix-community/home-manager/issues/5602 83 73 home.sessionVariables = { 74 + # https://github.com/NixOS/nixpkgs/issues/66716 75 + # https://github.com/NixOS/nixpkgs/issues/210223 84 76 SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; 85 77 SYSTEM_CERTIFICATE_PATH = "${config.home.sessionVariables.SSL_CERT_FILE}"; 86 78 GIT_SSL_CAINFO = "${config.home.sessionVariables.SSL_CERT_FILE}"; 79 + 80 + TERMINFO_DIRS = ":${config.home.profileDirectory}/share/terminfo"; 87 81 }; 88 82 89 83 # Home Manager needs a bit of information about you and the
+2 -2
.config/keepassxc/keepassxc.ini
··· 2 2 AutoReloadOnChange=true 3 3 AutoSaveAfterEveryChange=true 4 4 AutoSaveOnExit=true 5 - AutoTypeDelay=20 5 + AutoTypeDelay=50 6 6 AutoTypeEntryTitleMatch=true 7 7 AutoTypeEntryURLMatch=true 8 - AutoTypeStartDelay=500 8 + AutoTypeStartDelay=600 9 9 BackupBeforeSave=false 10 10 ConfigVersion=2 11 11 DropToBackgroundOnCopy=false
-4
.config/nix-darwin/configuration.nix
··· 34 34 # Used for backwards compatibility, please read the changelog before changing. 35 35 # $ darwin-rebuild changelog 36 36 system.stateVersion = 4; 37 - 38 - # The platform the configuration will be used on. 39 - # TODO: base this off hostname or something 40 - nixpkgs.hostPlatform = "aarch64-darwin"; 41 37 }
+71 -7
.config/nix-darwin/flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "home-manager": { 4 + "inputs": { 5 + "nixpkgs": [ 6 + "home-manager-config", 7 + "nixpkgs" 8 + ] 9 + }, 10 + "locked": { 11 + "lastModified": 1715486357, 12 + "narHash": "sha256-4pRuzsHZOW5W4CsXI9uhKtiJeQSUoe1d2M9mWU98HC4=", 13 + "owner": "nix-community", 14 + "repo": "home-manager", 15 + "rev": "44677a1c96810a8e8c4ffaeaad10c842402647c1", 16 + "type": "github" 17 + }, 18 + "original": { 19 + "owner": "nix-community", 20 + "repo": "home-manager", 21 + "type": "github" 22 + } 23 + }, 24 + "home-manager-config": { 25 + "inputs": { 26 + "home-manager": "home-manager", 27 + "nixpkgs": [ 28 + "nixpkgs" 29 + ], 30 + "unstable": [ 31 + "unstable" 32 + ] 33 + }, 34 + "locked": { 35 + "dir": ".config/home-manager", 36 + "lastModified": 1720706550, 37 + "narHash": "sha256-veZwGvG2tqKsAXxxr2nn2K+Vg+s7pFNUig8UU0p4bnk=", 38 + "ref": "refs/heads/main", 39 + "rev": "51848d027e1a066f8d724df0688ac52884402563", 40 + "revCount": 634, 41 + "type": "git", 42 + "url": "file:///Users/ichamberlain/.local/share/yadm/repo.git?dir=.config/home-manager" 43 + }, 44 + "original": { 45 + "id": "home-manager-configuration", 46 + "type": "indirect" 47 + } 48 + }, 3 49 "nix-darwin": { 4 50 "inputs": { 5 51 "nixpkgs": [ ··· 23 69 }, 24 70 "nixpkgs": { 25 71 "locked": { 26 - "lastModified": 1720058333, 27 - "narHash": "sha256-gM2RCi5XkxmcsZ44pUkKIYBiBMfZ6u7MdcZcykmccrs=", 28 - "owner": "NixOS", 72 + "lastModified": 1720691131, 73 + "narHash": "sha256-CWT+KN8aTPyMIx8P303gsVxUnkinIz0a/Cmasz1jyIM=", 74 + "owner": "nixos", 29 75 "repo": "nixpkgs", 30 - "rev": "6842b061970bf96965d66fcc86a28e1f719aae95", 76 + "rev": "a046c1202e11b62cbede5385ba64908feb7bfac4", 31 77 "type": "github" 32 78 }, 33 79 "original": { 34 - "owner": "NixOS", 35 - "ref": "nixpkgs-unstable", 80 + "owner": "nixos", 81 + "ref": "nixos-24.05", 36 82 "repo": "nixpkgs", 37 83 "type": "github" 38 84 } 39 85 }, 40 86 "root": { 41 87 "inputs": { 88 + "home-manager-config": "home-manager-config", 42 89 "nix-darwin": "nix-darwin", 43 - "nixpkgs": "nixpkgs" 90 + "nixpkgs": "nixpkgs", 91 + "unstable": "unstable" 92 + } 93 + }, 94 + "unstable": { 95 + "locked": { 96 + "lastModified": 1720687749, 97 + "narHash": "sha256-nqJ+iK/zyqCJ/YShqCpZ2cJKE1UtjZIEUWLUFZqvxcA=", 98 + "owner": "NixOS", 99 + "repo": "nixpkgs", 100 + "rev": "6af55cb91ca2005516b9562f707bb99c8f79bf77", 101 + "type": "github" 102 + }, 103 + "original": { 104 + "owner": "NixOS", 105 + "ref": "nixpkgs-unstable", 106 + "repo": "nixpkgs", 107 + "type": "github" 44 108 } 45 109 } 46 110 },
+41 -15
.config/nix-darwin/flake.nix
··· 1 1 { 2 - description = "Default darwin flake"; 2 + description = "Darwin flake configuration"; 3 3 4 4 inputs = { 5 - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 5 + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; 6 + unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 6 7 7 8 nix-darwin = { 8 9 # https://github.com/LnL7/nix-darwin/pull/741 9 10 url = "github:Enzime/nix-darwin/default-flake-location"; 10 11 inputs.nixpkgs.follows = "nixpkgs"; 11 12 }; 13 + 14 + home-manager-config = { 15 + # This seems to be the only way to properly deal with the dotfiles 16 + # checkout being in a different place for different usernames: 17 + # https://discourse.nixos.org/t/flake-input-from-local-git-repo/27609/3 18 + # In theory I could probably even add the registry as part of nix-darwin activation, 19 + # although it's kinda chicken + egg. Maybe just part of yadm bootstrap? 20 + # 21 + # Also TBD: does it require things to be checked in? At least it's still local, 22 + # so I guess it would just require committing home-manager config before evaluation, 23 + # which is a pain but better than having to push to github first. 24 + url = "flake:home-manager-configuration"; 25 + inputs.nixpkgs.follows = "nixpkgs"; 26 + inputs.unstable.follows = "unstable"; 27 + }; 12 28 }; 13 29 14 - outputs = { self, nix-darwin, nixpkgs } @ inputs: 30 + outputs = { self, nix-darwin, nixpkgs, home-manager-config, ... } @ inputs: 15 31 let 16 - hosts = [ 17 - "MacBook-Pro" 18 - ]; 19 - # This feels... inelegant, there must be some better way to do it 20 - forEachHost = result: builtins.listToAttrs (map (host: { 21 - name = host; 22 - value = result host; 23 - }) hosts); 32 + hosts = { 33 + MacBook-Pro = { 34 + system = "aarch64-darwin"; 35 + user = "ianchamberlain"; 36 + }; 37 + ichamberlain-mbp-2 = { 38 + system = "x86_64-darwin"; 39 + user = "ichamberlain"; 40 + }; 41 + }; 42 + inherit (nixpkgs) lib; 43 + inherit (nix-darwin.lib) darwinSystem; 24 44 in { 25 - darwinConfigurations = forEachHost (host: nix-darwin.lib.darwinSystem { 26 - modules = [ ./configuration.nix ]; 45 + darwinConfigurations = lib.mapAttrs (hostname: host: darwinSystem { 46 + inherit (host) system; 47 + 48 + modules = [ 49 + ./configuration.nix 50 + home-manager-config.inputs.home-manager.darwinModules.home-manager 51 + home-manager-config.homeConfigurations.${host.user} 52 + ]; 27 53 specialArgs = { inherit self host; }; 28 - }); 54 + }) hosts; 29 55 30 56 # Expose the package set, including overlays, for convenience. 31 - darwinPackages = forEachHost (host: self.darwinConfigurations."${host}".pkgs); 57 + darwinPackages = lib.mapAttrs (hostname: _: self.darwinConfigurations.${hostname}.pkgs) hosts; 32 58 }; 33 59 }
+27 -6
.config/nvim/init.lua
··· 15 15 end 16 16 17 17 -- https://github.com/neovim/neovim/issues/2437#issuecomment-522236703 18 - vim.g.python_host_prog = HOME .. "/.pyenv/shims/python2" 18 + vim.g.python_host_prog = HOME .. "/.pyenv/shims/python2" 19 19 vim.g.python3_host_prog = HOME .. "/.pyenv/shims/python3" 20 20 21 21 -- https://stackoverflow.com/a/5563142/14436105 ··· 82 82 -- For whatever reason, nvim buffers sometimes open without line numbers: 83 83 vim.opt.number = true 84 84 85 + -- Handle folds a little nicer. <C-J>,<NL> and arrow keys can still be used to navigate into fold. 86 + -- https://github.com/vscode-neovim/vscode-neovim/issues/58#issuecomment-1879583457 87 + -- Unclear why a normal vim.keymap.set doesn't work in this case 88 + local function mapMove(key, direction) 89 + vim.keymap.set("n", key, function() 90 + local count = vim.v.count 91 + local v = 1 92 + local style = "wrappedLine" 93 + if count > 0 then 94 + v = count 95 + style = "line" 96 + end 97 + vscode.action("cursorMove", { 98 + args = { 99 + to = direction, 100 + by = style, 101 + value = v, 102 + }, 103 + }) 104 + end, { silent = true }) 105 + end 106 + 107 + mapMove("k", "up") 108 + mapMove("j", "down") 109 + 85 110 vim.cmd([[ 86 111 xnoremap <silent> <Esc> :<C-u>call VSCodeNotify('closeFindWidget')<CR> 87 112 nnoremap <silent> <Esc> :<C-u>call VSCodeNotify('closeFindWidget')<CR> ··· 113 138 " Move cursor to end of line when making visual selection so % works as expected 114 139 nmap V V$ 115 140 116 - " This allows wrapping + code folding to work a little nicer 117 - nmap j gj 118 - nmap k gk 119 - 120 141 " Remap for append/insert with multi-cursor to avoid extra keystroke 121 142 xmap <expr> a visualmode() ==# 'v' ? 'a' : 'ma' 122 143 xmap <expr> A visualmode() ==# 'v' ? 'A' : 'mA' ··· 133 154 takeover = "never", 134 155 priority = 0, 135 156 selector = 'textarea:not([readonly], [aria-readonly="true"])', 136 - cmdline = "neovim", 157 + cmdline = "neovim", 137 158 }, 138 159 139 160 -- Opt-in to takeover on some URLs
+353 -418
.config/yadm/alt/.config/iterm2/com.googlecode.iterm2.plist##user.ichamberlain,class.work,extension.plist
··· 14 14 <true/> 15 15 <key>ClickToSelectCommand</key> 16 16 <true/> 17 + <key>ClosingTmuxTabKillsTmuxWindows</key> 18 + <false/> 19 + <key>ClosingTmuxWindowKillsTmuxWindows</key> 20 + <false/> 17 21 <key>Command</key> 18 22 <string></string> 19 23 <key>CompactEdgeDragSize</key> 20 24 <real>10</real> 21 25 <key>ConvertItalicsToReverseVideoForTmux</key> 22 - <true/> 26 + <false/> 23 27 <key>ConvertTabDragToWindowDragForSolitaryTabInCompactOrMinimalTheme</key> 24 28 <false/> 25 29 <key>CopyLastNewline</key> ··· 1218 1222 <false/> 1219 1223 <key>LowFiCombiningMarks</key> 1220 1224 <false/> 1221 - <key>NeverWarnAboutShortLivedSessions_21922352-0CDF-42DB-B31E-C78ABCAAEA80</key> 1222 - <true/> 1223 1225 <key>NeverWarnAboutShortLivedSessions_21922352-0CDF-42DB-B31E-C78ABCAAEA80_selection</key> 1224 1226 <integer>0</integer> 1225 1227 <key>New Bookmarks</key> ··· 2050 2052 <key>Has Hotkey</key> 2051 2053 <false/> 2052 2054 <key>Horizontal Spacing</key> 2053 - <real>1</real> 2055 + <integer>1</integer> 2054 2056 <key>Idle Code</key> 2055 2057 <integer>0</integer> 2056 2058 <key>Jobs to Ignore</key> ··· 2354 2356 <key>Name</key> 2355 2357 <string>Default</string> 2356 2358 <key>Non Ascii Font</key> 2357 - <string>Monaco 12</string> 2359 + <string>MonaspiceArNF-Regular 12</string> 2358 2360 <key>Non-ASCII Anti Aliased</key> 2359 2361 <true/> 2360 2362 <key>Normal Font</key> 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> 2363 + <string>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}]}</string> 2362 2364 <key>Only The Default BG Color Uses Transparency</key> 2363 2365 <false/> 2364 2366 <key>Open Toolbelt</key> ··· 2459 2461 <key>Shortcut</key> 2460 2462 <string></string> 2461 2463 <key>Show Mark Indicators</key> 2462 - <true/> 2464 + <false/> 2463 2465 <key>Show Status Bar</key> 2464 2466 <true/> 2465 2467 <key>Silence Bell</key> ··· 2470 2472 <false/> 2471 2473 <key>Space</key> 2472 2474 <integer>0</integer> 2475 + <key>Special Font Config</key> 2476 + <string>{"entries":[{"count":4,"fontName":"UnicodeIECsymbol","start":9211},{"fontName":"Octicons","start":9829,"count":1},{"fontName":"Octicons","start":9889,"count":1},{"start":11096,"count":1,"fontName":"UnicodeIECsymbol"},{"fontName":"Pomicons","start":57344,"count":11},{"start":57504,"count":3,"fontName":"PowerlineSymbols"},{"count":1,"start":57507,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineSymbols","count":4,"start":57520},{"count":21,"fontName":"PowerlineExtraSymbols","start":57524},{"count":1,"start":57546,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineExtraSymbols","count":8,"start":57548},{"destination":57856,"start":57344,"count":170,"fontName":"font-awesome-extension"},{"destination":58112,"start":61440,"fontName":"Weather Icons Regular","count":236},{"start":58618,"count":177,"destination":58874,"fontName":"Nerd Font File Types Regular"},{"start":58880,"count":198,"destination":59136,"fontName":"icomoon"},{"start":60000,"count":396,"fontName":"codicon"},{"count":736,"fontName":"FontAwesome","start":61440},{"start":62208,"count":48,"fontName":"font-logos"},{"fontName":"Octicons","count":168,"start":61440,"destination":62464},{"count":1,"destination":62633,"start":62076,"fontName":"Octicons"},{"fontName":"Octicons","start":61609,"count":86,"destination":62634},{"start":61441,"count":2118,"fontName":"Material Design Icons","destination":62720},{"start":983041,"count":6896,"fontName":"Material Design Icons Desktop"}],"version":1}</string> 2473 2477 <key>Status Bar Layout</key> 2474 2478 <dict> 2475 2479 <key>advanced configuration</key> ··· 2676 2680 <string>Dynamic</string> 2677 2681 </array> 2678 2682 <key>Terminal Type</key> 2679 - <string>xterm-256color-italic</string> 2683 + <string>xterm-256color</string> 2680 2684 <key>Thin Strokes</key> 2681 2685 <integer>0</integer> 2682 2686 <key>Transparency</key> ··· 2723 2727 <key>Use Italic Font</key> 2724 2728 <true/> 2725 2729 <key>Use Non-ASCII Font</key> 2726 - <false/> 2730 + <true/> 2727 2731 <key>Use Selected Text Color (Dark)</key> 2728 2732 <true/> 2729 2733 <key>Use Selected Text Color (Light)</key> ··· 2743 2747 <key>Use Underline Color (Light)</key> 2744 2748 <false/> 2745 2749 <key>Vertical Spacing</key> 2746 - <real>1</real> 2750 + <integer>1</integer> 2747 2751 <key>Visual Bell</key> 2748 2752 <true/> 2749 2753 <key>Window Type</key> ··· 2755 2759 <key>ASCII Anti Aliased</key> 2756 2760 <true/> 2757 2761 <key>ASCII Ligatures</key> 2758 - <true/> 2762 + <false/> 2759 2763 <key>AWDS Pane Directory</key> 2760 2764 <string></string> 2761 2765 <key>AWDS Pane Option</key> ··· 2774 2778 <false/> 2775 2779 <key>Ansi 0 Color</key> 2776 2780 <dict> 2777 - <key>Alpha Component</key> 2778 - <integer>1</integer> 2779 2781 <key>Blue Component</key> 2780 - <integer>0</integer> 2782 + <real>0.15294117647058825</real> 2781 2783 <key>Color Space</key> 2782 2784 <string>sRGB</string> 2783 2785 <key>Green Component</key> 2784 - <integer>0</integer> 2786 + <real>0.086274509803921567</real> 2785 2787 <key>Red Component</key> 2786 - <integer>0</integer> 2788 + <real>0.0039215686274509803</real> 2787 2789 </dict> 2788 2790 <key>Ansi 0 Color (Dark)</key> 2789 2791 <dict> ··· 2807 2809 </dict> 2808 2810 <key>Ansi 1 Color</key> 2809 2811 <dict> 2810 - <key>Alpha Component</key> 2811 - <integer>1</integer> 2812 2812 <key>Blue Component</key> 2813 - <real>0.058099240064620972</real> 2813 + <real>0.24313725490196078</real> 2814 2814 <key>Color Space</key> 2815 2815 <string>sRGB</string> 2816 2816 <key>Green Component</key> 2817 - <real>0.10371831804513931</real> 2817 + <real>0.25882352941176473</real> 2818 2818 <key>Red Component</key> 2819 - <real>0.66812098026275635</real> 2819 + <real>0.82745098039215681</real> 2820 2820 </dict> 2821 2821 <key>Ansi 1 Color (Dark)</key> 2822 2822 <dict> ··· 2840 2840 </dict> 2841 2841 <key>Ansi 10 Color</key> 2842 2842 <dict> 2843 - <key>Alpha Component</key> 2844 - <integer>1</integer> 2845 2843 <key>Blue Component</key> 2846 - <real>0.1634487509727478</real> 2844 + <real>0.77254901960784317</real> 2847 2845 <key>Color Space</key> 2848 2846 <string>sRGB</string> 2849 2847 <key>Green Component</key> 2850 - <real>0.85659819841384888</real> 2848 + <real>0.81568627450980391</real> 2851 2849 <key>Red Component</key> 2852 - <integer>0</integer> 2850 + <real>0.28627450980392155</real> 2853 2851 </dict> 2854 2852 <key>Ansi 10 Color (Dark)</key> 2855 2853 <dict> ··· 2873 2871 </dict> 2874 2872 <key>Ansi 11 Color</key> 2875 2873 <dict> 2876 - <key>Alpha Component</key> 2877 - <integer>1</integer> 2878 2874 <key>Blue Component</key> 2879 - <real>0.23028141260147095</real> 2875 + <real>0.41960784313725491</real> 2880 2876 <key>Color Space</key> 2881 2877 <string>sRGB</string> 2882 2878 <key>Green Component</key> 2883 - <real>0.90874701738357544</real> 2879 + <real>0.76078431372549016</real> 2884 2880 <key>Red Component</key> 2885 - <real>0.91766214370727539</real> 2881 + <real>0.85490196078431369</real> 2886 2882 </dict> 2887 2883 <key>Ansi 11 Color (Dark)</key> 2888 2884 <dict> ··· 2906 2902 </dict> 2907 2903 <key>Ansi 12 Color</key> 2908 2904 <dict> 2909 - <key>Alpha Component</key> 2910 - <integer>1</integer> 2911 2905 <key>Blue Component</key> 2912 - <real>0.98149222135543823</real> 2906 + <real>0.89411764705882357</real> 2913 2907 <key>Color Space</key> 2914 2908 <string>sRGB</string> 2915 2909 <key>Green Component</key> 2916 - <real>0.58920532464981079</real> 2910 + <real>0.65490196078431373</real> 2917 2911 <key>Red Component</key> 2918 - <real>0.52499485015869141</real> 2912 + <real>0.36078431372549019</real> 2919 2913 </dict> 2920 2914 <key>Ansi 12 Color (Dark)</key> 2921 2915 <dict> ··· 2939 2933 </dict> 2940 2934 <key>Ansi 13 Color</key> 2941 2935 <dict> 2942 - <key>Alpha Component</key> 2943 - <integer>1</integer> 2944 2936 <key>Blue Component</key> 2945 - <real>0.91244477033615112</real> 2937 + <real>0.59607843137254901</real> 2946 2938 <key>Color Space</key> 2947 2939 <string>sRGB</string> 2948 2940 <key>Green Component</key> 2949 - <real>0.23190298676490784</real> 2941 + <real>0.4392156862745098</real> 2950 2942 <key>Red Component</key> 2951 - <real>0.92568391561508179</real> 2943 + <real>0.41176470588235292</real> 2952 2944 </dict> 2953 2945 <key>Ansi 13 Color (Dark)</key> 2954 2946 <dict> ··· 2972 2964 </dict> 2973 2965 <key>Ansi 14 Color</key> 2974 2966 <dict> 2975 - <key>Alpha Component</key> 2976 - <integer>1</integer> 2977 2967 <key>Blue Component</key> 2978 - <real>0.96042031049728394</real> 2968 + <real>0.56470588235294117</real> 2979 2969 <key>Color Space</key> 2980 2970 <string>sRGB</string> 2981 2971 <key>Green Component</key> 2982 - <real>0.9253380298614502</real> 2972 + <real>0.78823529411764703</real> 2983 2973 <key>Red Component</key> 2984 2974 <integer>0</integer> 2985 2975 </dict> ··· 3005 2995 </dict> 3006 2996 <key>Ansi 15 Color</key> 3007 2997 <dict> 3008 - <key>Alpha Component</key> 3009 - <integer>1</integer> 3010 2998 <key>Blue Component</key> 3011 - <real>0.92144554853439331</real> 2999 + <real>0.69411764705882351</real> 3012 3000 <key>Color Space</key> 3013 3001 <string>sRGB</string> 3014 3002 <key>Green Component</key> 3015 - <real>0.91843283176422119</real> 3003 + <real>0.62352941176470589</real> 3016 3004 <key>Red Component</key> 3017 - <real>0.92151540517807007</real> 3005 + <real>0.59607843137254901</real> 3018 3006 </dict> 3019 3007 <key>Ansi 15 Color (Dark)</key> 3020 3008 <dict> ··· 3038 3026 </dict> 3039 3027 <key>Ansi 2 Color</key> 3040 3028 <dict> 3041 - <key>Alpha Component</key> 3042 - <integer>1</integer> 3043 3029 <key>Blue Component</key> 3044 - <integer>0</integer> 3030 + <real>0.59607843137254901</real> 3045 3031 <key>Color Space</key> 3046 3032 <string>sRGB</string> 3047 3033 <key>Green Component</key> 3048 - <real>0.59999999999999998</real> 3034 + <real>0.63529411764705879</real> 3049 3035 <key>Red Component</key> 3050 - <integer>0</integer> 3036 + <real>0.16470588235294117</real> 3051 3037 </dict> 3052 3038 <key>Ansi 2 Color (Dark)</key> 3053 3039 <dict> ··· 3071 3057 </dict> 3072 3058 <key>Ansi 3 Color</key> 3073 3059 <dict> 3074 - <key>Alpha Component</key> 3075 - <integer>1</integer> 3076 3060 <key>Blue Component</key> 3077 - <real>0.13504385948181152</real> 3061 + <real>0.0039215686274509803</real> 3078 3062 <key>Color Space</key> 3079 3063 <string>sRGB</string> 3080 3064 <key>Green Component</key> 3081 - <real>0.65481686592102051</real> 3065 + <real>0.66666666666666663</real> 3082 3066 <key>Red Component</key> 3083 - <real>0.66385143995285034</real> 3067 + <real>0.85490196078431369</real> 3084 3068 </dict> 3085 3069 <key>Ansi 3 Color (Dark)</key> 3086 3070 <dict> ··· 3104 3088 </dict> 3105 3089 <key>Ansi 4 Color</key> 3106 3090 <dict> 3107 - <key>Alpha Component</key> 3108 - <integer>1</integer> 3109 3091 <key>Blue Component</key> 3110 - <integer>1</integer> 3092 + <real>0.83921568627450982</real> 3111 3093 <key>Color Space</key> 3112 3094 <string>sRGB</string> 3113 3095 <key>Green Component</key> 3114 - <real>0.19741851091384888</real> 3096 + <real>0.46274509803921571</real> 3115 3097 <key>Red Component</key> 3116 - <real>0.30479651689529419</real> 3098 + <real>0.28235294117647058</real> 3117 3099 </dict> 3118 3100 <key>Ansi 4 Color (Dark)</key> 3119 3101 <dict> ··· 3137 3119 </dict> 3138 3120 <key>Ansi 5 Color</key> 3139 3121 <dict> 3140 - <key>Alpha Component</key> 3141 - <integer>1</integer> 3142 3122 <key>Blue Component</key> 3143 - <real>0.74776667356491089</real> 3123 + <real>0.32549019607843138</real> 3144 3124 <key>Color Space</key> 3145 3125 <string>sRGB</string> 3146 3126 <key>Green Component</key> 3147 - <real>0.18239298462867737</real> 3127 + <real>0.24705882352941178</real> 3148 3128 <key>Red Component</key> 3149 - <real>0.75607430934906006</real> 3129 + <real>0.25098039215686274</real> 3150 3130 </dict> 3151 3131 <key>Ansi 5 Color (Dark)</key> 3152 3132 <dict> ··· 3170 3150 </dict> 3171 3151 <key>Ansi 6 Color</key> 3172 3152 <dict> 3173 - <key>Alpha Component</key> 3174 - <integer>1</integer> 3175 3153 <key>Blue Component</key> 3176 - <real>0.80842679738998413</real> 3154 + <real>0.41568627450980394</real> 3177 3155 <key>Color Space</key> 3178 3156 <string>sRGB</string> 3179 3157 <key>Green Component</key> 3180 - <real>0.75365883111953735</real> 3158 + <real>0.56862745098039214</real> 3181 3159 <key>Red Component</key> 3182 - <integer>0</integer> 3160 + <real>0.031372549019607843</real> 3183 3161 </dict> 3184 3162 <key>Ansi 6 Color (Dark)</key> 3185 3163 <dict> ··· 3203 3181 </dict> 3204 3182 <key>Ansi 7 Color</key> 3205 3183 <dict> 3206 - <key>Alpha Component</key> 3207 - <integer>1</integer> 3208 3184 <key>Blue Component</key> 3209 - <real>0.79442524909973145</real> 3185 + <real>0.50588235294117645</real> 3210 3186 <key>Color Space</key> 3211 3187 <string>sRGB</string> 3212 3188 <key>Green Component</key> 3213 - <real>0.79443532228469849</real> 3189 + <real>0.50588235294117645</real> 3214 3190 <key>Red Component</key> 3215 - <real>0.79441660642623901</real> 3191 + <real>0.47843137254901963</real> 3216 3192 </dict> 3217 3193 <key>Ansi 7 Color (Dark)</key> 3218 3194 <dict> ··· 3236 3212 </dict> 3237 3213 <key>Ansi 8 Color</key> 3238 3214 <dict> 3239 - <key>Alpha Component</key> 3240 - <integer>1</integer> 3241 3215 <key>Blue Component</key> 3242 - <real>0.47564041614532471</real> 3216 + <real>0.50588235294117645</real> 3243 3217 <key>Color Space</key> 3244 3218 <string>sRGB</string> 3245 3219 <key>Green Component</key> 3246 - <real>0.4756467342376709</real> 3220 + <real>0.50588235294117645</real> 3247 3221 <key>Red Component</key> 3248 - <real>0.47563493251800537</real> 3222 + <real>0.47843137254901963</real> 3249 3223 </dict> 3250 3224 <key>Ansi 8 Color (Dark)</key> 3251 3225 <dict> ··· 3269 3243 </dict> 3270 3244 <key>Ansi 9 Color</key> 3271 3245 <dict> 3272 - <key>Alpha Component</key> 3273 - <integer>1</integer> 3274 3246 <key>Blue Component</key> 3275 - <real>0.13415428996086121</real> 3247 + <real>0.43137254901960786</real> 3276 3248 <key>Color Space</key> 3277 3249 <string>sRGB</string> 3278 3250 <key>Green Component</key> 3279 - <real>0.18266522884368896</real> 3251 + <real>0.43137254901960786</real> 3280 3252 <key>Red Component</key> 3281 - <real>0.92504602670669556</real> 3253 + <real>0.96862745098039216</real> 3282 3254 </dict> 3283 3255 <key>Ansi 9 Color (Dark)</key> 3284 3256 <dict> ··· 3307 3279 <key>Background Color</key> 3308 3280 <dict> 3309 3281 <key>Blue Component</key> 3310 - <integer>0</integer> 3282 + <integer>1</integer> 3283 + <key>Color Space</key> 3284 + <string>sRGB</string> 3311 3285 <key>Green Component</key> 3312 - <integer>0</integer> 3286 + <integer>1</integer> 3313 3287 <key>Red Component</key> 3314 - <integer>0</integer> 3288 + <integer>1</integer> 3315 3289 </dict> 3316 3290 <key>Background Color (Dark)</key> 3317 3291 <dict> ··· 3338 3312 <key>Badge Color</key> 3339 3313 <dict> 3340 3314 <key>Alpha Component</key> 3341 - <real>0.75</real> 3315 + <real>0.5</real> 3342 3316 <key>Blue Component</key> 3343 - <integer>0</integer> 3317 + <real>0.13960540294647217</real> 3344 3318 <key>Color Space</key> 3345 - <string>sRGB</string> 3319 + <string>P3</string> 3346 3320 <key>Green Component</key> 3347 - <real>0.14999999999999999</real> 3321 + <real>0.25479039549827576</real> 3348 3322 <key>Red Component</key> 3349 - <integer>1</integer> 3323 + <real>0.92929404973983765</real> 3350 3324 </dict> 3351 3325 <key>Badge Color (Dark)</key> 3352 3326 <dict> ··· 3375 3349 <real>0.92929404973983765</real> 3376 3350 </dict> 3377 3351 <key>Badge Font</key> 3378 - <string>MonaspaceNeon-Bold</string> 3352 + <string>MonaspaceKrypton-Bold</string> 3379 3353 <key>Badge Max Height</key> 3380 3354 <real>0.29999999999999999</real> 3381 3355 <key>Badge Max Width</key> ··· 3396 3370 <real>8.3475194321065995</real> 3397 3371 <key>Bold Color</key> 3398 3372 <dict> 3399 - <key>Alpha Component</key> 3400 - <integer>1</integer> 3401 3373 <key>Blue Component</key> 3402 - <real>0.18352475762367249</real> 3374 + <real>0.32549019607843138</real> 3403 3375 <key>Color Space</key> 3404 3376 <string>sRGB</string> 3405 3377 <key>Green Component</key> 3406 - <real>0.95898884534835815</real> 3378 + <real>0.24705882352941178</real> 3407 3379 <key>Red Component</key> 3408 - <integer>0</integer> 3380 + <real>0.25098039215686274</real> 3409 3381 </dict> 3410 3382 <key>Bold Color (Dark)</key> 3411 3383 <dict> ··· 3456 3428 <integer>0</integer> 3457 3429 <key>Cursor Color</key> 3458 3430 <dict> 3459 - <key>Alpha Component</key> 3460 - <integer>1</integer> 3461 3431 <key>Blue Component</key> 3462 - <real>0.28506788611412048</real> 3432 + <real>0.32549019607843138</real> 3463 3433 <key>Color Space</key> 3464 3434 <string>sRGB</string> 3465 3435 <key>Green Component</key> 3466 - <real>0.9755217432975769</real> 3436 + <real>0.24705882352941178</real> 3467 3437 <key>Red Component</key> 3468 - <real>0.27456897497177124</real> 3438 + <real>0.25098039215686274</real> 3469 3439 </dict> 3470 3440 <key>Cursor Color (Dark)</key> 3471 3441 <dict> ··· 3492 3462 <key>Alpha Component</key> 3493 3463 <real>0.25</real> 3494 3464 <key>Blue Component</key> 3495 - <integer>1</integer> 3465 + <real>0.99125725030899048</real> 3496 3466 <key>Color Space</key> 3497 - <string>sRGB</string> 3467 + <string>P3</string> 3498 3468 <key>Green Component</key> 3499 - <real>0.9268307089805603</real> 3469 + <real>0.92047786712646484</real> 3500 3470 <key>Red Component</key> 3501 - <real>0.70213186740875244</real> 3471 + <real>0.7486259937286377</real> 3502 3472 </dict> 3503 3473 <key>Cursor Guide Color (Dark)</key> 3504 3474 <dict> ··· 3529 3499 <key>Cursor Text Color</key> 3530 3500 <dict> 3531 3501 <key>Blue Component</key> 3532 - <integer>1</integer> 3502 + <real>0.98431372549019602</real> 3503 + <key>Color Space</key> 3504 + <string>sRGB</string> 3533 3505 <key>Green Component</key> 3534 - <integer>1</integer> 3506 + <real>0.98431372549019602</real> 3535 3507 <key>Red Component</key> 3536 - <integer>1</integer> 3508 + <real>0.98431372549019602</real> 3537 3509 </dict> 3538 3510 <key>Cursor Text Color (Dark)</key> 3539 3511 <dict> ··· 3577 3549 <true/> 3578 3550 <key>Foreground Color</key> 3579 3551 <dict> 3580 - <key>Alpha Component</key> 3581 - <integer>1</integer> 3582 3552 <key>Blue Component</key> 3583 - <real>0.23137255012989044</real> 3553 + <real>0.32549019607843138</real> 3584 3554 <key>Color Space</key> 3585 3555 <string>sRGB</string> 3586 3556 <key>Green Component</key> 3587 - <integer>1</integer> 3557 + <real>0.24705882352941178</real> 3588 3558 <key>Red Component</key> 3589 - <real>0.19607843458652496</real> 3559 + <real>0.25098039215686274</real> 3590 3560 </dict> 3591 3561 <key>Foreground Color (Dark)</key> 3592 3562 <dict> ··· 3800 3770 <key>Text</key> 3801 3771 <string>[F</string> 3802 3772 </dict> 3773 + <key>0xf728-0x100000-0x75</key> 3774 + <dict> 3775 + <key>Action</key> 3776 + <integer>11</integer> 3777 + <key>Apply Mode</key> 3778 + <integer>0</integer> 3779 + <key>Escaping</key> 3780 + <integer>2</integer> 3781 + <key>Text</key> 3782 + <string>0B</string> 3783 + <key>Version</key> 3784 + <integer>2</integer> 3785 + </dict> 3803 3786 <key>0xf728-0x80000</key> 3804 3787 <dict> 3805 3788 <key>Action</key> ··· 3820 3803 <key>Alpha Component</key> 3821 3804 <integer>1</integer> 3822 3805 <key>Blue Component</key> 3823 - <real>0.73423302173614502</real> 3806 + <real>0.70932406187057495</real> 3824 3807 <key>Color Space</key> 3825 - <string>sRGB</string> 3808 + <string>P3</string> 3826 3809 <key>Green Component</key> 3827 - <real>0.35916060209274292</real> 3810 + <real>0.35333043336868286</real> 3828 3811 <key>Red Component</key> 3829 - <integer>0</integer> 3812 + <real>0.1451396644115448</real> 3830 3813 </dict> 3831 3814 <key>Link Color (Dark)</key> 3832 3815 <dict> ··· 3904 3887 <key>Name</key> 3905 3888 <string>Production</string> 3906 3889 <key>Non Ascii Font</key> 3907 - <string>Monaco 12</string> 3890 + <string>MonaspiceArNF-Regular 12</string> 3908 3891 <key>Non-ASCII Anti Aliased</key> 3909 3892 <true/> 3910 3893 <key>Normal Font</key> 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> 3894 + <string>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}]}</string> 3912 3895 <key>Only The Default BG Color Uses Transparency</key> 3913 3896 <false/> 3914 3897 <key>Open Toolbelt</key> ··· 3929 3912 <integer>0</integer> 3930 3913 <key>Selected Text Color</key> 3931 3914 <dict> 3932 - <key>Alpha Component</key> 3933 - <integer>1</integer> 3934 3915 <key>Blue Component</key> 3935 - <real>0.95729249715805054</real> 3916 + <real>0.32549019607843138</real> 3936 3917 <key>Color Space</key> 3937 3918 <string>sRGB</string> 3938 3919 <key>Green Component</key> 3939 - <real>0.54609501361846924</real> 3920 + <real>0.24705882352941178</real> 3940 3921 <key>Red Component</key> 3941 - <real>0.47127401828765869</real> 3922 + <real>0.25098039215686274</real> 3942 3923 </dict> 3943 3924 <key>Selected Text Color (Dark)</key> 3944 3925 <dict> ··· 3962 3943 </dict> 3963 3944 <key>Selection Color</key> 3964 3945 <dict> 3965 - <key>Alpha Component</key> 3966 - <integer>1</integer> 3967 3946 <key>Blue Component</key> 3968 - <real>0.6616329550743103</real> 3947 + <real>0.94999999999999996</real> 3969 3948 <key>Color Space</key> 3970 3949 <string>sRGB</string> 3971 3950 <key>Green Component</key> 3972 - <real>0.18451127409934998</real> 3951 + <real>0.94999999999999996</real> 3973 3952 <key>Red Component</key> 3974 - <real>0.053524382412433603</real> 3953 + <real>0.94999999999999996</real> 3975 3954 </dict> 3976 3955 <key>Selection Color (Dark)</key> 3977 3956 <dict> ··· 4013 3992 <key>Shortcut</key> 4014 3993 <string></string> 4015 3994 <key>Show Mark Indicators</key> 4016 - <true/> 3995 + <false/> 4017 3996 <key>Show Status Bar</key> 4018 3997 <true/> 4019 3998 <key>Silence Bell</key> ··· 4024 4003 <false/> 4025 4004 <key>Space</key> 4026 4005 <integer>0</integer> 4006 + <key>Special Font Config</key> 4007 + <string>{"entries":[{"count":4,"fontName":"UnicodeIECsymbol","start":9211},{"fontName":"Octicons","start":9829,"count":1},{"fontName":"Octicons","start":9889,"count":1},{"start":11096,"count":1,"fontName":"UnicodeIECsymbol"},{"fontName":"Pomicons","start":57344,"count":11},{"start":57504,"count":3,"fontName":"PowerlineSymbols"},{"count":1,"start":57507,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineSymbols","count":4,"start":57520},{"count":21,"fontName":"PowerlineExtraSymbols","start":57524},{"count":1,"start":57546,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineExtraSymbols","count":8,"start":57548},{"destination":57856,"start":57344,"count":170,"fontName":"font-awesome-extension"},{"destination":58112,"start":61440,"fontName":"Weather Icons Regular","count":236},{"start":58618,"count":177,"destination":58874,"fontName":"Nerd Font File Types Regular"},{"start":58880,"count":198,"destination":59136,"fontName":"icomoon"},{"start":60000,"count":396,"fontName":"codicon"},{"count":736,"fontName":"FontAwesome","start":61440},{"start":62208,"count":48,"fontName":"font-logos"},{"fontName":"Octicons","count":168,"start":61440,"destination":62464},{"count":1,"destination":62633,"start":62076,"fontName":"Octicons"},{"fontName":"Octicons","start":61609,"count":86,"destination":62634},{"start":61441,"count":2118,"fontName":"Material Design Icons","destination":62720},{"start":983041,"count":6896,"fontName":"Material Design Icons Desktop"}],"version":1}</string> 4027 4008 <key>Status Bar Layout</key> 4028 4009 <dict> 4029 4010 <key>advanced configuration</key> ··· 4031 4012 <key>algorithm</key> 4032 4013 <integer>0</integer> 4033 4014 <key>font</key> 4034 - <string>MonaspaceArgon-Regular 11</string> 4015 + <string>MonaspaceArgonVar-Medium 12</string> 4035 4016 </dict> 4036 4017 <key>components</key> 4037 4018 <array> ··· 4069 4050 <key>algorithm</key> 4070 4051 <integer>0</integer> 4071 4052 <key>font</key> 4072 - <string>MonaspaceArgon-Regular 11</string> 4053 + <string>MonaspaceArgonVar-Medium 12</string> 4073 4054 </dict> 4074 4055 </dict> 4075 4056 </dict> ··· 4109 4090 <key>algorithm</key> 4110 4091 <integer>0</integer> 4111 4092 <key>font</key> 4112 - <string>MonaspaceArgon-Regular 11</string> 4093 + <string>MonaspaceArgonVar-Medium 12</string> 4113 4094 </dict> 4114 4095 </dict> 4115 4096 </dict> ··· 4149 4130 <key>algorithm</key> 4150 4131 <integer>0</integer> 4151 4132 <key>font</key> 4152 - <string>MonaspaceArgon-Regular 11</string> 4133 + <string>MonaspaceArgonVar-Medium 12</string> 4153 4134 </dict> 4154 4135 </dict> 4155 4136 </dict> ··· 4183 4164 <key>algorithm</key> 4184 4165 <integer>0</integer> 4185 4166 <key>font</key> 4186 - <string>MonaspaceArgon-Regular 11</string> 4167 + <string>MonaspaceArgonVar-Medium 12</string> 4187 4168 </dict> 4188 4169 </dict> 4189 4170 </dict> ··· 4217 4198 <key>algorithm</key> 4218 4199 <integer>0</integer> 4219 4200 <key>font</key> 4220 - <string>MonaspaceArgon-Regular 11</string> 4201 + <string>MonaspaceArgonVar-Medium 12</string> 4221 4202 </dict> 4222 4203 </dict> 4223 4204 </dict> ··· 4230 4211 <string>Dynamic</string> 4231 4212 </array> 4232 4213 <key>Terminal Type</key> 4233 - <string>xterm-256color-italic</string> 4214 + <string>xterm-256color</string> 4234 4215 <key>Thin Strokes</key> 4235 - <integer>4</integer> 4216 + <integer>0</integer> 4236 4217 <key>Transparency</key> 4237 4218 <integer>0</integer> 4238 4219 <key>Triggers</key> ··· 4277 4258 <key>Use Italic Font</key> 4278 4259 <true/> 4279 4260 <key>Use Non-ASCII Font</key> 4280 - <false/> 4261 + <true/> 4281 4262 <key>Use Selected Text Color (Dark)</key> 4282 4263 <true/> 4283 4264 <key>Use Selected Text Color (Light)</key> ··· 4309 4290 <key>ASCII Anti Aliased</key> 4310 4291 <true/> 4311 4292 <key>ASCII Ligatures</key> 4312 - <true/> 4293 + <false/> 4313 4294 <key>AWDS Pane Directory</key> 4314 4295 <string></string> 4315 4296 <key>AWDS Pane Option</key> ··· 4328 4309 <false/> 4329 4310 <key>Ansi 0 Color</key> 4330 4311 <dict> 4331 - <key>Alpha Component</key> 4332 - <integer>1</integer> 4333 4312 <key>Blue Component</key> 4334 - <integer>0</integer> 4313 + <real>0.15294117647058825</real> 4335 4314 <key>Color Space</key> 4336 4315 <string>sRGB</string> 4337 4316 <key>Green Component</key> 4338 - <integer>0</integer> 4317 + <real>0.086274509803921567</real> 4339 4318 <key>Red Component</key> 4340 - <integer>0</integer> 4319 + <real>0.0039215686274509803</real> 4341 4320 </dict> 4342 4321 <key>Ansi 0 Color (Dark)</key> 4343 4322 <dict> ··· 4361 4340 </dict> 4362 4341 <key>Ansi 1 Color</key> 4363 4342 <dict> 4364 - <key>Alpha Component</key> 4365 - <integer>1</integer> 4366 4343 <key>Blue Component</key> 4367 - <real>0.058099240064620972</real> 4344 + <real>0.24313725490196078</real> 4368 4345 <key>Color Space</key> 4369 4346 <string>sRGB</string> 4370 4347 <key>Green Component</key> 4371 - <real>0.10371831804513931</real> 4348 + <real>0.25882352941176473</real> 4372 4349 <key>Red Component</key> 4373 - <real>0.66812098026275635</real> 4350 + <real>0.82745098039215681</real> 4374 4351 </dict> 4375 4352 <key>Ansi 1 Color (Dark)</key> 4376 4353 <dict> ··· 4394 4371 </dict> 4395 4372 <key>Ansi 10 Color</key> 4396 4373 <dict> 4397 - <key>Alpha Component</key> 4398 - <integer>1</integer> 4399 4374 <key>Blue Component</key> 4400 - <real>0.1634487509727478</real> 4375 + <real>0.77254901960784317</real> 4401 4376 <key>Color Space</key> 4402 4377 <string>sRGB</string> 4403 4378 <key>Green Component</key> 4404 - <real>0.85659819841384888</real> 4379 + <real>0.81568627450980391</real> 4405 4380 <key>Red Component</key> 4406 - <integer>0</integer> 4381 + <real>0.28627450980392155</real> 4407 4382 </dict> 4408 4383 <key>Ansi 10 Color (Dark)</key> 4409 4384 <dict> ··· 4427 4402 </dict> 4428 4403 <key>Ansi 11 Color</key> 4429 4404 <dict> 4430 - <key>Alpha Component</key> 4431 - <integer>1</integer> 4432 4405 <key>Blue Component</key> 4433 - <real>0.23028141260147095</real> 4406 + <real>0.41960784313725491</real> 4434 4407 <key>Color Space</key> 4435 4408 <string>sRGB</string> 4436 4409 <key>Green Component</key> 4437 - <real>0.90874701738357544</real> 4410 + <real>0.76078431372549016</real> 4438 4411 <key>Red Component</key> 4439 - <real>0.91766214370727539</real> 4412 + <real>0.85490196078431369</real> 4440 4413 </dict> 4441 4414 <key>Ansi 11 Color (Dark)</key> 4442 4415 <dict> ··· 4460 4433 </dict> 4461 4434 <key>Ansi 12 Color</key> 4462 4435 <dict> 4463 - <key>Alpha Component</key> 4464 - <integer>1</integer> 4465 4436 <key>Blue Component</key> 4466 - <real>0.98149222135543823</real> 4437 + <real>0.89411764705882357</real> 4467 4438 <key>Color Space</key> 4468 4439 <string>sRGB</string> 4469 4440 <key>Green Component</key> 4470 - <real>0.58920532464981079</real> 4441 + <real>0.65490196078431373</real> 4471 4442 <key>Red Component</key> 4472 - <real>0.52499485015869141</real> 4443 + <real>0.36078431372549019</real> 4473 4444 </dict> 4474 4445 <key>Ansi 12 Color (Dark)</key> 4475 4446 <dict> ··· 4493 4464 </dict> 4494 4465 <key>Ansi 13 Color</key> 4495 4466 <dict> 4496 - <key>Alpha Component</key> 4497 - <integer>1</integer> 4498 4467 <key>Blue Component</key> 4499 - <real>0.91244477033615112</real> 4468 + <real>0.59607843137254901</real> 4500 4469 <key>Color Space</key> 4501 4470 <string>sRGB</string> 4502 4471 <key>Green Component</key> 4503 - <real>0.23190298676490784</real> 4472 + <real>0.4392156862745098</real> 4504 4473 <key>Red Component</key> 4505 - <real>0.92568391561508179</real> 4474 + <real>0.41176470588235292</real> 4506 4475 </dict> 4507 4476 <key>Ansi 13 Color (Dark)</key> 4508 4477 <dict> ··· 4526 4495 </dict> 4527 4496 <key>Ansi 14 Color</key> 4528 4497 <dict> 4529 - <key>Alpha Component</key> 4530 - <integer>1</integer> 4531 4498 <key>Blue Component</key> 4532 - <real>0.96042031049728394</real> 4499 + <real>0.56470588235294117</real> 4533 4500 <key>Color Space</key> 4534 4501 <string>sRGB</string> 4535 4502 <key>Green Component</key> 4536 - <real>0.9253380298614502</real> 4503 + <real>0.78823529411764703</real> 4537 4504 <key>Red Component</key> 4538 4505 <integer>0</integer> 4539 4506 </dict> ··· 4559 4526 </dict> 4560 4527 <key>Ansi 15 Color</key> 4561 4528 <dict> 4562 - <key>Alpha Component</key> 4563 - <integer>1</integer> 4564 4529 <key>Blue Component</key> 4565 - <real>0.92144554853439331</real> 4530 + <real>0.69411764705882351</real> 4566 4531 <key>Color Space</key> 4567 4532 <string>sRGB</string> 4568 4533 <key>Green Component</key> 4569 - <real>0.91843283176422119</real> 4534 + <real>0.62352941176470589</real> 4570 4535 <key>Red Component</key> 4571 - <real>0.92151540517807007</real> 4536 + <real>0.59607843137254901</real> 4572 4537 </dict> 4573 4538 <key>Ansi 15 Color (Dark)</key> 4574 4539 <dict> ··· 4592 4557 </dict> 4593 4558 <key>Ansi 2 Color</key> 4594 4559 <dict> 4595 - <key>Alpha Component</key> 4596 - <integer>1</integer> 4597 4560 <key>Blue Component</key> 4598 - <integer>0</integer> 4561 + <real>0.59607843137254901</real> 4599 4562 <key>Color Space</key> 4600 4563 <string>sRGB</string> 4601 4564 <key>Green Component</key> 4602 - <real>0.59999999999999998</real> 4565 + <real>0.63529411764705879</real> 4603 4566 <key>Red Component</key> 4604 - <integer>0</integer> 4567 + <real>0.16470588235294117</real> 4605 4568 </dict> 4606 4569 <key>Ansi 2 Color (Dark)</key> 4607 4570 <dict> ··· 4625 4588 </dict> 4626 4589 <key>Ansi 3 Color</key> 4627 4590 <dict> 4628 - <key>Alpha Component</key> 4629 - <integer>1</integer> 4630 4591 <key>Blue Component</key> 4631 - <real>0.13504385948181152</real> 4592 + <real>0.0039215686274509803</real> 4632 4593 <key>Color Space</key> 4633 4594 <string>sRGB</string> 4634 4595 <key>Green Component</key> 4635 - <real>0.65481686592102051</real> 4596 + <real>0.66666666666666663</real> 4636 4597 <key>Red Component</key> 4637 - <real>0.66385143995285034</real> 4598 + <real>0.85490196078431369</real> 4638 4599 </dict> 4639 4600 <key>Ansi 3 Color (Dark)</key> 4640 4601 <dict> ··· 4658 4619 </dict> 4659 4620 <key>Ansi 4 Color</key> 4660 4621 <dict> 4661 - <key>Alpha Component</key> 4662 - <integer>1</integer> 4663 4622 <key>Blue Component</key> 4664 - <integer>1</integer> 4623 + <real>0.83921568627450982</real> 4665 4624 <key>Color Space</key> 4666 4625 <string>sRGB</string> 4667 4626 <key>Green Component</key> 4668 - <real>0.19741851091384888</real> 4627 + <real>0.46274509803921571</real> 4669 4628 <key>Red Component</key> 4670 - <real>0.30479651689529419</real> 4629 + <real>0.28235294117647058</real> 4671 4630 </dict> 4672 4631 <key>Ansi 4 Color (Dark)</key> 4673 4632 <dict> ··· 4691 4650 </dict> 4692 4651 <key>Ansi 5 Color</key> 4693 4652 <dict> 4694 - <key>Alpha Component</key> 4695 - <integer>1</integer> 4696 4653 <key>Blue Component</key> 4697 - <real>0.74776667356491089</real> 4654 + <real>0.32549019607843138</real> 4698 4655 <key>Color Space</key> 4699 4656 <string>sRGB</string> 4700 4657 <key>Green Component</key> 4701 - <real>0.18239298462867737</real> 4658 + <real>0.24705882352941178</real> 4702 4659 <key>Red Component</key> 4703 - <real>0.75607430934906006</real> 4660 + <real>0.25098039215686274</real> 4704 4661 </dict> 4705 4662 <key>Ansi 5 Color (Dark)</key> 4706 4663 <dict> ··· 4724 4681 </dict> 4725 4682 <key>Ansi 6 Color</key> 4726 4683 <dict> 4727 - <key>Alpha Component</key> 4728 - <integer>1</integer> 4729 4684 <key>Blue Component</key> 4730 - <real>0.80842679738998413</real> 4685 + <real>0.41568627450980394</real> 4731 4686 <key>Color Space</key> 4732 4687 <string>sRGB</string> 4733 4688 <key>Green Component</key> 4734 - <real>0.75365883111953735</real> 4689 + <real>0.56862745098039214</real> 4735 4690 <key>Red Component</key> 4736 - <integer>0</integer> 4691 + <real>0.031372549019607843</real> 4737 4692 </dict> 4738 4693 <key>Ansi 6 Color (Dark)</key> 4739 4694 <dict> ··· 4757 4712 </dict> 4758 4713 <key>Ansi 7 Color</key> 4759 4714 <dict> 4760 - <key>Alpha Component</key> 4761 - <integer>1</integer> 4762 4715 <key>Blue Component</key> 4763 - <real>0.79442524909973145</real> 4716 + <real>0.50588235294117645</real> 4764 4717 <key>Color Space</key> 4765 4718 <string>sRGB</string> 4766 4719 <key>Green Component</key> 4767 - <real>0.79443532228469849</real> 4720 + <real>0.50588235294117645</real> 4768 4721 <key>Red Component</key> 4769 - <real>0.79441660642623901</real> 4722 + <real>0.47843137254901963</real> 4770 4723 </dict> 4771 4724 <key>Ansi 7 Color (Dark)</key> 4772 4725 <dict> ··· 4790 4743 </dict> 4791 4744 <key>Ansi 8 Color</key> 4792 4745 <dict> 4793 - <key>Alpha Component</key> 4794 - <integer>1</integer> 4795 4746 <key>Blue Component</key> 4796 - <real>0.47564041614532471</real> 4747 + <real>0.50588235294117645</real> 4797 4748 <key>Color Space</key> 4798 4749 <string>sRGB</string> 4799 4750 <key>Green Component</key> 4800 - <real>0.4756467342376709</real> 4751 + <real>0.50588235294117645</real> 4801 4752 <key>Red Component</key> 4802 - <real>0.47563493251800537</real> 4753 + <real>0.47843137254901963</real> 4803 4754 </dict> 4804 4755 <key>Ansi 8 Color (Dark)</key> 4805 4756 <dict> ··· 4823 4774 </dict> 4824 4775 <key>Ansi 9 Color</key> 4825 4776 <dict> 4826 - <key>Alpha Component</key> 4827 - <integer>1</integer> 4828 4777 <key>Blue Component</key> 4829 - <real>0.13415428996086121</real> 4778 + <real>0.43137254901960786</real> 4830 4779 <key>Color Space</key> 4831 4780 <string>sRGB</string> 4832 4781 <key>Green Component</key> 4833 - <real>0.18266522884368896</real> 4782 + <real>0.43137254901960786</real> 4834 4783 <key>Red Component</key> 4835 - <real>0.92504602670669556</real> 4784 + <real>0.96862745098039216</real> 4836 4785 </dict> 4837 4786 <key>Ansi 9 Color (Dark)</key> 4838 4787 <dict> ··· 4861 4810 <key>Background Color</key> 4862 4811 <dict> 4863 4812 <key>Blue Component</key> 4864 - <integer>0</integer> 4813 + <integer>1</integer> 4814 + <key>Color Space</key> 4815 + <string>sRGB</string> 4865 4816 <key>Green Component</key> 4866 - <integer>0</integer> 4817 + <integer>1</integer> 4867 4818 <key>Red Component</key> 4868 - <integer>0</integer> 4819 + <integer>1</integer> 4869 4820 </dict> 4870 4821 <key>Background Color (Dark)</key> 4871 4822 <dict> ··· 4892 4843 <key>Badge Color</key> 4893 4844 <dict> 4894 4845 <key>Alpha Component</key> 4895 - <real>0.75</real> 4846 + <real>0.5</real> 4896 4847 <key>Blue Component</key> 4897 - <integer>0</integer> 4848 + <real>0.13960540294647217</real> 4898 4849 <key>Color Space</key> 4899 - <string>sRGB</string> 4850 + <string>P3</string> 4900 4851 <key>Green Component</key> 4901 - <real>0.14999999999999999</real> 4852 + <real>0.25479039549827576</real> 4902 4853 <key>Red Component</key> 4903 - <integer>1</integer> 4854 + <real>0.92929404973983765</real> 4904 4855 </dict> 4905 4856 <key>Badge Color (Dark)</key> 4906 4857 <dict> ··· 4929 4880 <real>0.92929404973983765</real> 4930 4881 </dict> 4931 4882 <key>Badge Font</key> 4932 - <string>MonaspaceNeon-Bold</string> 4883 + <string>MonaspaceKrypton-Bold</string> 4933 4884 <key>Badge Max Height</key> 4934 4885 <real>0.29999999999999999</real> 4935 4886 <key>Badge Max Width</key> ··· 4937 4888 <key>Badge Right Margin</key> 4938 4889 <integer>30</integer> 4939 4890 <key>Badge Text</key> 4940 - <string>PROD</string> 4891 + <string></string> 4941 4892 <key>Badge Top Margin</key> 4942 4893 <integer>0</integer> 4943 4894 <key>Blink Allowed</key> ··· 4950 4901 <real>8.3475194321065995</real> 4951 4902 <key>Bold Color</key> 4952 4903 <dict> 4953 - <key>Alpha Component</key> 4954 - <integer>1</integer> 4955 4904 <key>Blue Component</key> 4956 - <real>0.18352475762367249</real> 4905 + <real>0.32549019607843138</real> 4957 4906 <key>Color Space</key> 4958 4907 <string>sRGB</string> 4959 4908 <key>Green Component</key> 4960 - <real>0.95898884534835815</real> 4909 + <real>0.24705882352941178</real> 4961 4910 <key>Red Component</key> 4962 - <integer>0</integer> 4911 + <real>0.25098039215686274</real> 4963 4912 </dict> 4964 4913 <key>Bold Color (Dark)</key> 4965 4914 <dict> ··· 5001 4950 <integer>0</integer> 5002 4951 <key>Cursor Color</key> 5003 4952 <dict> 5004 - <key>Alpha Component</key> 5005 - <integer>1</integer> 5006 4953 <key>Blue Component</key> 5007 - <real>0.28506788611412048</real> 4954 + <real>0.32549019607843138</real> 5008 4955 <key>Color Space</key> 5009 4956 <string>sRGB</string> 5010 4957 <key>Green Component</key> 5011 - <real>0.9755217432975769</real> 4958 + <real>0.24705882352941178</real> 5012 4959 <key>Red Component</key> 5013 - <real>0.27456897497177124</real> 4960 + <real>0.25098039215686274</real> 5014 4961 </dict> 5015 4962 <key>Cursor Color (Dark)</key> 5016 4963 <dict> ··· 5037 4984 <key>Alpha Component</key> 5038 4985 <real>0.25</real> 5039 4986 <key>Blue Component</key> 5040 - <integer>1</integer> 4987 + <real>0.99125725030899048</real> 5041 4988 <key>Color Space</key> 5042 - <string>sRGB</string> 4989 + <string>P3</string> 5043 4990 <key>Green Component</key> 5044 - <real>0.9268307089805603</real> 4991 + <real>0.92047786712646484</real> 5045 4992 <key>Red Component</key> 5046 - <real>0.70213186740875244</real> 4993 + <real>0.7486259937286377</real> 5047 4994 </dict> 5048 4995 <key>Cursor Guide Color (Dark)</key> 5049 4996 <dict> ··· 5074 5021 <key>Cursor Text Color</key> 5075 5022 <dict> 5076 5023 <key>Blue Component</key> 5077 - <integer>1</integer> 5024 + <real>0.98431372549019602</real> 5025 + <key>Color Space</key> 5026 + <string>sRGB</string> 5078 5027 <key>Green Component</key> 5079 - <integer>1</integer> 5028 + <real>0.98431372549019602</real> 5080 5029 <key>Red Component</key> 5081 - <integer>1</integer> 5030 + <real>0.98431372549019602</real> 5082 5031 </dict> 5083 5032 <key>Cursor Text Color (Dark)</key> 5084 5033 <dict> ··· 5103 5052 <key>Custom Command</key> 5104 5053 <string>Yes</string> 5105 5054 <key>Custom Directory</key> 5106 - <string>Recycle</string> 5055 + <string>Advanced</string> 5107 5056 <key>Default Bookmark</key> 5108 5057 <string>No</string> 5109 5058 <key>Description</key> ··· 5122 5071 <true/> 5123 5072 <key>Foreground Color</key> 5124 5073 <dict> 5125 - <key>Alpha Component</key> 5126 - <integer>1</integer> 5127 5074 <key>Blue Component</key> 5128 - <real>0.23137255012989044</real> 5075 + <real>0.32549019607843138</real> 5129 5076 <key>Color Space</key> 5130 5077 <string>sRGB</string> 5131 5078 <key>Green Component</key> 5132 - <integer>1</integer> 5079 + <real>0.24705882352941178</real> 5133 5080 <key>Red Component</key> 5134 - <real>0.19607843458652496</real> 5081 + <real>0.25098039215686274</real> 5135 5082 </dict> 5136 5083 <key>Foreground Color (Dark)</key> 5137 5084 <dict> ··· 5347 5294 <key>Text</key> 5348 5295 <string>[F</string> 5349 5296 </dict> 5297 + <key>0xf728-0x100000-0x75</key> 5298 + <dict> 5299 + <key>Action</key> 5300 + <integer>11</integer> 5301 + <key>Apply Mode</key> 5302 + <integer>0</integer> 5303 + <key>Escaping</key> 5304 + <integer>2</integer> 5305 + <key>Text</key> 5306 + <string>0B</string> 5307 + <key>Version</key> 5308 + <integer>2</integer> 5309 + </dict> 5350 5310 <key>0xf728-0x80000</key> 5351 5311 <dict> 5352 5312 <key>Action</key> ··· 5367 5327 <key>Alpha Component</key> 5368 5328 <integer>1</integer> 5369 5329 <key>Blue Component</key> 5370 - <real>0.73423302173614502</real> 5330 + <real>0.70932406187057495</real> 5371 5331 <key>Color Space</key> 5372 - <string>sRGB</string> 5332 + <string>P3</string> 5373 5333 <key>Green Component</key> 5374 - <real>0.35916060209274292</real> 5334 + <real>0.35333043336868286</real> 5375 5335 <key>Red Component</key> 5376 - <integer>0</integer> 5336 + <real>0.1451396644115448</real> 5377 5337 </dict> 5378 5338 <key>Link Color (Dark)</key> 5379 5339 <dict> ··· 5451 5411 <key>Name</key> 5452 5412 <string>SSH Session (xterm-256color)</string> 5453 5413 <key>Non Ascii Font</key> 5454 - <string>Monaco 12</string> 5414 + <string>MonaspiceArNF-Regular 12</string> 5455 5415 <key>Non-ASCII Anti Aliased</key> 5456 5416 <true/> 5457 5417 <key>Normal Font</key> 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> 5418 + <string>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}]}</string> 5459 5419 <key>Only The Default BG Color Uses Transparency</key> 5460 5420 <false/> 5461 5421 <key>Open Toolbelt</key> ··· 5478 5438 <integer>0</integer> 5479 5439 <key>Selected Text Color</key> 5480 5440 <dict> 5481 - <key>Alpha Component</key> 5482 - <integer>1</integer> 5483 5441 <key>Blue Component</key> 5484 - <real>0.95729249715805054</real> 5442 + <real>0.32549019607843138</real> 5485 5443 <key>Color Space</key> 5486 5444 <string>sRGB</string> 5487 5445 <key>Green Component</key> 5488 - <real>0.54609501361846924</real> 5446 + <real>0.24705882352941178</real> 5489 5447 <key>Red Component</key> 5490 - <real>0.47127401828765869</real> 5448 + <real>0.25098039215686274</real> 5491 5449 </dict> 5492 5450 <key>Selected Text Color (Dark)</key> 5493 5451 <dict> ··· 5511 5469 </dict> 5512 5470 <key>Selection Color</key> 5513 5471 <dict> 5514 - <key>Alpha Component</key> 5515 - <integer>1</integer> 5516 5472 <key>Blue Component</key> 5517 - <real>0.6616329550743103</real> 5473 + <real>0.94999999999999996</real> 5518 5474 <key>Color Space</key> 5519 5475 <string>sRGB</string> 5520 5476 <key>Green Component</key> 5521 - <real>0.18451127409934998</real> 5477 + <real>0.94999999999999996</real> 5522 5478 <key>Red Component</key> 5523 - <real>0.053524382412433603</real> 5479 + <real>0.94999999999999996</real> 5524 5480 </dict> 5525 5481 <key>Selection Color (Dark)</key> 5526 5482 <dict> ··· 5562 5518 <key>Shortcut</key> 5563 5519 <string></string> 5564 5520 <key>Show Mark Indicators</key> 5565 - <true/> 5521 + <false/> 5566 5522 <key>Show Status Bar</key> 5567 5523 <true/> 5568 5524 <key>Silence Bell</key> ··· 5573 5529 <false/> 5574 5530 <key>Space</key> 5575 5531 <integer>0</integer> 5532 + <key>Special Font Config</key> 5533 + <string>{"entries":[{"count":4,"fontName":"UnicodeIECsymbol","start":9211},{"fontName":"Octicons","start":9829,"count":1},{"fontName":"Octicons","start":9889,"count":1},{"start":11096,"count":1,"fontName":"UnicodeIECsymbol"},{"fontName":"Pomicons","start":57344,"count":11},{"start":57504,"count":3,"fontName":"PowerlineSymbols"},{"count":1,"start":57507,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineSymbols","count":4,"start":57520},{"count":21,"fontName":"PowerlineExtraSymbols","start":57524},{"count":1,"start":57546,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineExtraSymbols","count":8,"start":57548},{"destination":57856,"start":57344,"count":170,"fontName":"font-awesome-extension"},{"destination":58112,"start":61440,"fontName":"Weather Icons Regular","count":236},{"start":58618,"count":177,"destination":58874,"fontName":"Nerd Font File Types Regular"},{"start":58880,"count":198,"destination":59136,"fontName":"icomoon"},{"start":60000,"count":396,"fontName":"codicon"},{"count":736,"fontName":"FontAwesome","start":61440},{"start":62208,"count":48,"fontName":"font-logos"},{"fontName":"Octicons","count":168,"start":61440,"destination":62464},{"count":1,"destination":62633,"start":62076,"fontName":"Octicons"},{"fontName":"Octicons","start":61609,"count":86,"destination":62634},{"start":61441,"count":2118,"fontName":"Material Design Icons","destination":62720},{"start":983041,"count":6896,"fontName":"Material Design Icons Desktop"}],"version":1}</string> 5576 5534 <key>Status Bar Layout</key> 5577 5535 <dict> 5578 5536 <key>advanced configuration</key> ··· 5580 5538 <key>algorithm</key> 5581 5539 <integer>0</integer> 5582 5540 <key>font</key> 5583 - <string>MonaspaceArgon-Regular 11</string> 5541 + <string>MonaspaceArgonVar-Medium 12</string> 5584 5542 </dict> 5585 5543 <key>components</key> 5586 5544 <array> ··· 5618 5576 <key>algorithm</key> 5619 5577 <integer>0</integer> 5620 5578 <key>font</key> 5621 - <string>MonaspaceArgon-Regular 11</string> 5579 + <string>MonaspaceArgonVar-Medium 12</string> 5622 5580 </dict> 5623 5581 </dict> 5624 5582 </dict> ··· 5658 5616 <key>algorithm</key> 5659 5617 <integer>0</integer> 5660 5618 <key>font</key> 5661 - <string>MonaspaceArgon-Regular 11</string> 5619 + <string>MonaspaceArgonVar-Medium 12</string> 5662 5620 </dict> 5663 5621 </dict> 5664 5622 </dict> ··· 5698 5656 <key>algorithm</key> 5699 5657 <integer>0</integer> 5700 5658 <key>font</key> 5701 - <string>MonaspaceArgon-Regular 11</string> 5659 + <string>MonaspaceArgonVar-Medium 12</string> 5702 5660 </dict> 5703 5661 </dict> 5704 5662 </dict> ··· 5732 5690 <key>algorithm</key> 5733 5691 <integer>0</integer> 5734 5692 <key>font</key> 5735 - <string>MonaspaceArgon-Regular 11</string> 5693 + <string>MonaspaceArgonVar-Medium 12</string> 5736 5694 </dict> 5737 5695 </dict> 5738 5696 </dict> ··· 5766 5724 <key>algorithm</key> 5767 5725 <integer>0</integer> 5768 5726 <key>font</key> 5769 - <string>MonaspaceArgon-Regular 11</string> 5727 + <string>MonaspaceArgonVar-Medium 12</string> 5770 5728 </dict> 5771 5729 </dict> 5772 5730 </dict> ··· 5781 5739 <key>Terminal Type</key> 5782 5740 <string>xterm-256color</string> 5783 5741 <key>Thin Strokes</key> 5784 - <integer>4</integer> 5742 + <integer>0</integer> 5785 5743 <key>Transparency</key> 5786 5744 <integer>0</integer> 5787 5745 <key>Triggers</key> ··· 5826 5784 <key>Use Italic Font</key> 5827 5785 <true/> 5828 5786 <key>Use Non-ASCII Font</key> 5829 - <false/> 5787 + <true/> 5830 5788 <key>Use Selected Text Color (Dark)</key> 5831 5789 <true/> 5832 5790 <key>Use Selected Text Color (Light)</key> ··· 5852 5810 <key>Window Type</key> 5853 5811 <integer>0</integer> 5854 5812 <key>Working Directory</key> 5855 - <string></string> 5813 + <string>~/Documents</string> 5856 5814 </dict> 5857 5815 <dict> 5858 5816 <key>ASCII Anti Aliased</key> 5859 5817 <true/> 5860 5818 <key>ASCII Ligatures</key> 5861 - <true/> 5819 + <false/> 5862 5820 <key>AWDS Pane Directory</key> 5863 5821 <string></string> 5864 5822 <key>AWDS Pane Option</key> ··· 5877 5835 <false/> 5878 5836 <key>Ansi 0 Color</key> 5879 5837 <dict> 5880 - <key>Alpha Component</key> 5881 - <integer>1</integer> 5882 5838 <key>Blue Component</key> 5883 - <integer>0</integer> 5839 + <real>0.15294117647058825</real> 5884 5840 <key>Color Space</key> 5885 5841 <string>sRGB</string> 5886 5842 <key>Green Component</key> 5887 - <integer>0</integer> 5843 + <real>0.086274509803921567</real> 5888 5844 <key>Red Component</key> 5889 - <integer>0</integer> 5845 + <real>0.0039215686274509803</real> 5890 5846 </dict> 5891 5847 <key>Ansi 0 Color (Dark)</key> 5892 5848 <dict> ··· 5910 5866 </dict> 5911 5867 <key>Ansi 1 Color</key> 5912 5868 <dict> 5913 - <key>Alpha Component</key> 5914 - <integer>1</integer> 5915 5869 <key>Blue Component</key> 5916 - <real>0.058099240064620972</real> 5870 + <real>0.24313725490196078</real> 5917 5871 <key>Color Space</key> 5918 5872 <string>sRGB</string> 5919 5873 <key>Green Component</key> 5920 - <real>0.10371831804513931</real> 5874 + <real>0.25882352941176473</real> 5921 5875 <key>Red Component</key> 5922 - <real>0.66812098026275635</real> 5876 + <real>0.82745098039215681</real> 5923 5877 </dict> 5924 5878 <key>Ansi 1 Color (Dark)</key> 5925 5879 <dict> ··· 5943 5897 </dict> 5944 5898 <key>Ansi 10 Color</key> 5945 5899 <dict> 5946 - <key>Alpha Component</key> 5947 - <integer>1</integer> 5948 5900 <key>Blue Component</key> 5949 - <real>0.1634487509727478</real> 5901 + <real>0.77254901960784317</real> 5950 5902 <key>Color Space</key> 5951 5903 <string>sRGB</string> 5952 5904 <key>Green Component</key> 5953 - <real>0.85659819841384888</real> 5905 + <real>0.81568627450980391</real> 5954 5906 <key>Red Component</key> 5955 - <integer>0</integer> 5907 + <real>0.28627450980392155</real> 5956 5908 </dict> 5957 5909 <key>Ansi 10 Color (Dark)</key> 5958 5910 <dict> ··· 5976 5928 </dict> 5977 5929 <key>Ansi 11 Color</key> 5978 5930 <dict> 5979 - <key>Alpha Component</key> 5980 - <integer>1</integer> 5981 5931 <key>Blue Component</key> 5982 - <real>0.23028141260147095</real> 5932 + <real>0.41960784313725491</real> 5983 5933 <key>Color Space</key> 5984 5934 <string>sRGB</string> 5985 5935 <key>Green Component</key> 5986 - <real>0.90874701738357544</real> 5936 + <real>0.76078431372549016</real> 5987 5937 <key>Red Component</key> 5988 - <real>0.91766214370727539</real> 5938 + <real>0.85490196078431369</real> 5989 5939 </dict> 5990 5940 <key>Ansi 11 Color (Dark)</key> 5991 5941 <dict> ··· 6009 5959 </dict> 6010 5960 <key>Ansi 12 Color</key> 6011 5961 <dict> 6012 - <key>Alpha Component</key> 6013 - <integer>1</integer> 6014 5962 <key>Blue Component</key> 6015 - <real>0.98149222135543823</real> 5963 + <real>0.89411764705882357</real> 6016 5964 <key>Color Space</key> 6017 5965 <string>sRGB</string> 6018 5966 <key>Green Component</key> 6019 - <real>0.58920532464981079</real> 5967 + <real>0.65490196078431373</real> 6020 5968 <key>Red Component</key> 6021 - <real>0.52499485015869141</real> 5969 + <real>0.36078431372549019</real> 6022 5970 </dict> 6023 5971 <key>Ansi 12 Color (Dark)</key> 6024 5972 <dict> ··· 6042 5990 </dict> 6043 5991 <key>Ansi 13 Color</key> 6044 5992 <dict> 6045 - <key>Alpha Component</key> 6046 - <integer>1</integer> 6047 5993 <key>Blue Component</key> 6048 - <real>0.91244477033615112</real> 5994 + <real>0.59607843137254901</real> 6049 5995 <key>Color Space</key> 6050 5996 <string>sRGB</string> 6051 5997 <key>Green Component</key> 6052 - <real>0.23190298676490784</real> 5998 + <real>0.4392156862745098</real> 6053 5999 <key>Red Component</key> 6054 - <real>0.92568391561508179</real> 6000 + <real>0.41176470588235292</real> 6055 6001 </dict> 6056 6002 <key>Ansi 13 Color (Dark)</key> 6057 6003 <dict> ··· 6075 6021 </dict> 6076 6022 <key>Ansi 14 Color</key> 6077 6023 <dict> 6078 - <key>Alpha Component</key> 6079 - <integer>1</integer> 6080 6024 <key>Blue Component</key> 6081 - <real>0.96042031049728394</real> 6025 + <real>0.56470588235294117</real> 6082 6026 <key>Color Space</key> 6083 6027 <string>sRGB</string> 6084 6028 <key>Green Component</key> 6085 - <real>0.9253380298614502</real> 6029 + <real>0.78823529411764703</real> 6086 6030 <key>Red Component</key> 6087 6031 <integer>0</integer> 6088 6032 </dict> ··· 6108 6052 </dict> 6109 6053 <key>Ansi 15 Color</key> 6110 6054 <dict> 6111 - <key>Alpha Component</key> 6112 - <integer>1</integer> 6113 6055 <key>Blue Component</key> 6114 - <real>0.92144554853439331</real> 6056 + <real>0.69411764705882351</real> 6115 6057 <key>Color Space</key> 6116 6058 <string>sRGB</string> 6117 6059 <key>Green Component</key> 6118 - <real>0.91843283176422119</real> 6060 + <real>0.62352941176470589</real> 6119 6061 <key>Red Component</key> 6120 - <real>0.92151540517807007</real> 6062 + <real>0.59607843137254901</real> 6121 6063 </dict> 6122 6064 <key>Ansi 15 Color (Dark)</key> 6123 6065 <dict> ··· 6141 6083 </dict> 6142 6084 <key>Ansi 2 Color</key> 6143 6085 <dict> 6144 - <key>Alpha Component</key> 6145 - <integer>1</integer> 6146 6086 <key>Blue Component</key> 6147 - <integer>0</integer> 6087 + <real>0.59607843137254901</real> 6148 6088 <key>Color Space</key> 6149 6089 <string>sRGB</string> 6150 6090 <key>Green Component</key> 6151 - <real>0.59999999999999998</real> 6091 + <real>0.63529411764705879</real> 6152 6092 <key>Red Component</key> 6153 - <integer>0</integer> 6093 + <real>0.16470588235294117</real> 6154 6094 </dict> 6155 6095 <key>Ansi 2 Color (Dark)</key> 6156 6096 <dict> ··· 6174 6114 </dict> 6175 6115 <key>Ansi 3 Color</key> 6176 6116 <dict> 6177 - <key>Alpha Component</key> 6178 - <integer>1</integer> 6179 6117 <key>Blue Component</key> 6180 - <real>0.13504385948181152</real> 6118 + <real>0.0039215686274509803</real> 6181 6119 <key>Color Space</key> 6182 6120 <string>sRGB</string> 6183 6121 <key>Green Component</key> 6184 - <real>0.65481686592102051</real> 6122 + <real>0.66666666666666663</real> 6185 6123 <key>Red Component</key> 6186 - <real>0.66385143995285034</real> 6124 + <real>0.85490196078431369</real> 6187 6125 </dict> 6188 6126 <key>Ansi 3 Color (Dark)</key> 6189 6127 <dict> ··· 6207 6145 </dict> 6208 6146 <key>Ansi 4 Color</key> 6209 6147 <dict> 6210 - <key>Alpha Component</key> 6211 - <integer>1</integer> 6212 6148 <key>Blue Component</key> 6213 - <integer>1</integer> 6149 + <real>0.83921568627450982</real> 6214 6150 <key>Color Space</key> 6215 6151 <string>sRGB</string> 6216 6152 <key>Green Component</key> 6217 - <real>0.19741851091384888</real> 6153 + <real>0.46274509803921571</real> 6218 6154 <key>Red Component</key> 6219 - <real>0.30479651689529419</real> 6155 + <real>0.28235294117647058</real> 6220 6156 </dict> 6221 6157 <key>Ansi 4 Color (Dark)</key> 6222 6158 <dict> ··· 6240 6176 </dict> 6241 6177 <key>Ansi 5 Color</key> 6242 6178 <dict> 6243 - <key>Alpha Component</key> 6244 - <integer>1</integer> 6245 6179 <key>Blue Component</key> 6246 - <real>0.74776667356491089</real> 6180 + <real>0.32549019607843138</real> 6247 6181 <key>Color Space</key> 6248 6182 <string>sRGB</string> 6249 6183 <key>Green Component</key> 6250 - <real>0.18239298462867737</real> 6184 + <real>0.24705882352941178</real> 6251 6185 <key>Red Component</key> 6252 - <real>0.75607430934906006</real> 6186 + <real>0.25098039215686274</real> 6253 6187 </dict> 6254 6188 <key>Ansi 5 Color (Dark)</key> 6255 6189 <dict> ··· 6273 6207 </dict> 6274 6208 <key>Ansi 6 Color</key> 6275 6209 <dict> 6276 - <key>Alpha Component</key> 6277 - <integer>1</integer> 6278 6210 <key>Blue Component</key> 6279 - <real>0.80842679738998413</real> 6211 + <real>0.41568627450980394</real> 6280 6212 <key>Color Space</key> 6281 6213 <string>sRGB</string> 6282 6214 <key>Green Component</key> 6283 - <real>0.75365883111953735</real> 6215 + <real>0.56862745098039214</real> 6284 6216 <key>Red Component</key> 6285 - <integer>0</integer> 6217 + <real>0.031372549019607843</real> 6286 6218 </dict> 6287 6219 <key>Ansi 6 Color (Dark)</key> 6288 6220 <dict> ··· 6306 6238 </dict> 6307 6239 <key>Ansi 7 Color</key> 6308 6240 <dict> 6309 - <key>Alpha Component</key> 6310 - <integer>1</integer> 6311 6241 <key>Blue Component</key> 6312 - <real>0.79442524909973145</real> 6242 + <real>0.50588235294117645</real> 6313 6243 <key>Color Space</key> 6314 6244 <string>sRGB</string> 6315 6245 <key>Green Component</key> 6316 - <real>0.79443532228469849</real> 6246 + <real>0.50588235294117645</real> 6317 6247 <key>Red Component</key> 6318 - <real>0.79441660642623901</real> 6248 + <real>0.47843137254901963</real> 6319 6249 </dict> 6320 6250 <key>Ansi 7 Color (Dark)</key> 6321 6251 <dict> ··· 6339 6269 </dict> 6340 6270 <key>Ansi 8 Color</key> 6341 6271 <dict> 6342 - <key>Alpha Component</key> 6343 - <integer>1</integer> 6344 6272 <key>Blue Component</key> 6345 - <real>0.47564041614532471</real> 6273 + <real>0.50588235294117645</real> 6346 6274 <key>Color Space</key> 6347 6275 <string>sRGB</string> 6348 6276 <key>Green Component</key> 6349 - <real>0.4756467342376709</real> 6277 + <real>0.50588235294117645</real> 6350 6278 <key>Red Component</key> 6351 - <real>0.47563493251800537</real> 6279 + <real>0.47843137254901963</real> 6352 6280 </dict> 6353 6281 <key>Ansi 8 Color (Dark)</key> 6354 6282 <dict> ··· 6372 6300 </dict> 6373 6301 <key>Ansi 9 Color</key> 6374 6302 <dict> 6375 - <key>Alpha Component</key> 6376 - <integer>1</integer> 6377 6303 <key>Blue Component</key> 6378 - <real>0.13415428996086121</real> 6304 + <real>0.43137254901960786</real> 6379 6305 <key>Color Space</key> 6380 6306 <string>sRGB</string> 6381 6307 <key>Green Component</key> 6382 - <real>0.18266522884368896</real> 6308 + <real>0.43137254901960786</real> 6383 6309 <key>Red Component</key> 6384 - <real>0.92504602670669556</real> 6310 + <real>0.96862745098039216</real> 6385 6311 </dict> 6386 6312 <key>Ansi 9 Color (Dark)</key> 6387 6313 <dict> ··· 6410 6336 <key>Background Color</key> 6411 6337 <dict> 6412 6338 <key>Blue Component</key> 6413 - <integer>0</integer> 6339 + <integer>1</integer> 6340 + <key>Color Space</key> 6341 + <string>sRGB</string> 6414 6342 <key>Green Component</key> 6415 - <integer>0</integer> 6343 + <integer>1</integer> 6416 6344 <key>Red Component</key> 6417 - <integer>0</integer> 6345 + <integer>1</integer> 6418 6346 </dict> 6419 6347 <key>Background Color (Dark)</key> 6420 6348 <dict> ··· 6478 6406 <real>0.92929404973983765</real> 6479 6407 </dict> 6480 6408 <key>Badge Font</key> 6481 - <string>MonaspaceNeon-Bold</string> 6409 + <string>MonaspaceKrypton-Bold</string> 6482 6410 <key>Badge Max Height</key> 6483 6411 <real>0.29999999999999999</real> 6484 6412 <key>Badge Max Width</key> ··· 6499 6427 <real>8.3475194321065995</real> 6500 6428 <key>Bold Color</key> 6501 6429 <dict> 6502 - <key>Alpha Component</key> 6503 - <integer>1</integer> 6504 6430 <key>Blue Component</key> 6505 - <real>0.18352475762367249</real> 6431 + <real>0.32549019607843138</real> 6506 6432 <key>Color Space</key> 6507 6433 <string>sRGB</string> 6508 6434 <key>Green Component</key> 6509 - <real>0.95898884534835815</real> 6435 + <real>0.24705882352941178</real> 6510 6436 <key>Red Component</key> 6511 - <integer>0</integer> 6437 + <real>0.25098039215686274</real> 6512 6438 </dict> 6513 6439 <key>Bold Color (Dark)</key> 6514 6440 <dict> ··· 6554 6480 <integer>0</integer> 6555 6481 <key>Cursor Color</key> 6556 6482 <dict> 6557 - <key>Alpha Component</key> 6558 - <integer>1</integer> 6559 6483 <key>Blue Component</key> 6560 - <real>0.28506788611412048</real> 6484 + <real>0.32549019607843138</real> 6561 6485 <key>Color Space</key> 6562 6486 <string>sRGB</string> 6563 6487 <key>Green Component</key> 6564 - <real>0.9755217432975769</real> 6488 + <real>0.24705882352941178</real> 6565 6489 <key>Red Component</key> 6566 - <real>0.27456897497177124</real> 6490 + <real>0.25098039215686274</real> 6567 6491 </dict> 6568 6492 <key>Cursor Color (Dark)</key> 6569 6493 <dict> ··· 6590 6514 <key>Alpha Component</key> 6591 6515 <real>0.25</real> 6592 6516 <key>Blue Component</key> 6593 - <integer>1</integer> 6517 + <real>0.99125725030899048</real> 6594 6518 <key>Color Space</key> 6595 - <string>sRGB</string> 6519 + <string>P3</string> 6596 6520 <key>Green Component</key> 6597 - <real>0.9268307089805603</real> 6521 + <real>0.92047786712646484</real> 6598 6522 <key>Red Component</key> 6599 - <real>0.70213186740875244</real> 6523 + <real>0.7486259937286377</real> 6600 6524 </dict> 6601 6525 <key>Cursor Guide Color (Dark)</key> 6602 6526 <dict> ··· 6627 6551 <key>Cursor Text Color</key> 6628 6552 <dict> 6629 6553 <key>Blue Component</key> 6630 - <integer>1</integer> 6554 + <real>0.98431372549019602</real> 6555 + <key>Color Space</key> 6556 + <string>sRGB</string> 6631 6557 <key>Green Component</key> 6632 - <integer>1</integer> 6558 + <real>0.98431372549019602</real> 6633 6559 <key>Red Component</key> 6634 - <integer>1</integer> 6560 + <real>0.98431372549019602</real> 6635 6561 </dict> 6636 6562 <key>Cursor Text Color (Dark)</key> 6637 6563 <dict> ··· 6675 6601 <true/> 6676 6602 <key>Foreground Color</key> 6677 6603 <dict> 6678 - <key>Alpha Component</key> 6679 - <integer>1</integer> 6680 6604 <key>Blue Component</key> 6681 - <real>0.23137255012989044</real> 6605 + <real>0.32549019607843138</real> 6682 6606 <key>Color Space</key> 6683 6607 <string>sRGB</string> 6684 6608 <key>Green Component</key> 6685 - <integer>1</integer> 6609 + <real>0.24705882352941178</real> 6686 6610 <key>Red Component</key> 6687 - <real>0.19607843458652496</real> 6611 + <real>0.25098039215686274</real> 6688 6612 </dict> 6689 6613 <key>Foreground Color (Dark)</key> 6690 6614 <dict> ··· 6898 6822 <key>Text</key> 6899 6823 <string>[F</string> 6900 6824 </dict> 6825 + <key>0xf728-0x100000-0x75</key> 6826 + <dict> 6827 + <key>Action</key> 6828 + <integer>11</integer> 6829 + <key>Apply Mode</key> 6830 + <integer>0</integer> 6831 + <key>Escaping</key> 6832 + <integer>2</integer> 6833 + <key>Text</key> 6834 + <string>0B</string> 6835 + <key>Version</key> 6836 + <integer>2</integer> 6837 + </dict> 6901 6838 <key>0xf728-0x80000</key> 6902 6839 <dict> 6903 6840 <key>Action</key> ··· 6918 6855 <key>Alpha Component</key> 6919 6856 <integer>1</integer> 6920 6857 <key>Blue Component</key> 6921 - <real>0.73423302173614502</real> 6858 + <real>0.70932406187057495</real> 6922 6859 <key>Color Space</key> 6923 - <string>sRGB</string> 6860 + <string>P3</string> 6924 6861 <key>Green Component</key> 6925 - <real>0.35916060209274292</real> 6862 + <real>0.35333043336868286</real> 6926 6863 <key>Red Component</key> 6927 - <integer>0</integer> 6864 + <real>0.1451396644115448</real> 6928 6865 </dict> 6929 6866 <key>Link Color (Dark)</key> 6930 6867 <dict> ··· 7002 6939 <key>Name</key> 7003 6940 <string>SolutionTest / Testbeds</string> 7004 6941 <key>Non Ascii Font</key> 7005 - <string>Monaco 12</string> 6942 + <string>MonaspiceArNF-Regular 12</string> 7006 6943 <key>Non-ASCII Anti Aliased</key> 7007 6944 <true/> 7008 6945 <key>Normal Font</key> 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> 6946 + <string>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}]}</string> 7010 6947 <key>Only The Default BG Color Uses Transparency</key> 7011 6948 <false/> 7012 6949 <key>Open Toolbelt</key> ··· 7027 6964 <integer>0</integer> 7028 6965 <key>Selected Text Color</key> 7029 6966 <dict> 7030 - <key>Alpha Component</key> 7031 - <integer>1</integer> 7032 6967 <key>Blue Component</key> 7033 - <real>0.95729249715805054</real> 6968 + <real>0.32549019607843138</real> 7034 6969 <key>Color Space</key> 7035 6970 <string>sRGB</string> 7036 6971 <key>Green Component</key> 7037 - <real>0.54609501361846924</real> 6972 + <real>0.24705882352941178</real> 7038 6973 <key>Red Component</key> 7039 - <real>0.47127401828765869</real> 6974 + <real>0.25098039215686274</real> 7040 6975 </dict> 7041 6976 <key>Selected Text Color (Dark)</key> 7042 6977 <dict> ··· 7060 6995 </dict> 7061 6996 <key>Selection Color</key> 7062 6997 <dict> 7063 - <key>Alpha Component</key> 7064 - <integer>1</integer> 7065 6998 <key>Blue Component</key> 7066 - <real>0.6616329550743103</real> 6999 + <real>0.94999999999999996</real> 7067 7000 <key>Color Space</key> 7068 7001 <string>sRGB</string> 7069 7002 <key>Green Component</key> 7070 - <real>0.18451127409934998</real> 7003 + <real>0.94999999999999996</real> 7071 7004 <key>Red Component</key> 7072 - <real>0.053524382412433603</real> 7005 + <real>0.94999999999999996</real> 7073 7006 </dict> 7074 7007 <key>Selection Color (Dark)</key> 7075 7008 <dict> ··· 7111 7044 <key>Shortcut</key> 7112 7045 <string></string> 7113 7046 <key>Show Mark Indicators</key> 7114 - <true/> 7047 + <false/> 7115 7048 <key>Show Status Bar</key> 7116 7049 <true/> 7117 7050 <key>Silence Bell</key> ··· 7122 7055 <false/> 7123 7056 <key>Space</key> 7124 7057 <integer>0</integer> 7058 + <key>Special Font Config</key> 7059 + <string>{"entries":[{"count":4,"fontName":"UnicodeIECsymbol","start":9211},{"fontName":"Octicons","start":9829,"count":1},{"fontName":"Octicons","start":9889,"count":1},{"start":11096,"count":1,"fontName":"UnicodeIECsymbol"},{"fontName":"Pomicons","start":57344,"count":11},{"start":57504,"count":3,"fontName":"PowerlineSymbols"},{"count":1,"start":57507,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineSymbols","count":4,"start":57520},{"count":21,"fontName":"PowerlineExtraSymbols","start":57524},{"count":1,"start":57546,"fontName":"PowerlineExtraSymbols"},{"fontName":"PowerlineExtraSymbols","count":8,"start":57548},{"destination":57856,"start":57344,"count":170,"fontName":"font-awesome-extension"},{"destination":58112,"start":61440,"fontName":"Weather Icons Regular","count":236},{"start":58618,"count":177,"destination":58874,"fontName":"Nerd Font File Types Regular"},{"start":58880,"count":198,"destination":59136,"fontName":"icomoon"},{"start":60000,"count":396,"fontName":"codicon"},{"count":736,"fontName":"FontAwesome","start":61440},{"start":62208,"count":48,"fontName":"font-logos"},{"fontName":"Octicons","count":168,"start":61440,"destination":62464},{"count":1,"destination":62633,"start":62076,"fontName":"Octicons"},{"fontName":"Octicons","start":61609,"count":86,"destination":62634},{"start":61441,"count":2118,"fontName":"Material Design Icons","destination":62720},{"start":983041,"count":6896,"fontName":"Material Design Icons Desktop"}],"version":1}</string> 7125 7060 <key>Status Bar Layout</key> 7126 7061 <dict> 7127 7062 <key>advanced configuration</key> ··· 7129 7064 <key>algorithm</key> 7130 7065 <integer>0</integer> 7131 7066 <key>font</key> 7132 - <string>MonaspaceArgon-Regular 11</string> 7067 + <string>MonaspaceArgonVar-Medium 12</string> 7133 7068 </dict> 7134 7069 <key>components</key> 7135 7070 <array> ··· 7167 7102 <key>algorithm</key> 7168 7103 <integer>0</integer> 7169 7104 <key>font</key> 7170 - <string>MonaspaceArgon-Regular 11</string> 7105 + <string>MonaspaceArgonVar-Medium 12</string> 7171 7106 </dict> 7172 7107 </dict> 7173 7108 </dict> ··· 7207 7142 <key>algorithm</key> 7208 7143 <integer>0</integer> 7209 7144 <key>font</key> 7210 - <string>MonaspaceArgon-Regular 11</string> 7145 + <string>MonaspaceArgonVar-Medium 12</string> 7211 7146 </dict> 7212 7147 </dict> 7213 7148 </dict> ··· 7247 7182 <key>algorithm</key> 7248 7183 <integer>0</integer> 7249 7184 <key>font</key> 7250 - <string>MonaspaceArgon-Regular 11</string> 7185 + <string>MonaspaceArgonVar-Medium 12</string> 7251 7186 </dict> 7252 7187 </dict> 7253 7188 </dict> ··· 7281 7216 <key>algorithm</key> 7282 7217 <integer>0</integer> 7283 7218 <key>font</key> 7284 - <string>MonaspaceArgon-Regular 11</string> 7219 + <string>MonaspaceArgonVar-Medium 12</string> 7285 7220 </dict> 7286 7221 </dict> 7287 7222 </dict> ··· 7315 7250 <key>algorithm</key> 7316 7251 <integer>0</integer> 7317 7252 <key>font</key> 7318 - <string>MonaspaceArgon-Regular 11</string> 7253 + <string>MonaspaceArgonVar-Medium 12</string> 7319 7254 </dict> 7320 7255 </dict> 7321 7256 </dict> ··· 7328 7263 <string>Dynamic</string> 7329 7264 </array> 7330 7265 <key>Terminal Type</key> 7331 - <string>xterm-256color-italic</string> 7266 + <string>xterm-256color</string> 7332 7267 <key>Thin Strokes</key> 7333 - <integer>4</integer> 7268 + <integer>0</integer> 7334 7269 <key>Transparency</key> 7335 7270 <integer>0</integer> 7336 7271 <key>Triggers</key> ··· 7375 7310 <key>Use Italic Font</key> 7376 7311 <true/> 7377 7312 <key>Use Non-ASCII Font</key> 7378 - <false/> 7313 + <true/> 7379 7314 <key>Use Selected Text Color (Dark)</key> 7380 7315 <true/> 7381 7316 <key>Use Selected Text Color (Light)</key>
.config/yadm/alt/.ssh/config.local##class.work

This is a binary file and will not be displayed.

+521 -521
.config/yadm/alt/Library/Application Support/Stretchly/config.json##os.Darwin
··· 1 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": true, 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": 7, 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.1, 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": 0.75 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.9, 270 + "breakWindowWidth": 0.9, 271 + "checkNewVersion": true, 272 + "currentTimeInBreaks": true, 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": 7, 500 + "naturalBreaks": true, 501 + "naturalBreaksInactivityResetTime": 300000, 502 + "notifyNewVersion": true, 503 + "opacity": 0.75, 504 + "pauseBreaksToggleShortcut": "", 505 + "pauseForSuspendOrLock": true, 506 + "posLatitude": 42.37, 507 + "posLongitude": 71.1, 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": true, 519 + "useIdeasFromSettings": false, 520 + "useMonochromeInvertedTrayIcon": false, 521 + "useMonochromeTrayIcon": true, 522 + "volume": 0.8 523 523 }
+1
.cspell/default.txt
··· 41 41 eabi 42 42 EINVAL 43 43 elif 44 + endregion 44 45 enum 45 46 enum's 46 47 errno
+2
.gitconfig
··· 35 35 sswitch = !sh -c 'git stash && git switch \"$@\" && git stash pop' - 36 36 ssw = sswitch 37 37 su = submodule update 38 + copy = !fish -c \"git diff $argv | fish_clipboard_copy\" - 39 + paste = !fish -c \"fish_clipboard_paste | git apply\" 38 40 [core] 39 41 editor = vim 40 42 quotePath = true
.ssh/config

This is a binary file and will not be displayed.