config_global.ini 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. #
  2. # This file contains default configurations of RemoteSupportTool.
  3. #
  4. # You should not change settings in this file directly. In order to preserve
  5. # the default settings, you should put your modifications into the "config.ini"
  6. # file.
  7. #
  8. [about]
  9. # URL of the applications source code repository.
  10. repository = https://github.com/OpenIndex/RemoteSupportTool
  11. # Name of the company.
  12. company-name =
  13. # URL of the company website.
  14. company-website =
  15. # Short title of the company website.
  16. company-website-title =
  17. # Additional authors. Multiple authors may be separated by a semicolon.
  18. authors =
  19. [gui]
  20. # Default background color.
  21. background = white
  22. # Default size of the application window.
  23. application-window-width = 500
  24. application-window-height = 300
  25. application-window-min-width = 450
  26. application-window-min-height = 250
  27. # Default size of the about window.
  28. about-window-width = 550
  29. about-window-height = 350
  30. about-window-min-width = 450
  31. about-window-min-height = 250
  32. # Default size of the settings window.
  33. settings-window-width = 550
  34. settings-window-height = 350
  35. settings-window-min-width = 450
  36. settings-window-min-height = 250
  37. # Default settings for titles.
  38. title-background = white
  39. title-foreground = black
  40. title-foreground-disabled = #cccccc
  41. title-font-family = TkCaptionFont
  42. title-font-size = 12
  43. title-font-weight = bold
  44. # Default settings for subtitles.
  45. subtitle-background = white
  46. subtitle-foreground = black
  47. subtitle-foreground-disabled = #cccccc
  48. subtitle-font-family = TkCaptionFont
  49. subtitle-font-size = 10
  50. subtitle-font-weight = bold
  51. # Default settings for labels.
  52. label-background = white
  53. label-foreground = black
  54. label-foreground-disabled = #cccccc
  55. label-font-family = TkDefaultFont
  56. label-font-size = 9
  57. label-font-weight = normal
  58. # Default settings for buttons.
  59. button-background = white
  60. button-background-active = #eeeeee
  61. button-foreground = #333333
  62. button-foreground-active = black
  63. button-foreground-disabled = #cccccc
  64. button-font-family = TkDefaultFont
  65. button-font-size = 9
  66. button-font-weight = normal
  67. # Default settings for checkboxes.
  68. checkbutton-background = white
  69. checkbutton-background-active = white
  70. checkbutton-foreground = #333333
  71. checkbutton-foreground-active = black
  72. checkbutton-font-family = TkDefaultFont
  73. checkbutton-font-size = 9
  74. checkbutton-font-weight = normal
  75. # Default settings for text fields.
  76. entry-background = white
  77. entry-background-disabled = #e0e0e0
  78. entry-background-readonly = #f0f0f0
  79. entry-foreground = black
  80. entry-foreground-disabled = #999999
  81. entry-font-family = TkTextFont
  82. entry-font-size = 10
  83. entry-font-weight = normal
  84. # Default settings for the status bar in the application window.
  85. status-background = #f0f0f0
  86. status-foreground = black
  87. status-foreground-disabled = #c0c0c0
  88. status-font-family = TkDefaultFont
  89. status-font-size = 9
  90. status-font-weight = normal
  91. [gui-darwin]
  92. # Settings for titles on Mac OS X.
  93. title-font-family = systemApplicationFont
  94. title-font-size = 15
  95. # Settings for subtitles on Mac OS X.
  96. subtitle-font-family = systemApplicationFont
  97. subtitle-font-size = 13
  98. # Settings for labels on Mac OS X.
  99. label-font-family = systemApplicationFont
  100. label-font-size = 13
  101. # Settings for buttons on Mac OS X.
  102. button-font-family = systemApplicationFont
  103. button-font-size = 12
  104. # Settings for checkboxes on Mac OS X.
  105. checkbutton-font-family = systemApplicationFont
  106. checkbutton-font-size = 13
  107. # Settings for text fields on Mac OS X.
  108. entry-font-family = systemApplicationFont
  109. entry-font-size = 13
  110. # Settings for the status bar on Mac OS X.
  111. status-font-family = systemApplicationFont
  112. status-font-size = 12
  113. [gui-linux]
  114. [gui-windows]
  115. [session]
  116. # Default VNC host.
  117. host =
  118. # Default VNC port.
  119. port = 5500
  120. # Default path to the VNC application.
  121. vnc-application =
  122. # Default parameters for the VNC application.
  123. vnc-parameters =
  124. # SSH is enabled by default (yes / no).
  125. ssh-enabled = no
  126. # Default path to the SSH application.
  127. ssh-application =
  128. # Default port for SSH connections.
  129. ssh-port = 22
  130. # Default user for SSH connections.
  131. ssh-user =
  132. # Default file with a SSH private key.
  133. ssh-keyfile =
  134. [session-darwin]
  135. # Parameters for the VNC application on Mac OS X.
  136. vnc-parameters = -nodimming -disableScreenSaver -bonjour 0
  137. [session-linux]
  138. # Parameters for the VNC application on Linux.
  139. vnc-parameters = -solid black -norc -noxrandr
  140. [session-windows]