### Install X11 Color Schemes Source: https://github.com/mbadolato/iterm2-color-schemes/blob/master/README.md To install color schemes under the X Window System, import the .xrdb file of the desired scheme. This sets up the color definitions for terminals like Rxvt and XTerm. After importing, open new terminal windows to see the changes. ```shell #include "/home/mbadolato/iTerm2-Color-Schemes/xrdb/Blazer.xrdb" ``` ```shell Rxvt*color0: Ansi_0_Color Rxvt*color1: Ansi_1_Color Rxvt*color2: Ansi_2_Color Rxvt*color3: Ansi_3_Color Rxvt*color4: Ansi_4_Color Rxvt*color5: Ansi_5_Color Rxvt*color6: Ansi_6_Color Rxvt*color7: Ansi_7_Color Rxvt*color8: Ansi_8_Color Rxvt*color9: Ansi_9_Color Rxvt*color10: Ansi_10_Color Rxvt*color11: Ansi_11_Color Rxvt*color12: Ansi_12_Color Rxvt*color13: Ansi_13_Color Rxvt*color14: Ansi_14_Color Rxvt*color15: Ansi_15_Color Rxvt*colorBD: Bold_Color Rxvt*colorIT: Italic_Color Rxvt*colorUL: Underline_Color Rxvt*foreground: Foreground_Color Rxvt*background: Background_Color Rxvt*cursorColor: Cursor_Color XTerm*color0: Ansi_0_Color XTerm*color1: Ansi_1_Color XTerm*color2: Ansi_2_Color XTerm*color3: Ansi_3_Color XTerm*color4: Ansi_4_Color XTerm*color5: Ansi_5_Color XTerm*color6: Ansi_6_Color XTerm*color7: Ansi_7_Color XTerm*color8: Ansi_8_Color XTerm*color9: Ansi_9_Color XTerm*color10: Ansi_10_Color XTerm*color11: Ansi_11_Color XTerm*color12: Ansi_12_Color XTerm*color13: Ansi_13_Color XTerm*color14: Ansi_14_Color XTerm*color15: Ansi_15_Color XTerm*colorBD: Bold_Color XTerm*colorIT: Italic_Color XTerm*colorUL: Underline_Color XTerm*foreground: Foreground_Color XTerm*background: Background_Color XTerm*cursorColor: Cursor_Color ``` ```shell xrdb -merge YOUR_FILE_CONTAINING_ABOVE_SNIPPETS ``` -------------------------------- ### Debug Docker Container for iTerm2 Scheme Generation Source: https://github.com/mbadolato/iterm2-color-schemes/blob/master/README.md Starts an interactive terminal session inside the Docker container for debugging and testing new tools during the generation process. ```bash ./generate-all.sh debug ``` -------------------------------- ### Convert Kitty/Ghostty to YAML Source: https://github.com/mbadolato/iterm2-color-schemes/blob/master/README.md Use these Python scripts to convert Kitty or Ghostty configuration files to the YAML format used by this project. The tools stream configuration to stdin and output YAML to stdout. ```python python3 tools/kitty_to_yaml.py < config.kitty python3 tools/ghostty_to_yaml.py < config.ghostty ```