dotfiles-tui 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.env.example +4 -0
- data/.gitattributes +1 -0
- data/.github/workflows/publish-gem.yml +36 -0
- data/.gitignore +316 -0
- data/.shellcheckrc +1 -0
- data/.stow-local-ignore +23 -0
- data/.vscode/settings.json +2 -0
- data/Configs/aerospace/.config/aerospace/aerospace.toml +265 -0
- data/Configs/alacritty/.config/alacritty/alacritty.toml +31 -0
- data/Configs/conda/.condarc +1 -0
- data/Configs/continue/.continue/.continueignore +0 -0
- data/Configs/continue/.continue/.continuerc.json +3 -0
- data/Configs/continue/.continue/config.json +48 -0
- data/Configs/docker/.docker/completion/completion.zsh +3 -0
- data/Configs/editorconfig/.editorconfig +16 -0
- data/Configs/fzf/.fzf/completion/completion.zsh +8 -0
- data/Configs/git/.config/gitconfig/core +83 -0
- data/Configs/git/.config/gitconfig/home +20 -0
- data/Configs/git/.config/gitconfig/template.txt +7 -0
- data/Configs/git/.config/gitconfig/work +23 -0
- data/Configs/git/.gitconfig +25 -0
- data/Configs/gpg/.gnupg/.#lk0x000000015060b4e0.macBook.pro.24088 +2 -0
- data/Configs/gpg/.gnupg/gpg-agent.conf +3 -0
- data/Configs/gpg/.gnupg/openpgp-revocs.d/DE999E2ACEAE3E8EAD660459688CB4D444FB1024.rev +28 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/0FF407C984AC03CCC60D924C5B315977DF45D5D0.key +7 -0
- data/Configs/gpg/.gnupg/private-keys-v1.d/2B711D7C4A8BE25322C9966B73E6842F7E64CD38.key +7 -0
- data/Configs/gpg/.gnupg/pubring.kbx +0 -0
- data/Configs/gpg/.gnupg/trustdb.gpg +0 -0
- data/Configs/kitty/.config/kitty/current-theme.conf +80 -0
- data/Configs/kitty/.config/kitty/kitty.conf +93 -0
- data/Configs/nvim/.config/nvim/.stylua.toml +6 -0
- data/Configs/nvim/.config/nvim/README.md +9 -0
- data/Configs/nvim/.config/nvim/init.lua +37 -0
- data/Configs/nvim/.config/nvim/lazy-lock.json +29 -0
- data/Configs/nvim/.config/nvim/lua/chadrc.lua +17 -0
- data/Configs/nvim/.config/nvim/lua/configs/conform.lua +15 -0
- data/Configs/nvim/.config/nvim/lua/configs/lazy.lua +47 -0
- data/Configs/nvim/.config/nvim/lua/configs/lspconfig.lua +24 -0
- data/Configs/nvim/.config/nvim/lua/configs/null_ls.lua +27 -0
- data/Configs/nvim/.config/nvim/lua/mappings.lua +10 -0
- data/Configs/nvim/.config/nvim/lua/options.lua +6 -0
- data/Configs/nvim/.config/nvim/lua/plugins/init.lua +25 -0
- data/Configs/oh-my-posh/.config/oh-my-posh/theme/config.json +71 -0
- data/Configs/pip/.config/pip/pip.conf +3 -0
- data/Configs/python/.pythonrc +25 -0
- data/Configs/starship/.config/starship/starship.toml +134 -0
- data/Configs/starship/.config/starship/themes/frappe.toml +27 -0
- data/Configs/starship/.config/starship/themes/latte.toml +27 -0
- data/Configs/starship/.config/starship/themes/macchiato.toml +27 -0
- data/Configs/starship/.config/starship/themes/mocha.toml +27 -0
- data/Configs/tmux/.tmux.conf +21 -0
- data/Configs/wezterm/.config/wezterm/core/colors.lua +10 -0
- data/Configs/wezterm/.config/wezterm/core/font.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/helper.lua +22 -0
- data/Configs/wezterm/.config/wezterm/core/init.lua +20 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/init.lua +16 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/macos.lua +106 -0
- data/Configs/wezterm/.config/wezterm/core/keybindings/windows.lua +99 -0
- data/Configs/wezterm/.config/wezterm/core/launch.lua +41 -0
- data/Configs/wezterm/.config/wezterm/core/maximized.lua +5 -0
- data/Configs/wezterm/.config/wezterm/core/mousebindings.lua +23 -0
- data/Configs/wezterm/.config/wezterm/core/tab_title.lua +26 -0
- data/Configs/wezterm/.config/wezterm/core/window.lua +8 -0
- data/Configs/wezterm/.config/wezterm/wezterm.lua +83 -0
- data/Configs/zellij/.config/zellij/config.kdl +410 -0
- data/Configs/zellij/.config/zellij/layouts/default.kdl +159 -0
- data/Configs/zellij/.config/zellij/plugins/room.wasm +0 -0
- data/Configs/zellij/.config/zellij/plugins/zjstatus.wasm +0 -0
- data/Configs/zsh/.hushlogin +0 -0
- data/Configs/zsh/.localrc +42 -0
- data/Configs/zsh/.profile +3 -0
- data/Configs/zsh/.shellcheckrc +1 -0
- data/Configs/zsh/.zprofile +3 -0
- data/Configs/zsh/.zsh/autoload/backup_restore +84 -0
- data/Configs/zsh/.zsh/autoload/cat +8 -0
- data/Configs/zsh/.zsh/autoload/change_wallpaper +1 -0
- data/Configs/zsh/.zsh/autoload/clean_dstore +6 -0
- data/Configs/zsh/.zsh/autoload/clean_pycache +6 -0
- data/Configs/zsh/.zsh/autoload/convert_mkv_to_mp4 +14 -0
- data/Configs/zsh/.zsh/autoload/create_macos_installer +26 -0
- data/Configs/zsh/.zsh/autoload/download +71 -0
- data/Configs/zsh/.zsh/autoload/fail +2 -0
- data/Configs/zsh/.zsh/autoload/flush_dns +6 -0
- data/Configs/zsh/.zsh/autoload/info +1 -0
- data/Configs/zsh/.zsh/autoload/ls +8 -0
- data/Configs/zsh/.zsh/autoload/reset_beyond_compare +15 -0
- data/Configs/zsh/.zsh/autoload/reset_final_cut_pro +5 -0
- data/Configs/zsh/.zsh/autoload/reset_launch_pad +3 -0
- data/Configs/zsh/.zsh/autoload/reset_open_list +3 -0
- data/Configs/zsh/.zsh/autoload/speedup_terminal +6 -0
- data/Configs/zsh/.zsh/autoload/start_aria2_server +1 -0
- data/Configs/zsh/.zsh/autoload/success +1 -0
- data/Configs/zsh/.zsh/autoload/update_system +19 -0
- data/Configs/zsh/.zsh/autoload/user +1 -0
- data/Configs/zsh/.zsh/autoload/vim +9 -0
- data/Configs/zsh/.zsh/autoload/warn +1 -0
- data/Configs/zsh/.zsh/completion/aliases.zsh +3 -0
- data/Configs/zsh/.zsh/completion/completion.zsh +33 -0
- data/Configs/zsh/.zsh/completion/config.zsh +118 -0
- data/Configs/zsh/.zsh/completion/exports.zsh +108 -0
- data/Configs/zsh/.zsh/completion/fpath.zsh +8 -0
- data/Configs/zsh/.zsh_history +283 -0
- data/Configs/zsh/.zshenv +2 -0
- data/Configs/zsh/.zshrc +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +87 -0
- data/Hooks/adguard/pre.rb +7 -0
- data/Hooks/aerospace/pre.rb +8 -0
- data/Hooks/aide/post.rb +7 -0
- data/Hooks/aide/pre.rb +7 -0
- data/Hooks/alacritty/pre.rb +7 -0
- data/Hooks/alfred/pre.rb +7 -0
- data/Hooks/atuin/post.rb +27 -0
- data/Hooks/atuin/pre.rb +7 -0
- data/Hooks/bartender/pre.rb +7 -0
- data/Hooks/bun/pre.rb +7 -0
- data/Hooks/carapace/pre.rb +7 -0
- data/Hooks/cargo/pre.rb +7 -0
- data/Hooks/choosy/pre.rb +7 -0
- data/Hooks/controld/pre.rb +7 -0
- data/Hooks/core/common.rb +36 -0
- data/Hooks/core/final.rb +23 -0
- data/Hooks/core/lib/configurator.rb +593 -0
- data/Hooks/core/lib/display.rb +120 -0
- data/Hooks/core/lib/hook_config.rb +96 -0
- data/Hooks/core/lib/hook_context.rb +124 -0
- data/Hooks/core/lib/hooks.rb +45 -0
- data/Hooks/core/lib/logger.rb +23 -0
- data/Hooks/core/lib/menu.rb +70 -0
- data/Hooks/core/lib/spinner.rb +50 -0
- data/Hooks/core/lib/system.rb +78 -0
- data/Hooks/core/lib/tweaks.rb +59 -0
- data/Hooks/core/library.rb +3 -0
- data/Hooks/core/pre.rb +17 -0
- data/Hooks/ctrld/pre.rb +7 -0
- data/Hooks/deskpad/pre.rb +7 -0
- data/Hooks/fonts/pre.rb +60 -0
- data/Hooks/ghostty/pre.rb +10 -0
- data/Hooks/git/post.rb +20 -0
- data/Hooks/git/pre.rb +7 -0
- data/Hooks/gpg/post.rb +16 -0
- data/Hooks/gpg/pre.rb +7 -0
- data/Hooks/ice-hidemenubar/pre.rb +7 -0
- data/Hooks/iterm/IC Green PPL.itermcolors +344 -0
- data/Hooks/iterm/chalkboard.webp +0 -0
- data/Hooks/iterm/com.googlecode.iterm2.plist +2371 -0
- data/Hooks/iterm/post.rb +7 -0
- data/Hooks/iterm/pre.rb +7 -0
- data/Hooks/jujutsu/post.rb +13 -0
- data/Hooks/jujutsu/pre.rb +7 -0
- data/Hooks/keka/pre.rb +7 -0
- data/Hooks/kitty/pre.rb +7 -0
- data/Hooks/lazyvim/pre.rb +7 -0
- data/Hooks/lima/pre.rb +7 -0
- data/Hooks/little-snitch/pre.rb +7 -0
- data/Hooks/microsoft-edge/pre.rb +7 -0
- data/Hooks/mos/pre.rb +7 -0
- data/Hooks/nvchad/pre.rb +7 -0
- data/Hooks/oh-my-posh/config.json +58 -0
- data/Hooks/oh-my-posh/post.rb +7 -0
- data/Hooks/oh-my-posh/pre.rb +7 -0
- data/Hooks/pearcleaner/pre.rb +7 -0
- data/Hooks/pycharm/pre.rb +7 -0
- data/Hooks/raindropio/pre.rb +7 -0
- data/Hooks/rectangle/RectangleConfig.json +258 -0
- data/Hooks/rectangle/com.knollsoft.Rectangle.plist +0 -0
- data/Hooks/rectangle/post.rb +22 -0
- data/Hooks/rectangle/pre.rb +7 -0
- data/Hooks/slack/pre.rb +7 -0
- data/Hooks/soundsource/pre.rb +7 -0
- data/Hooks/ssh/post.rb +8 -0
- data/Hooks/starship/pre.rb +7 -0
- data/Hooks/sublime_text/post.rb +25 -0
- data/Hooks/sublime_text/pre.rb +7 -0
- data/Hooks/swiftformat-for-xcode/pre.rb +7 -0
- data/Hooks/syncthing/pre.rb +7 -0
- data/Hooks/synology/pre.rb +7 -0
- data/Hooks/tailscale/pre.rb +7 -0
- data/Hooks/tmux/post.rb +7 -0
- data/Hooks/tmux/pre.rb +7 -0
- data/Hooks/topnotch/pre.rb +7 -0
- data/Hooks/transmission/pre.rb +7 -0
- data/Hooks/vscode/extensions.txt +16 -0
- data/Hooks/vscode/keybindings.json +26 -0
- data/Hooks/vscode/post.rb +29 -0
- data/Hooks/vscode/pre.rb +9 -0
- data/Hooks/vscode/settings.json +139 -0
- data/Hooks/vscode/style.css +29 -0
- data/Hooks/wezterm/pre.rb +7 -0
- data/Hooks/wins/pre.rb +7 -0
- data/Hooks/zed/pre.rb +7 -0
- data/Hooks/zellij/post.rb +7 -0
- data/Hooks/zellij/pre.rb +7 -0
- data/Hooks/zoxide/pre.rb +7 -0
- data/Hooks/zsh/pre.rb +19 -0
- data/LICENSE +21 -0
- data/README.md +100 -0
- data/bin/dotfiles-tui +6 -0
- data/bootstrap.rb +186 -0
- data/dotfiles-tui.gemspec +47 -0
- data/lib/dotfiles_tui/version.rb +5 -0
- data/lib/dotfiles_tui.rb +15 -0
- metadata +275 -0
data/Hooks/fonts/pre.rb
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rbconfig'
|
|
4
|
+
require 'tmpdir'
|
|
5
|
+
require 'fileutils'
|
|
6
|
+
require_relative '../core/common'
|
|
7
|
+
|
|
8
|
+
def install_fonts_with_curl(hook, destination)
|
|
9
|
+
Dir.mktmpdir do |tmp_dir|
|
|
10
|
+
script = <<~SH
|
|
11
|
+
set -e
|
|
12
|
+
FONT_DIR="#{destination}"
|
|
13
|
+
TMP_DIR="#{tmp_dir}"
|
|
14
|
+
mkdir -p "$FONT_DIR"
|
|
15
|
+
cd "$TMP_DIR"
|
|
16
|
+
|
|
17
|
+
curl -s 'https://api.github.com/repos/be5invis/Iosevka/releases/latest' \\
|
|
18
|
+
| jq -r ".assets[] | .browser_download_url" \\
|
|
19
|
+
| grep PkgTTC-Iosevka \\
|
|
20
|
+
| xargs -n 1 curl -L -O --fail --silent --show-error
|
|
21
|
+
|
|
22
|
+
find . -name "*.zip" -exec unzip -o "{}" -d "{}_unzipped" \\;
|
|
23
|
+
find . -type f \\( -iname "*.ttf" -o -iname "*.otf" -o -iname "*.ttc" \\) -exec cp "{}" "$FONT_DIR" \\;
|
|
24
|
+
|
|
25
|
+
curl -Lso "$TMP_DIR/mono.zip" https://github.com/JetBrains/JetBrainsMono/releases/download/v2.242/JetBrainsMono-2.242.zip
|
|
26
|
+
unzip -q -j -o "$TMP_DIR/mono.zip" '*/ttf/*' -d "$FONT_DIR"
|
|
27
|
+
|
|
28
|
+
curl -Lso "$TMP_DIR/hack.zip" https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip
|
|
29
|
+
unzip -q -j -o "$TMP_DIR/hack.zip" -d "$FONT_DIR"
|
|
30
|
+
|
|
31
|
+
curl -Lso "$TMP_DIR/FiraCode.zip" https://github.com/tonsky/FiraCode/releases/download/5.2/Fira_Code_v5.2.zip
|
|
32
|
+
unzip -q -j -o "$TMP_DIR/FiraCode.zip" -d "$FONT_DIR"
|
|
33
|
+
SH
|
|
34
|
+
|
|
35
|
+
hook.run(script, allow_failure: true)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
Bootstrap::Hooks.run('fonts', stage: :pre) do |hook|
|
|
40
|
+
if RbConfig::CONFIG['host_os'] =~ /darwin/i
|
|
41
|
+
brew = nil
|
|
42
|
+
if hook.configurator&.respond_to?(:send)
|
|
43
|
+
brew = hook.configurator.send(:brew_path) rescue nil
|
|
44
|
+
end
|
|
45
|
+
brew = `command -v brew`.strip if brew.nil? || brew.empty?
|
|
46
|
+
|
|
47
|
+
if brew && !brew.empty?
|
|
48
|
+
hook.run("#{brew} install --cask font-iosevka-nerd-font font-maple-mono-nf font-caskaydia-cove-nerd-font font-jetbrains-mono-nerd-font font-hack font-fira-code-nerd-font", allow_failure: true)
|
|
49
|
+
else
|
|
50
|
+
destination = File.join(Dir.home, 'Library', 'Fonts')
|
|
51
|
+
install_fonts_with_curl(hook, destination)
|
|
52
|
+
end
|
|
53
|
+
else
|
|
54
|
+
destination = File.join(Dir.home, '.local', 'share', 'fonts')
|
|
55
|
+
hook.remove_path(destination)
|
|
56
|
+
hook.ensure_directory(destination)
|
|
57
|
+
install_fonts_with_curl(hook, destination)
|
|
58
|
+
hook.run('fc-cache -fv', allow_failure: true)
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative '../core/common'
|
|
4
|
+
|
|
5
|
+
Bootstrap::Hooks.run('ghostty', stage: :pre) do |hook|
|
|
6
|
+
config_path = hook.home_path('.config', 'ghostty')
|
|
7
|
+
hook.remove_path(config_path)
|
|
8
|
+
hook.run('/opt/homebrew/bin/brew install --quiet --cask ghostty')
|
|
9
|
+
end
|
|
10
|
+
|
data/Hooks/git/post.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rbconfig'
|
|
4
|
+
require_relative '../core/common'
|
|
5
|
+
|
|
6
|
+
Bootstrap::Hooks.run('git', stage: :post) do |hook|
|
|
7
|
+
config_file = File.join(hook.configs_root, 'git', '.gitconfig')
|
|
8
|
+
|
|
9
|
+
helper = RbConfig::CONFIG['host_os'] =~ /darwin/i ? 'osxkeychain' : 'cache'
|
|
10
|
+
hook.run("git config -f #{config_file} credential.helper #{helper}", allow_failure: true)
|
|
11
|
+
|
|
12
|
+
if system('command -v diff-so-fancy >/dev/null 2>&1')
|
|
13
|
+
hook.run("git config -f #{config_file} core.pager \"diff-so-fancy | less --tabs=4 -RFX\"", allow_failure: true)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
if system('command -v code >/dev/null 2>&1')
|
|
17
|
+
hook.run("git config -f #{config_file} merge.tool vscode", allow_failure: true)
|
|
18
|
+
hook.run("git config -f #{config_file} mergetool.vscode.cmd \"code --wait $MERGED\"", allow_failure: true)
|
|
19
|
+
end
|
|
20
|
+
end
|
data/Hooks/git/pre.rb
ADDED
data/Hooks/gpg/post.rb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative '../core/common'
|
|
4
|
+
|
|
5
|
+
Bootstrap::Hooks.run('gpg', stage: :post) do |hook|
|
|
6
|
+
if system('command -v gpgconf >/dev/null 2>&1')
|
|
7
|
+
hook.run('sudo gpgconf --kill dirmngr', allow_failure: true)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
if File.directory?(hook.home_path('.gnupg'))
|
|
11
|
+
hook.run("sudo chown -R #{ENV['USER']} ~/.gnupg", allow_failure: true)
|
|
12
|
+
hook.run('chmod 700 ~/.gnupg', allow_failure: true)
|
|
13
|
+
hook.run("find ~/.gnupg/ -type f -exec chmod 644 '{}' +", allow_failure: true)
|
|
14
|
+
hook.run("find ~/.gnupg/ -type d -exec chmod 700 '{}' +", allow_failure: true)
|
|
15
|
+
end
|
|
16
|
+
end
|
data/Hooks/gpg/pre.rb
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>Ansi 0 Color</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Alpha Component</key>
|
|
8
|
+
<real>1</real>
|
|
9
|
+
<key>Blue Component</key>
|
|
10
|
+
<real>0.0054043135605752468</real>
|
|
11
|
+
<key>Color Space</key>
|
|
12
|
+
<string>sRGB</string>
|
|
13
|
+
<key>Green Component</key>
|
|
14
|
+
<real>0.267303466796875</real>
|
|
15
|
+
<key>Red Component</key>
|
|
16
|
+
<real>0.0054043135605752468</real>
|
|
17
|
+
</dict>
|
|
18
|
+
<key>Ansi 1 Color</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>Alpha Component</key>
|
|
21
|
+
<real>1</real>
|
|
22
|
+
<key>Blue Component</key>
|
|
23
|
+
<real>0.21167260408401489</real>
|
|
24
|
+
<key>Color Space</key>
|
|
25
|
+
<string>sRGB</string>
|
|
26
|
+
<key>Green Component</key>
|
|
27
|
+
<real>0.15244054794311523</real>
|
|
28
|
+
<key>Red Component</key>
|
|
29
|
+
<real>0.99975162744522095</real>
|
|
30
|
+
</dict>
|
|
31
|
+
<key>Ansi 10 Color</key>
|
|
32
|
+
<dict>
|
|
33
|
+
<key>Alpha Component</key>
|
|
34
|
+
<real>1</real>
|
|
35
|
+
<key>Blue Component</key>
|
|
36
|
+
<real>0.52549022436141968</real>
|
|
37
|
+
<key>Color Space</key>
|
|
38
|
+
<string>sRGB</string>
|
|
39
|
+
<key>Green Component</key>
|
|
40
|
+
<real>0.98376089334487915</real>
|
|
41
|
+
<key>Red Component</key>
|
|
42
|
+
<real>0.68235296010971069</real>
|
|
43
|
+
</dict>
|
|
44
|
+
<key>Ansi 11 Color</key>
|
|
45
|
+
<dict>
|
|
46
|
+
<key>Alpha Component</key>
|
|
47
|
+
<real>1</real>
|
|
48
|
+
<key>Blue Component</key>
|
|
49
|
+
<real>0.52941179275512695</real>
|
|
50
|
+
<key>Color Space</key>
|
|
51
|
+
<string>sRGB</string>
|
|
52
|
+
<key>Green Component</key>
|
|
53
|
+
<real>0.98039215803146362</real>
|
|
54
|
+
<key>Red Component</key>
|
|
55
|
+
<real>0.85490196943283081</real>
|
|
56
|
+
</dict>
|
|
57
|
+
<key>Ansi 12 Color</key>
|
|
58
|
+
<dict>
|
|
59
|
+
<key>Alpha Component</key>
|
|
60
|
+
<real>1</real>
|
|
61
|
+
<key>Blue Component</key>
|
|
62
|
+
<real>0.92156863212585449</real>
|
|
63
|
+
<key>Color Space</key>
|
|
64
|
+
<string>sRGB</string>
|
|
65
|
+
<key>Green Component</key>
|
|
66
|
+
<real>0.98039215803146362</real>
|
|
67
|
+
<key>Red Component</key>
|
|
68
|
+
<real>0.18039216101169586</real>
|
|
69
|
+
</dict>
|
|
70
|
+
<key>Ansi 13 Color</key>
|
|
71
|
+
<dict>
|
|
72
|
+
<key>Alpha Component</key>
|
|
73
|
+
<real>1</real>
|
|
74
|
+
<key>Blue Component</key>
|
|
75
|
+
<real>0.98039215803146362</real>
|
|
76
|
+
<key>Color Space</key>
|
|
77
|
+
<string>sRGB</string>
|
|
78
|
+
<key>Green Component</key>
|
|
79
|
+
<real>0.98039215803146362</real>
|
|
80
|
+
<key>Red Component</key>
|
|
81
|
+
<real>0.31372550129890442</real>
|
|
82
|
+
</dict>
|
|
83
|
+
<key>Ansi 14 Color</key>
|
|
84
|
+
<dict>
|
|
85
|
+
<key>Alpha Component</key>
|
|
86
|
+
<real>1</real>
|
|
87
|
+
<key>Blue Component</key>
|
|
88
|
+
<real>0.78431373834609985</real>
|
|
89
|
+
<key>Color Space</key>
|
|
90
|
+
<string>sRGB</string>
|
|
91
|
+
<key>Green Component</key>
|
|
92
|
+
<real>0.98039215803146362</real>
|
|
93
|
+
<key>Red Component</key>
|
|
94
|
+
<real>0.23529411852359772</real>
|
|
95
|
+
</dict>
|
|
96
|
+
<key>Ansi 15 Color</key>
|
|
97
|
+
<dict>
|
|
98
|
+
<key>Alpha Component</key>
|
|
99
|
+
<real>1</real>
|
|
100
|
+
<key>Blue Component</key>
|
|
101
|
+
<real>0.86274510622024536</real>
|
|
102
|
+
<key>Color Space</key>
|
|
103
|
+
<string>sRGB</string>
|
|
104
|
+
<key>Green Component</key>
|
|
105
|
+
<real>0.94509810209274292</real>
|
|
106
|
+
<key>Red Component</key>
|
|
107
|
+
<real>0.87843137979507446</real>
|
|
108
|
+
</dict>
|
|
109
|
+
<key>Ansi 2 Color</key>
|
|
110
|
+
<dict>
|
|
111
|
+
<key>Alpha Component</key>
|
|
112
|
+
<real>1</real>
|
|
113
|
+
<key>Blue Component</key>
|
|
114
|
+
<real>0.21960784494876862</real>
|
|
115
|
+
<key>Color Space</key>
|
|
116
|
+
<string>sRGB</string>
|
|
117
|
+
<key>Green Component</key>
|
|
118
|
+
<real>0.65098041296005249</real>
|
|
119
|
+
<key>Red Component</key>
|
|
120
|
+
<real>0.25490197539329529</real>
|
|
121
|
+
</dict>
|
|
122
|
+
<key>Ansi 3 Color</key>
|
|
123
|
+
<dict>
|
|
124
|
+
<key>Alpha Component</key>
|
|
125
|
+
<real>1</real>
|
|
126
|
+
<key>Blue Component</key>
|
|
127
|
+
<real>0.19215682148933411</real>
|
|
128
|
+
<key>Color Space</key>
|
|
129
|
+
<string>sRGB</string>
|
|
130
|
+
<key>Green Component</key>
|
|
131
|
+
<real>0.65882354974746704</real>
|
|
132
|
+
<key>Red Component</key>
|
|
133
|
+
<real>0.46274513006210327</real>
|
|
134
|
+
</dict>
|
|
135
|
+
<key>Ansi 4 Color</key>
|
|
136
|
+
<dict>
|
|
137
|
+
<key>Alpha Component</key>
|
|
138
|
+
<real>1</real>
|
|
139
|
+
<key>Blue Component</key>
|
|
140
|
+
<real>0.72549021244049072</real>
|
|
141
|
+
<key>Color Space</key>
|
|
142
|
+
<string>sRGB</string>
|
|
143
|
+
<key>Green Component</key>
|
|
144
|
+
<real>0.76470589637756348</real>
|
|
145
|
+
<key>Red Component</key>
|
|
146
|
+
<real>0.18039216101169586</real>
|
|
147
|
+
</dict>
|
|
148
|
+
<key>Ansi 5 Color</key>
|
|
149
|
+
<dict>
|
|
150
|
+
<key>Alpha Component</key>
|
|
151
|
+
<real>1</real>
|
|
152
|
+
<key>Blue Component</key>
|
|
153
|
+
<real>0.58823531866073608</real>
|
|
154
|
+
<key>Color Space</key>
|
|
155
|
+
<string>sRGB</string>
|
|
156
|
+
<key>Green Component</key>
|
|
157
|
+
<real>0.62745100259780884</real>
|
|
158
|
+
<key>Red Component</key>
|
|
159
|
+
<real>0.31372550129890442</real>
|
|
160
|
+
</dict>
|
|
161
|
+
<key>Ansi 6 Color</key>
|
|
162
|
+
<dict>
|
|
163
|
+
<key>Alpha Component</key>
|
|
164
|
+
<real>1</real>
|
|
165
|
+
<key>Blue Component</key>
|
|
166
|
+
<real>0.47058823704719543</real>
|
|
167
|
+
<key>Color Space</key>
|
|
168
|
+
<string>sRGB</string>
|
|
169
|
+
<key>Green Component</key>
|
|
170
|
+
<real>0.62745100259780884</real>
|
|
171
|
+
<key>Red Component</key>
|
|
172
|
+
<real>0.23529411852359772</real>
|
|
173
|
+
</dict>
|
|
174
|
+
<key>Ansi 7 Color</key>
|
|
175
|
+
<dict>
|
|
176
|
+
<key>Alpha Component</key>
|
|
177
|
+
<real>1</real>
|
|
178
|
+
<key>Blue Component</key>
|
|
179
|
+
<real>0.94901961088180542</real>
|
|
180
|
+
<key>Color Space</key>
|
|
181
|
+
<string>sRGB</string>
|
|
182
|
+
<key>Green Component</key>
|
|
183
|
+
<real>0.99607843160629272</real>
|
|
184
|
+
<key>Red Component</key>
|
|
185
|
+
<real>0.90196079015731812</real>
|
|
186
|
+
</dict>
|
|
187
|
+
<key>Ansi 8 Color</key>
|
|
188
|
+
<dict>
|
|
189
|
+
<key>Alpha Component</key>
|
|
190
|
+
<real>1</real>
|
|
191
|
+
<key>Blue Component</key>
|
|
192
|
+
<real>0.011057402938604355</real>
|
|
193
|
+
<key>Color Space</key>
|
|
194
|
+
<string>sRGB</string>
|
|
195
|
+
<key>Green Component</key>
|
|
196
|
+
<real>0.36078432202339172</real>
|
|
197
|
+
<key>Red Component</key>
|
|
198
|
+
<real>0.011057402938604355</real>
|
|
199
|
+
</dict>
|
|
200
|
+
<key>Ansi 9 Color</key>
|
|
201
|
+
<dict>
|
|
202
|
+
<key>Alpha Component</key>
|
|
203
|
+
<real>1</real>
|
|
204
|
+
<key>Blue Component</key>
|
|
205
|
+
<real>0.36078432202339172</real>
|
|
206
|
+
<key>Color Space</key>
|
|
207
|
+
<string>sRGB</string>
|
|
208
|
+
<key>Green Component</key>
|
|
209
|
+
<real>0.98039215803146362</real>
|
|
210
|
+
<key>Red Component</key>
|
|
211
|
+
<real>0.70588237047195435</real>
|
|
212
|
+
</dict>
|
|
213
|
+
<key>Background Color</key>
|
|
214
|
+
<dict>
|
|
215
|
+
<key>Alpha Component</key>
|
|
216
|
+
<real>1</real>
|
|
217
|
+
<key>Blue Component</key>
|
|
218
|
+
<real>0.173583984375</real>
|
|
219
|
+
<key>Color Space</key>
|
|
220
|
+
<string>sRGB</string>
|
|
221
|
+
<key>Green Component</key>
|
|
222
|
+
<real>0.173583984375</real>
|
|
223
|
+
<key>Red Component</key>
|
|
224
|
+
<real>0.173583984375</real>
|
|
225
|
+
</dict>
|
|
226
|
+
<key>Badge Color</key>
|
|
227
|
+
<dict>
|
|
228
|
+
<key>Alpha Component</key>
|
|
229
|
+
<real>0.5</real>
|
|
230
|
+
<key>Blue Component</key>
|
|
231
|
+
<real>0.0</real>
|
|
232
|
+
<key>Color Space</key>
|
|
233
|
+
<string>sRGB</string>
|
|
234
|
+
<key>Green Component</key>
|
|
235
|
+
<real>0.1491314172744751</real>
|
|
236
|
+
<key>Red Component</key>
|
|
237
|
+
<real>1</real>
|
|
238
|
+
</dict>
|
|
239
|
+
<key>Bold Color</key>
|
|
240
|
+
<dict>
|
|
241
|
+
<key>Alpha Component</key>
|
|
242
|
+
<real>1</real>
|
|
243
|
+
<key>Blue Component</key>
|
|
244
|
+
<real>0.50202029943466187</real>
|
|
245
|
+
<key>Color Space</key>
|
|
246
|
+
<string>sRGB</string>
|
|
247
|
+
<key>Green Component</key>
|
|
248
|
+
<real>0.98376089334487915</real>
|
|
249
|
+
<key>Red Component</key>
|
|
250
|
+
<real>0.67526376247406006</real>
|
|
251
|
+
</dict>
|
|
252
|
+
<key>Cursor Color</key>
|
|
253
|
+
<dict>
|
|
254
|
+
<key>Alpha Component</key>
|
|
255
|
+
<real>1</real>
|
|
256
|
+
<key>Blue Component</key>
|
|
257
|
+
<real>0.41970038414001465</real>
|
|
258
|
+
<key>Color Space</key>
|
|
259
|
+
<string>sRGB</string>
|
|
260
|
+
<key>Green Component</key>
|
|
261
|
+
<real>0.97975236177444458</real>
|
|
262
|
+
<key>Red Component</key>
|
|
263
|
+
<real>0.27734693884849548</real>
|
|
264
|
+
</dict>
|
|
265
|
+
<key>Cursor Guide Color</key>
|
|
266
|
+
<dict>
|
|
267
|
+
<key>Alpha Component</key>
|
|
268
|
+
<real>0.25</real>
|
|
269
|
+
<key>Blue Component</key>
|
|
270
|
+
<real>1</real>
|
|
271
|
+
<key>Color Space</key>
|
|
272
|
+
<string>sRGB</string>
|
|
273
|
+
<key>Green Component</key>
|
|
274
|
+
<real>0.9268307089805603</real>
|
|
275
|
+
<key>Red Component</key>
|
|
276
|
+
<real>0.70213186740875244</real>
|
|
277
|
+
</dict>
|
|
278
|
+
<key>Cursor Text Color</key>
|
|
279
|
+
<dict>
|
|
280
|
+
<key>Alpha Component</key>
|
|
281
|
+
<real>1</real>
|
|
282
|
+
<key>Blue Component</key>
|
|
283
|
+
<real>0.16078430414199829</real>
|
|
284
|
+
<key>Color Space</key>
|
|
285
|
+
<string>sRGB</string>
|
|
286
|
+
<key>Green Component</key>
|
|
287
|
+
<real>0.16078430414199829</real>
|
|
288
|
+
<key>Red Component</key>
|
|
289
|
+
<real>0.16078430414199829</real>
|
|
290
|
+
</dict>
|
|
291
|
+
<key>Foreground Color</key>
|
|
292
|
+
<dict>
|
|
293
|
+
<key>Alpha Component</key>
|
|
294
|
+
<real>1</real>
|
|
295
|
+
<key>Blue Component</key>
|
|
296
|
+
<real>0.86274510622024536</real>
|
|
297
|
+
<key>Color Space</key>
|
|
298
|
+
<string>sRGB</string>
|
|
299
|
+
<key>Green Component</key>
|
|
300
|
+
<real>0.94509810209274292</real>
|
|
301
|
+
<key>Red Component</key>
|
|
302
|
+
<real>0.87843149900436401</real>
|
|
303
|
+
</dict>
|
|
304
|
+
<key>Link Color</key>
|
|
305
|
+
<dict>
|
|
306
|
+
<key>Alpha Component</key>
|
|
307
|
+
<real>1</real>
|
|
308
|
+
<key>Blue Component</key>
|
|
309
|
+
<real>0.73423302173614502</real>
|
|
310
|
+
<key>Color Space</key>
|
|
311
|
+
<string>sRGB</string>
|
|
312
|
+
<key>Green Component</key>
|
|
313
|
+
<real>0.35916060209274292</real>
|
|
314
|
+
<key>Red Component</key>
|
|
315
|
+
<real>0.0</real>
|
|
316
|
+
</dict>
|
|
317
|
+
<key>Selected Text Color</key>
|
|
318
|
+
<dict>
|
|
319
|
+
<key>Alpha Component</key>
|
|
320
|
+
<real>1</real>
|
|
321
|
+
<key>Blue Component</key>
|
|
322
|
+
<real>0.86274510622024536</real>
|
|
323
|
+
<key>Color Space</key>
|
|
324
|
+
<string>sRGB</string>
|
|
325
|
+
<key>Green Component</key>
|
|
326
|
+
<real>0.94509810209274292</real>
|
|
327
|
+
<key>Red Component</key>
|
|
328
|
+
<real>0.87843137979507446</real>
|
|
329
|
+
</dict>
|
|
330
|
+
<key>Selection Color</key>
|
|
331
|
+
<dict>
|
|
332
|
+
<key>Alpha Component</key>
|
|
333
|
+
<real>1</real>
|
|
334
|
+
<key>Blue Component</key>
|
|
335
|
+
<real>0.25490197539329529</real>
|
|
336
|
+
<key>Color Space</key>
|
|
337
|
+
<string>sRGB</string>
|
|
338
|
+
<key>Green Component</key>
|
|
339
|
+
<real>0.41960784792900085</real>
|
|
340
|
+
<key>Red Component</key>
|
|
341
|
+
<real>0.066666670143604279</real>
|
|
342
|
+
</dict>
|
|
343
|
+
</dict>
|
|
344
|
+
</plist>
|
|
Binary file
|