Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. # Optional parameters for the console and the pager
  2. # The system-wide copy is in rwxxxx/etc.
  3. # A user copy can be installed in `R_USER'.
  4.  
  5. ## Style
  6. # This can be `yes' (for MDI) or `no' (for SDI).
  7. MDI = yes
  8. # the next two are only relevant for MDI
  9. toolbar = yes
  10. statusbar = no
  11.  
  12. ## Font.
  13. # Please use only fixed width font.
  14. # If font=FixedFont the system fixed font is used; in this case
  15. # points and style are ignored. If font begins with "TT ", only
  16. # True Type fonts are searched for.
  17. font = TT Courier New
  18. points = 14
  19. style = normal # Style can be normal, bold, italic
  20.  
  21.  
  22. # Dimensions (in characters) of the console.
  23. rows = 11
  24. columns = 85
  25. # Dimensions (in characters) of the internal pager.
  26. pgrows = 25
  27. pgcolumns = 80
  28. # should options(width=) be set to the console width?
  29. setwidthonresize = yes
  30.  
  31. # memory limits for the console scrolling buffer, in chars and lines
  32. bufbytes = 250000
  33. buflines = 8000
  34.  
  35. # Initial position of the console (pixels, relative to the workspace for MDI)
  36. xconsole = 0
  37. yconsole = 0
  38.  
  39. # Dimension of MDI frame in pixels
  40. # Format (w*h+xorg+yorg) or use -ve w and h for offsets from right bottom
  41. # This will come up maximized if w==0
  42. # MDIsize = 0*0+0+0
  43. # MDIsize = 1000*800+100+0
  44. # MDIsize = -50*-50+50+50 # 50 pixels space all round
  45.  
  46. # The internal pager can displays help in a single window
  47. # or in multiple windows (one for each topic)
  48. # pagerstyle can be set to `singlewindow' or `multiplewindows'
  49. pagerstyle = multiplewindows
  50.  
  51.  
  52. ## Colours for console and pager(s)
  53. # (see rwxxxx/etc/rgb.txt for the known colours).
  54. background = black
  55. normaltext = white
  56. usertext = orange
  57. pagerbg = black
  58. pagertext = white
  59. highlight = DarkRed
  60. dataeditbg = white
  61. dataedittext = navy
  62. dataedituser = red
  63. editorbg = black
  64. editortext = white
  65.  
  66.  
  67. ## Initial position of the graphics window
  68. ## (pixels, <0 values from opposite edge)
  69. xgraphics = -25
  70. ygraphics = 0
  71.  
  72.  
  73. ## Language for messages
  74. language =
  75.  
  76.  
  77. ## Default setting for console buffering: 'yes' or 'no'
  78. buffered = yes
  79.  
  80.  
  81. ## Console cursor blink
  82. cursor_blink = Partial
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement