Advertisement
camar1

termite shell config

Nov 15th, 2019
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.79 KB | None | 0 0
  1. [options]
  2. #allow_bold = true
  3. #audible_bell = false
  4. #bold_is_bright = true
  5. #cell_height_scale = 1.0
  6. #cell_width_scale = 1.0
  7. #clickable_url = true
  8. #dynamic_title = true
  9. font = Monospace 9
  10. #fullscreen = true
  11. #icon_name = terminal
  12. #mouse_autohide = false
  13. #scroll_on_output = false
  14. #scroll_on_keystroke = true
  15. # Length of the scrollback buffer, 0 disabled the scrollback buffer
  16. # and setting it to a negative value means "infinite scrollback"
  17. scrollback_lines = 10000
  18. #search_wrap = true
  19. #urgent_on_bell = true
  20. #hyperlinks = false
  21.  
  22. # $BROWSER is used by default if set, with xdg-open as a fallback
  23. #browser = xdg-open
  24.  
  25. # "system", "on" or "off"
  26. #cursor_blink = system
  27.  
  28. # "block", "underline" or "ibeam"
  29. #cursor_shape = block
  30.  
  31. # Hide links that are no longer valid in url select overlay mode
  32. #filter_unmatched_urls = true
  33.  
  34. # Emit escape sequences for extra modified keys
  35. #modify_other_keys = false
  36.  
  37. # set size hints for the window
  38. #size_hints = false
  39.  
  40. # "off", "left" or "right"
  41. #scrollbar = off
  42.  
  43. [colors]
  44.  
  45. # special
  46. foreground      = #d0d0d0
  47. foreground_bold = #d0d0d0
  48. cursor          = #d0d0d0
  49. background      = #ffffff
  50.  
  51. # black
  52. color0  = #151515
  53. color8  = #505050
  54.  
  55. # red
  56. color1  = #fb9fb1
  57. color9  = #fb9fb1
  58.  
  59. # green
  60. color2  = #acc267
  61. color10 = #acc267
  62.  
  63. # yellow
  64. color3  = #ddb26f
  65. color11 = #ddb26f
  66.  
  67. # blue
  68. color4  = #6fc2ef
  69. color12 = #6fc2ef
  70.  
  71. # magenta
  72. color5  = #e1a3ee
  73. color13 = #e1a3ee
  74.  
  75. # cyan
  76. color6  = #12cfc0
  77. color14 = #12cfc0
  78.  
  79. # white
  80. color7  = #d0d0d0
  81. color15 = #f5f5f5
  82.  
  83. background = rgba(3, 3, 3, 0.8)
  84.  
  85. [hints]
  86. #font = Monospace 12
  87. #foreground = #dcdccc
  88. #background = #3f3f3f
  89. #active_foreground = #e68080
  90. #active_background = #3f3f3f
  91. #padding = 2
  92. #border = #3f3f3f
  93. #border_width = 0.5
  94. #roundness = 2.0
  95.  
  96. # vim: ft=dosini cms=#%s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement