Advertisement
Guest User

dillorc

a guest
Oct 18th, 2017
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.41 KB | None | 0 0
  1. # dillorc
  2. # Sample dillo initialization file.
  3. #
  4. # Lines that start with a '#' are comments.
  5. # "#option=..." shows the built-in default.
  6. # "# option=..." is an additional example.
  7. # "option=..." overrides the built-in value.
  8.  
  9. #-------------------------------------------------------------------------
  10. # FIRST SECTION :)
  11. #-------------------------------------------------------------------------
  12.  
  13. # Set the desired initial browser size
  14. # geometry=650x545+0+20
  15. geometry=1280x981
  16.  
  17. # Change this (and the following option) if you want to have text-only browsing
  18. # from the start. (While browsing, this can be changed from the tools/settings
  19. # menu.)
  20. load_images=YES
  21.  
  22. # Change this if you want background images to be loaded initially.
  23. # (While browsing, this can be changed from the tools/settings menu.)
  24. load_background_images=YES
  25.  
  26. # Change this if you want to disable loading of CSS stylesheets initially.
  27. # (While browsing, this can be changed from the tools/settings menu.)
  28. #load_stylesheets=YES
  29.  
  30. # Change this if you want to disable parsing of embedded CSS initially.
  31. # (While browsing, this can be changed from the tools/settings menu.)
  32. #parse_embedded_css=YES
  33.  
  34. # Change the buffering scheme for drawing
  35. # 0 no double buffering - useful for debugging
  36. # 1 light buffering using a single back buffer for all windows
  37. # 2 full fltk-based double buffering for all windows
  38. #buffered_drawing=1
  39.  
  40. # Set your default directory for download/save operations
  41. save_dir=/home/ren/Descargas/
  42.  
  43. #-------------------------------------------------------------------------
  44. # RENDERING SECTION
  45. #-------------------------------------------------------------------------
  46.  
  47. # Default fonts:
  48. #
  49. # If FLTK has been configured with Xft enabled (the default), you can use
  50. # scalable fonts such as DejaVu or Liberation (try running
  51. # "fc-list : family | cut -d ',' -f 2 | sort").
  52. font_serif="Droid Serif"
  53. font_sans_serif="Droid Sans"
  54. font_cursive="URW Chancery L"
  55. font_fantasy="Droid Sans"
  56. font_monospace="Droid Sans Mono"
  57. #
  58. # Otherwise, use bitmapped fonts like the following (for a list, try running
  59. # "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq").
  60. # font_serif="times"
  61. # font_sans_serif="helvetica"
  62. # font_cursive="helvetica"
  63. # font_fantasy="helvetica"
  64. # font_monospace="courier"
  65.  
  66. # All font sizes are scaled by this value
  67. # font_factor=1.5
  68. font_factor=1.5
  69.  
  70. # Maximum font size in pixels
  71. #font_max_size=100
  72.  
  73. # Minimum font size in pixels
  74. #font_min_size=6
  75.  
  76. # Show tooltip popups for HTML title attributes
  77. #show_tooltip=YES
  78.  
  79. # Set this to YES to limit the word wrap width to the viewport width
  80. #limit_text_width=NO
  81.  
  82.  
  83. #-------------------------------------------------------------------------
  84. # PENALTIES
  85. #-------------------------------------------------------------------------
  86.  
  87. # Penalties are used to control good and bad break points. The bigger
  88. # the penalty for a given break point, the less likely the line is
  89. # broken here. "inf" means that breaking is prohibited, "-inf" means
  90. # that a line *must* be broken here. (The latter should not be used
  91. # here, however.) Normal spaces get a penalty of 0. The exact
  92. # definition can be found in doc/dw-line-breaking.doc.
  93.  
  94. # Penalties for hyphenation breaks; this covers automatic hyphenation,
  95. # soft hyphens, and unconditional hyphens. Since hyphenation should
  96. # rather be avoided, the default values are larger than 0.
  97.  
  98. # This is used for hyphenation points, when there is no hyphen or dash
  99. # before:
  100. #penalty_hyphen = 1
  101.  
  102. # This is used for hyphenation points, when the line before ends
  103. # already with a hyphen or a dash. Consequent lines ending with
  104. # hyphens or dashes should be avoided, so this value is bigger than
  105. # "penalty_hyphen":
  106. #penalty_hyphen_2 = 8
  107.  
  108. # The same for a break right of an em-dash, when there are no spaces
  109. # surrounding it (as in English). The default values are the same as
  110. # for hyphens:
  111. #penalty_em_dash_right = 1
  112. #penalty_em_dash_right_2 = 8
  113.  
  114. # Penalty for a break *left* of an em-dash. Since a line ending with
  115. # an em-dash (and so breaking right of the em-dash) looks better than
  116. # a line beginning with an em-dash (breaking left of an em-dash), the
  117. # default value is bigger than "penalty_em_dash_right":
  118. #penalty_em_dash_left = 8
  119.  
  120. # Notice that there is no "penalty_em_dash_left_2", since breaking
  121. # left of an em-dash makes the line *begin*, not *end* with a dash.
  122.  
  123. # This factor is multiplied with the line height to get the
  124. # stretchability of a non-justified line. The larger this factor (and
  125. # thus, the stretchability), the less likely the words are hyphenated;
  126. # so you can use this value to control hyphenation of non-justified
  127. # text.
  128. #stretchability_factor=1
  129.  
  130. #-------------------------------------------------------------------------
  131. # PARSING SECTION
  132. #-------------------------------------------------------------------------
  133.  
  134. # If you prefer more accurate HTML bug diagnosis over better rendering
  135. # (page authors and webmasters) set the following to "NO".
  136. #
  137. #w3c_plus_heuristics=YES
  138.  
  139.  
  140. #-------------------------------------------------------------------------
  141. # NETWORK SECTION
  142. #-------------------------------------------------------------------------
  143.  
  144. # Set the start page.
  145. # start_page="about:blank"
  146. start_page="https://www.dillo.org"
  147. # start_page="file:/home/jcid/custom_page.html"
  148. #start_page="https://wiki.archlinux.org/index.php/Main_page"
  149.  
  150. # Set the home location
  151. # home="file:/home/jcid/HomePage/Home.html"
  152. home="https://duckduckgo.com/lite/"
  153.  
  154. # Set the URLs used by the web search dialog.
  155. # "%s" is replaced with the search keywords separated by '+'.
  156. # Format: search_url="[prefix ][<label> ]<url>"
  157. # You can enable multiple search_url strings at once and select from among
  158. # them at runtime, with the first being the default.
  159. # (the prefix serves to search from the Location Bar. e.g. "dd dillo image")
  160. search_url="dd DuckDuckGo (https) https://duckduckgo.com/lite/?kp=-1&q=%s"
  161. search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go"
  162. search_url="Free Dictionary http://www.thefreedictionary.com/%s"
  163. search_url="Startpage (https) https://www.startpage.com/do/search?query=%s"
  164. search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
  165.  
  166. # If set, dillo will ask web servers to send pages in this language.
  167. # This setting does NOT change dillo's user interface.
  168. # Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
  169. # Language-REGION values: www.iana.org/assignments/language-subtag-registry
  170. # (by default, no Accept-Language header is sent)
  171. # http_language="de"
  172. http_language="es-MX"
  173. # http_language="en-US,en;q=0.5"
  174.  
  175. # Maximum number of simultaneous TCP connections to a single server or proxy.
  176. # http_max_conns=6
  177.  
  178. # Set the proxy information for http.
  179. # Note that the http_proxy environment variable overrides this setting.
  180. # WARNING: FTP and downloads plugins use wget. To use a proxy with them,
  181. # you will need to configure wget accordingly. See
  182. # http://www.gnu.org/software/wget/manual/html_node/Proxies.html
  183. # http_proxy="http://localhost:8080/"
  184. #(by default, no proxy is used)
  185.  
  186. # If you need to provide a user/password pair for the proxy,
  187. # set the proxy user name here and Dillo will ask for the password later.
  188. # http_proxyuser="joe"
  189. #(by default, no proxy is used)
  190.  
  191. # Set the domains to access without proxy
  192. # no_proxy = ".hola.com .mynet.cl .hi.de"
  193. #no_proxy="localhost 127.0.0.1"
  194.  
  195. # Set the HTTP Referer (sic) header.
  196. # Note that there is no option to reveal the page that you came from because it
  197. # would endanger your privacy. 'host' and 'path' allow you to pretend that the
  198. # link you followed was on the same site that you're going to.
  199. # none : Don't send any Referer header at all.
  200. # host : Send the requested URI's hostname.
  201. # path : Send the requested URI's host and path.
  202. #http_referer=host
  203.  
  204. # Set the HTTP User-Agent header.
  205. # This can be useful for privacy and for working around servers who think
  206. # Dillo is less capable than it really is. However, if you pretend to use a
  207. # different browser, servers may send you pages that work with the features
  208. # and bugs of that other browser -- or even disallow access in cases like
  209. # wget or googlebot. Remember this before submitting bug reports.
  210. #
  211. # See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings.
  212. #
  213. # http_user_agent="Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0"
  214. # http_user_agent="Wget/1.13.4 (linux-gnu)"
  215. #The default is "Dillo/"+current_version_number
  216.  
  217. #-------------------------------------------------------------------------
  218. # COLORS SECTION
  219. #-------------------------------------------------------------------------
  220.  
  221. # Set the page background color
  222. # bg_color=gray
  223. # bg_color=0xd6d6c0
  224. #bg_color=0xdcd1ba
  225. bg_color=white
  226.  
  227. # If your eyes suffer with white backgrounds, change this.
  228. allow_white_bg=YES
  229.  
  230. # If allow_white_bg is set to NO, white backgrounds are replaced by
  231. # this color.
  232. #white_bg_replacement=0xe0e0a3
  233.  
  234. # When set to YES, the page author's visited link color may be overridden
  235. # to allow better contrast with text/links/background
  236. #contrast_visited_color=YES
  237.  
  238.  
  239. #-------------------------------------------------------------------------
  240. # USER INTERFACE SECTION
  241. #-------------------------------------------------------------------------
  242.  
  243. # UI theme
  244. # "none" is the default FLTK appearance, which "resembles old Windows...and
  245. # old GTK/KDE".
  246. # "plastic" "is inspired by the Aqua user interface on Mac OS X".
  247. # "gtk+" "is inspired by the Red Hat Bluecurve theme".
  248. #
  249. # If you have fltk-1.3.3 or newer, you can specify "gleam", which
  250. # is "a sort of Clearlooks Glossy scheme". ("fltk-config --version")
  251. #theme=none
  252. theme=gtk+
  253. # theme=plastic
  254.  
  255. # UI colors
  256. # The first four colors map to concepts in the underlying FLTK toolkit. Note
  257. # that FLTK may sometimes override colors, generally for contrast and
  258. # readability.
  259. #
  260. #ui_fg_color=black
  261. #ui_main_bg_color=silver
  262. #ui_text_bg_color=white
  263. #ui_selection_color=navy
  264. #
  265. # Background used when the mouse cursor is over a button.
  266. #ui_button_highlight_color=(by default, the main background color, lightened)
  267. #
  268. # Colors for the current tab.
  269. #ui_tab_active_bg_color=(by default, the text background color)
  270. #ui_tab_active_fg_color=(by default, the main foreground color)
  271. #
  272. # Colors for the other tabs.
  273. #ui_tab_bg_color=(by default, the main background color)
  274. #ui_tab_fg_color=(by default, the main foreground color)
  275.  
  276.  
  277. # Note to packagers: leaving these variables for the system to guess
  278. # gives different results in different environments, so we played it safe
  279. # by defining the traditional colors. Please choose the color theme that
  280. # better fits your distro.
  281.  
  282. #
  283. # Gray theme (traditional)
  284. #
  285. #ui_fg_color=black
  286. #ui_main_bg_color=#c6c6c6
  287. #ui_text_bg_color=#bfdabf
  288. #ui_selection_color=#191970
  289. #ui_button_highlight_color=#a9a9a9
  290. #ui_tab_active_bg_color=#87aca7
  291. #ui_tab_active_fg_color=black
  292. #ui_tab_bg_color=#b7beb7
  293.  
  294. #Tema acktos para dillo
  295.  
  296. ui_fg_color=black
  297. ui_main_bg_color=#e9e9eA
  298. ui_text_bg_color=white
  299. ui_selection_color=#65ade2
  300. #ui_button_highlight_color=#65ade2
  301. ui_button_highlight_color=#d8d8d8
  302. ui_tab_active_bg_color=#65ade2
  303. ui_tab_active_fg_color=white
  304. ui_tab_bg_color=#e9e9eA
  305.  
  306. #
  307. # Earthly theme:
  308. #
  309. #ui_fg_color=#100404
  310. #ui_main_bg_color=#c2a47b
  311. #ui_text_bg_color=#cdc9a5
  312. #ui_selection_color=#763024
  313. #ui_tab_active_bg_color=#af4b3f
  314. #ui_tab_active_fg_color=white
  315. #ui_tab_bg_color=#d2b48c
  316.  
  317. #
  318. # Greenish theme:
  319. #
  320. #ui_fg_color=#100404
  321. #ui_main_bg_color=#c8d394
  322. #ui_text_bg_color=#bdd8b6
  323. #ui_selection_color=#7c5f42
  324. #ui_button_highlight_color=#adad70
  325. #ui_tab_active_bg_color=#b5b679
  326. #ui_tab_active_fg_color=#b60907
  327. #ui_tab_bg_color=#cac682
  328.  
  329.  
  330. # Size of dillo panel
  331. # tiny : buttons, location, and progress boxes in one row
  332. # small : location in one row, buttons + progress boxes in another
  333. # medium : adds text labels to buttons and boxes
  334. # panel_size=tiny
  335. panel_size=small
  336. #panel_size=medium
  337.  
  338. #small_icons=NO
  339.  
  340. # Here you can choose to hide some widgets of the dillo panel...
  341. #show_back=YES
  342. #show_forw=YES
  343. #show_home=YES
  344. #show_reload=YES
  345. #show_save=YES
  346. #show_stop=YES
  347. #show_bookmarks=YES
  348. #show_tools=YES
  349. #show_filemenu=YES
  350. #show_clear_url=YES
  351. #show_url=YES
  352. #show_search=YES
  353. #show_help=YES
  354. #show_progress_box=YES
  355.  
  356. # Show tooltip popups for the UI
  357. #show_ui_tooltip=YES
  358.  
  359. # Start dillo with the panels hidden?
  360. #fullwindow_start=NO
  361.  
  362. # When filling out forms, our default behaviour is to submit on enterpress,
  363. # but only when there's a single text entry (to avoid incomplete submits).
  364. # OTOH, if you have to fill out the same form repeatedly, you may find it
  365. # useful to keep away from the mouse by forcing enter to submit.
  366. #enterpress_forces_submit=NO
  367.  
  368. # A mouse's middle click over a link opens a new Tab.
  369. # If you prefer to open a new Window instead, set it to NO.
  370. #middle_click_opens_new_tab=YES
  371.  
  372. # A mouse's middle click over a tab closes the Tab.
  373. # With mousewheel mouses, right click feels way better (set to YES).
  374. #right_click_closes_tab=NO
  375.  
  376. # Mouse middle click by default drives drag-scrolling.
  377. # To paste an URL into the window instead of scrolling, set it to NO.
  378. # Note: You could always paste the URL onto the URL box clear button.
  379. #middle_click_drags_page=YES
  380.  
  381. # Focus follows new Tabs.
  382. # You can hold SHIFT to temporarily revert this behaviour.
  383. #focus_new_tab=YES
  384.  
  385. # Ask before quitting Dillo with more than one window or tab open.
  386. #show_quit_dialog=YES
  387.  
  388. #-------------------------------------------------------------------------
  389. # DEBUG MESSAGES SECTION
  390. #-------------------------------------------------------------------------
  391.  
  392. # Soon we should add the "show_debug_messages=NO" option...
  393.  
  394. # Generic messages (mainly for debugging specific parts)
  395. # Change this to disable them.
  396. #show_msg=YES
  397.  
  398.  
  399. #-------------------------------------------------------------------------
  400. # HTML BUG MESSAGES SECTION
  401. #-------------------------------------------------------------------------
  402.  
  403. # Accepted by the W3C validator but "strongly discouraged" by the SPEC.
  404. # (Such as "TAB character inside <PRE>").
  405. #show_extra_warnings=NO
  406.  
  407.  
  408. # -----------------------------------------------------------------------
  409. # dillorc ends here.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement