wio

a wayland wm stylised after plan9 rio - forked from git.sr.ht/~srcmpwn/wio
git clone git://src.gearsix.net/wio
Log | Files | Refs | Atom | Submodules | README | LICENSE

alacritty.yml (8871B)


      1 env:
      2   TERM: xterm-256color
      3 window:
      4   dimensions:
      5     columns: 80
      6     lines: 24
      7   padding:
      8     x: 2
      9     y: 2
     10   decorations: none
     11 scrolling:
     12   history: 10000
     13   multiplier: 3
     14   faux_multiplier: 3
     15   auto_scroll: false
     16 tabspaces: 8
     17 draw_bold_text_with_bright_colors: true
     18 font:
     19   normal:
     20     family: DejaVu Sans Mono
     21   bold:
     22     family: monospace
     23   italic:
     24     family: monospace
     25   size: 12.0
     26   offset:
     27     x: 0
     28     y: 0
     29   glyph_offset:
     30     x: 0
     31     y: 0
     32 colors:
     33   primary:
     34     background: '0xfdffea'
     35     foreground: '0x020400'
     36   cursor:
     37     text: '0x000000'
     38     cursor: '0x424440'
     39   normal:
     40     black:   '0x0b141a'
     41     red:     '0xff4053'
     42     green:   '0x11ab00'
     43     yellow:  '0xbf8c00'
     44     blue:    '0x0099ff'
     45     magenta: '0x9854ff'
     46     cyan:    '0x00a5ab'
     47     white:   '0xffffff'
     48   bright:
     49     black:   '0x0b141a'
     50     red:     '0xff4053'
     51     green:   '0x11ab00'
     52     yellow:  '0xbf8c00'
     53     blue:    '0x0099ff'
     54     magenta: '0x9854ff'
     55     cyan:    '0x00a5ab'
     56     white:   '0xffffff'
     57 
     58 key_bindings:
     59   - { key: V,        mods: Control|Shift,    action: Paste               }
     60   - { key: C,        mods: Control|Shift,    action: Copy                }
     61   - { key: Paste,                   action: Paste                        }
     62   - { key: Copy,                    action: Copy                         }
     63   - { key: Q,        mods: Command, action: Quit                         }
     64   - { key: W,        mods: Command, action: Quit                         }
     65   - { key: Insert,   mods: Shift,   action: PasteSelection               }
     66   - { key: Key0,     mods: Control, action: ResetFontSize                }
     67   - { key: Equals,   mods: Control, action: IncreaseFontSize             }
     68   - { key: Subtract, mods: Control, action: DecreaseFontSize             }
     69   - { key: Home,                    chars: "\x1bOH",   mode: AppCursor   }
     70   - { key: Home,                    chars: "\x1b[H",   mode: ~AppCursor  }
     71   - { key: End,                     chars: "\x1bOF",   mode: AppCursor   }
     72   - { key: End,                     chars: "\x1b[F",   mode: ~AppCursor  }
     73   - { key: PageUp,   mods: Shift,   chars: "\x1b[5;2~"                   }
     74   - { key: PageUp,   mods: Control, chars: "\x1b[5;5~"                   }
     75   - { key: PageUp,                  chars: "\x1b[5~"                     }
     76   - { key: PageDown, mods: Shift,   chars: "\x1b[6;2~"                   }
     77   - { key: PageDown, mods: Control, chars: "\x1b[6;5~"                   }
     78   - { key: PageDown,                chars: "\x1b[6~"                     }
     79   - { key: Tab,      mods: Shift,   chars: "\x1b[Z"                      }
     80   - { key: Back,                    chars: "\x7f"                        }
     81   - { key: Back,     mods: Alt,     chars: "\x1b\x7f"                    }
     82   - { key: Insert,                  chars: "\x1b[2~"                     }
     83   - { key: Delete,                  chars: "\x1b[3~"                     }
     84   - { key: Left,     mods: Shift,   chars: "\x1b[1;2D"                   }
     85   - { key: Left,     mods: Control, chars: "\x1b[1;5D"                   }
     86   - { key: Left,     mods: Alt,     chars: "\x1b[1;3D"                   }
     87   - { key: Left,                    chars: "\x1b[D",   mode: ~AppCursor  }
     88   - { key: Left,                    chars: "\x1bOD",   mode: AppCursor   }
     89   - { key: Right,    mods: Shift,   chars: "\x1b[1;2C"                   }
     90   - { key: Right,    mods: Control, chars: "\x1b[1;5C"                   }
     91   - { key: Right,    mods: Alt,     chars: "\x1b[1;3C"                   }
     92   - { key: Right,                   chars: "\x1b[C",   mode: ~AppCursor  }
     93   - { key: Right,                   chars: "\x1bOC",   mode: AppCursor   }
     94   - { key: Up,       mods: Shift,   chars: "\x1b[1;2A"                   }
     95   - { key: Up,       mods: Control, chars: "\x1b[1;5A"                   }
     96   - { key: Up,       mods: Alt,     chars: "\x1b[1;3A"                   }
     97   - { key: Up,                      chars: "\x1b[A",   mode: ~AppCursor  }
     98   - { key: Up,                      chars: "\x1bOA",   mode: AppCursor   }
     99   - { key: Down,     mods: Shift,   chars: "\x1b[1;2B"                   }
    100   - { key: Down,     mods: Control, chars: "\x1b[1;5B"                   }
    101   - { key: Down,     mods: Alt,     chars: "\x1b[1;3B"                   }
    102   - { key: Down,                    chars: "\x1b[B",   mode: ~AppCursor  }
    103   - { key: Down,                    chars: "\x1bOB",   mode: AppCursor   }
    104   - { key: F1,                      chars: "\x1bOP"                      }
    105   - { key: F2,                      chars: "\x1bOQ"                      }
    106   - { key: F3,                      chars: "\x1bOR"                      }
    107   - { key: F4,                      chars: "\x1bOS"                      }
    108   - { key: F5,                      chars: "\x1b[15~"                    }
    109   - { key: F6,                      chars: "\x1b[17~"                    }
    110   - { key: F7,                      chars: "\x1b[18~"                    }
    111   - { key: F8,                      chars: "\x1b[19~"                    }
    112   - { key: F9,                      chars: "\x1b[20~"                    }
    113   - { key: F10,                     chars: "\x1b[21~"                    }
    114   - { key: F11,                     chars: "\x1b[23~"                    }
    115   - { key: F12,                     chars: "\x1b[24~"                    }
    116   - { key: F1,       mods: Shift,   chars: "\x1b[1;2P"                   }
    117   - { key: F2,       mods: Shift,   chars: "\x1b[1;2Q"                   }
    118   - { key: F3,       mods: Shift,   chars: "\x1b[1;2R"                   }
    119   - { key: F4,       mods: Shift,   chars: "\x1b[1;2S"                   }
    120   - { key: F5,       mods: Shift,   chars: "\x1b[15;2~"                  }
    121   - { key: F6,       mods: Shift,   chars: "\x1b[17;2~"                  }
    122   - { key: F7,       mods: Shift,   chars: "\x1b[18;2~"                  }
    123   - { key: F8,       mods: Shift,   chars: "\x1b[19;2~"                  }
    124   - { key: F9,       mods: Shift,   chars: "\x1b[20;2~"                  }
    125   - { key: F10,      mods: Shift,   chars: "\x1b[21;2~"                  }
    126   - { key: F11,      mods: Shift,   chars: "\x1b[23;2~"                  }
    127   - { key: F12,      mods: Shift,   chars: "\x1b[24;2~"                  }
    128   - { key: F1,       mods: Control, chars: "\x1b[1;5P"                   }
    129   - { key: F2,       mods: Control, chars: "\x1b[1;5Q"                   }
    130   - { key: F3,       mods: Control, chars: "\x1b[1;5R"                   }
    131   - { key: F4,       mods: Control, chars: "\x1b[1;5S"                   }
    132   - { key: F5,       mods: Control, chars: "\x1b[15;5~"                  }
    133   - { key: F6,       mods: Control, chars: "\x1b[17;5~"                  }
    134   - { key: F7,       mods: Control, chars: "\x1b[18;5~"                  }
    135   - { key: F8,       mods: Control, chars: "\x1b[19;5~"                  }
    136   - { key: F9,       mods: Control, chars: "\x1b[20;5~"                  }
    137   - { key: F10,      mods: Control, chars: "\x1b[21;5~"                  }
    138   - { key: F11,      mods: Control, chars: "\x1b[23;5~"                  }
    139   - { key: F12,      mods: Control, chars: "\x1b[24;5~"                  }
    140   - { key: F1,       mods: Alt,     chars: "\x1b[1;6P"                   }
    141   - { key: F2,       mods: Alt,     chars: "\x1b[1;6Q"                   }
    142   - { key: F3,       mods: Alt,     chars: "\x1b[1;6R"                   }
    143   - { key: F4,       mods: Alt,     chars: "\x1b[1;6S"                   }
    144   - { key: F5,       mods: Alt,     chars: "\x1b[15;6~"                  }
    145   - { key: F6,       mods: Alt,     chars: "\x1b[17;6~"                  }
    146   - { key: F7,       mods: Alt,     chars: "\x1b[18;6~"                  }
    147   - { key: F8,       mods: Alt,     chars: "\x1b[19;6~"                  }
    148   - { key: F9,       mods: Alt,     chars: "\x1b[20;6~"                  }
    149   - { key: F10,      mods: Alt,     chars: "\x1b[21;6~"                  }
    150   - { key: F11,      mods: Alt,     chars: "\x1b[23;6~"                  }
    151   - { key: F12,      mods: Alt,     chars: "\x1b[24;6~"                  }
    152   - { key: F1,       mods: Super,   chars: "\x1b[1;3P"                   }
    153   - { key: F2,       mods: Super,   chars: "\x1b[1;3Q"                   }
    154   - { key: F3,       mods: Super,   chars: "\x1b[1;3R"                   }
    155   - { key: F4,       mods: Super,   chars: "\x1b[1;3S"                   }
    156   - { key: F5,       mods: Super,   chars: "\x1b[15;3~"                  }
    157   - { key: F6,       mods: Super,   chars: "\x1b[17;3~"                  }
    158   - { key: F7,       mods: Super,   chars: "\x1b[18;3~"                  }
    159   - { key: F8,       mods: Super,   chars: "\x1b[19;3~"                  }
    160   - { key: F9,       mods: Super,   chars: "\x1b[20;3~"                  }
    161   - { key: F10,      mods: Super,   chars: "\x1b[21;3~"                  }
    162   - { key: F11,      mods: Super,   chars: "\x1b[23;3~"                  }
    163   - { key: F12,      mods: Super,   chars: "\x1b[24;3~"                  }