wallust

mrgrouse's configs for https://codeberg.org/explosion-mental/wallust
Log | Files | Refs | Submodules | README

havoc.cfg (1430B)


      1 [child]
      2 # program to run in child process
      3 program=mksh
      4 
      5 [window]
      6 # opacity of background from 0 (fully transparent) to 255 (fully opaque)
      7 opacity=230
      8 
      9 # render a margin to exactly match window size hints from the compositor
     10 margin=yes
     11 
     12 # request server side decorations if available by the compositor [yes|no|auto]
     13 decorations=no
     14 
     15 [terminal]
     16 # size of terminal
     17 rows=16
     18 columns=140
     19 
     20 # number of lines to keep in scrollback
     21 scrollback=1000
     22 
     23 # if scrolled up, jump back to the bottom when there is keyboard input
     24 scroll to bottom on input=yes
     25 
     26 [font]
     27 # height of a single glyph in pixels
     28 size=28
     29 
     30 # absolute path to a truetype font
     31 path=/usr/share/fonts/TTF/FiraMono-Bold.ttf
     32 
     33 [bind]
     34 # bind keys to actions
     35 C-S-c=copy
     36 C-S-v=paste
     37 C-S-r=reset
     38 C-S-Delete=hard reset
     39 C-S-j=scroll down
     40 C-S-k=scroll up
     41 C-S-Page_Down=scroll down page
     42 C-S-Page_Up=scroll up page
     43 C-S-End=scroll to bottom
     44 C-S-Home=scroll to top
     45 
     46 [colors]
     47 # Railcasts dark by Chris Kempson
     48 foreground = {{foreground}}
     49 background = {{background}}
     50 
     51 # black
     52 {color0  = {{color0}}
     53 {color8  = {{color8}}
     54 
     55 # red
     56 {color1  = {{color1}}
     57 {color9  = {{color9}}
     58 
     59 # green
     60 {color2  = {{color2}}
     61 {color10 = {{color10}}
     62 
     63 # yellow
     64 {color3  = {{color3}}
     65 {color11 = {{color11}}
     66 
     67 # blue
     68 {color4  = {{color4}}
     69 {color12 = {{color12}}
     70 
     71 # magenta
     72 {color5  = {{color5}}
     73 {color13 = {{color13}}
     74 
     75 # cyan
     76 {color6  = {{color6}}
     77 {color14 = {{color14}}
     78 
     79 # white
     80 {color7  = {{color7}}
     81 {color15 = {{color15}}