commit 8ddb5f0
Emilia Smólska
·
2026-08-09 22:36:34 +0000 UTC
parent 16bcf9e
netsurf is the goat
1 files changed,
+0,
-490
+0,
-490
1@@ -1,490 +0,0 @@
2-# dillorc
3-# Sample dillo initialization file.
4-#
5-# Lines that start with a '#' are comments.
6-# "#option=..." shows the built-in default.
7-# "# option=..." is an additional example.
8-# "option=..." overrides the built-in value.
9-
10-#-------------------------------------------------------------------------
11-# FIRST SECTION :)
12-#-------------------------------------------------------------------------
13-
14-# Set the desired initial browser size
15-# geometry=650x545+0+20
16-#geometry=780x580
17-
18-# Change this (and the following option) if you want to have text-only browsing
19-# from the start. (While browsing, this can be changed from the tools/settings
20-# menu.)
21-#load_images=YES
22-
23-# A space separated list of image formats that will be ignored (not viewed).
24-# An option to download the image will be offered instead.
25-# Available formats: gif, png, webp, jpeg and svg.
26-# ignore_image_formats="webp svg"
27-#ignore_image_formats=""
28-
29-# Show a visible border on images that are not loaded yet. Makes it easier to
30-# spot them, but may cause unwanted noise in some pages.
31-#mark_unloaded_images=NO
32-
33-# Change this if you want background images to be loaded initially.
34-# (While browsing, this can be changed from the tools/settings menu.)
35-#load_background_images=NO
36-
37-# Change this if you want to disable loading of CSS stylesheets initially.
38-# (While browsing, this can be changed from the tools/settings menu.)
39-#load_stylesheets=YES
40-
41-# Change this if you want to disable parsing of embedded CSS initially.
42-# (While browsing, this can be changed from the tools/settings menu.)
43-#parse_embedded_css=YES
44-
45-# Change the buffering scheme for drawing
46-# 0 no double buffering - useful for debugging
47-# 1 light buffering using a single back buffer for all windows
48-# 2 full fltk-based double buffering for all windows
49-#buffered_drawing=1
50-
51-# Set your default directory for download/save operations
52-#save_dir=/tmp
53-
54-# Set the increment in pixels that the page is moved up/down with each input
55-# from the mouse wheel, keyboard arrow keys, or scrollbar arrow buttons.
56-#scroll_step=100
57-
58-# Controls the overlap in pixels when scrolling to the next or previous page.
59-# It is used to repeat the last line(s) to avoid losing the reading flow. It
60-# controls the overlap in both the vertical and horizontal directions.
61-#scroll_page_overlap=50
62-
63-# Place the vertical scrollbar on the left side (default right).
64-#scrollbar_on_left=NO
65-
66-# Enable the page mode for the vertical scrollbar. When this mode is enabled,
67-# clicking anywhere on the vertical scrollbar with the left button scrolls one
68-# page down. With the right button, one page up. Click with the middle button to
69-# jump to a given position.
70-#scrollbar_page_mode=NO
71-
72-# Define custom actions for the link menu. The format is <label>:<cmd>. The
73-# command will be executed in the system shell using the system() call. You can
74-# implement your own handling logic in a script or program. The following
75-# environment variables are set:
76-# $url: URL being opened
77-# $origin: URL of the current document
78-# $DILLO_PID: PID of dillo process
79-# Examples:
80-# link_action="Debug variables:echo url=$url origin=$origin"
81-# link_action="Open in MPV:mpv $url"
82-# link_action="Open in Firefox:firefox $url"
83-
84-# Define custom actions for the page menu. The format is <label>:<cmd>. The
85-# command will be executed in the system shell using the system() call. You can
86-# implement your own handling logic in a script or program. The following
87-# environment variables are set:
88-# $url: URL of the current page
89-# $DILLO_PID: PID of dillo process
90-# Examples:
91-# page_action="Reader mode:dilloc dump | rdrview -H | dilloc load"
92-# page_action="Mimic Chrome:curl_chrome136 -i --raw $url | dilloc rawload"
93-
94-#-------------------------------------------------------------------------
95-# RENDERING SECTION
96-#-------------------------------------------------------------------------
97-
98-# Default fonts:
99-#
100-# If FLTK has been configured with Xft enabled (the default), you can use
101-# scalable fonts such as DejaVu or Liberation (try running
102-# "fc-list : family | cut -d ',' -f 2 | sort").
103-font_serif="Luxi Mono"
104-font_sans_serif="Luxi Mono"
105-font_cursive="Luxi Mono"
106-font_fantasy="Luxi Mono"
107-font_monospace="Luxi Mono"
108-#
109-# Otherwise, use bitmapped fonts like the following (for a list, try running
110-# "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq").
111-# font_serif="times"
112-# font_sans_serif="helvetica"
113-# font_cursive="helvetica"
114-# font_fantasy="helvetica"
115-# font_monospace="courier"
116-
117-# All font sizes are scaled by this value
118-# font_factor=1.5
119-#font_factor=1.0
120-
121-# Maximum font size in pixels
122-#font_max_size=100
123-
124-# Minimum font size in pixels
125-#font_min_size=6
126-
127-# Show tooltip popups for HTML title attributes
128-#show_tooltip=YES
129-
130-# Set this to YES to limit the word wrap width to the viewport width
131-#limit_text_width=NO
132-
133-# If this is set to YES, all CSS size specifications are adjusted so that
134-# all contents can be displayed. (Except for tables, see below.)
135-#adjust_min_width=YES
136-
137-# If this is set to YES, all CSS size specifications for tables are
138-# adjusted so that all contents can be displayed. This is separated
139-# from "adjust_min_width" so that it is able to mimic Firefox, which
140-# differentiates between tables and, say, textblocks (in some cases).
141-#adjust_table_min_width=YES
142-
143-# Sets the initial zoom factor, which scales the size of all HTML elements.
144-# zoom_factor=1.5
145-#zoom_factor=1.0
146-
147-#-------------------------------------------------------------------------
148-# PENALTIES
149-#-------------------------------------------------------------------------
150-
151-# Penalties are used to control good and bad break points. The bigger
152-# the penalty for a given break point, the less likely the line is
153-# broken here. "inf" means that breaking is prohibited, "-inf" means
154-# that a line *must* be broken here. (The latter should not be used
155-# here, however.) Normal spaces get a penalty of 0. The exact
156-# definition can be found in doc/dw-line-breaking.doc.
157-
158-# Penalties for hyphenation breaks; this covers automatic hyphenation,
159-# soft hyphens, and unconditional hyphens. Since hyphenation should
160-# rather be avoided, the default values are larger than 0.
161-
162-# This is used for hyphenation points, when there is no hyphen or dash
163-# before:
164-#penalty_hyphen = 1
165-
166-# This is used for hyphenation points, when the line before ends
167-# already with a hyphen or a dash. Consequent lines ending with
168-# hyphens or dashes should be avoided, so this value is bigger than
169-# "penalty_hyphen":
170-#penalty_hyphen_2 = 8
171-
172-# The same for a break right of an em-dash, when there are no spaces
173-# surrounding it (as in English). The default values are the same as
174-# for hyphens:
175-#penalty_em_dash_right = 1
176-#penalty_em_dash_right_2 = 8
177-
178-# Penalty for a break *left* of an em-dash. Since a line ending with
179-# an em-dash (and so breaking right of the em-dash) looks better than
180-# a line beginning with an em-dash (breaking left of an em-dash), the
181-# default value is bigger than "penalty_em_dash_right":
182-#penalty_em_dash_left = 8
183-
184-# Notice that there is no "penalty_em_dash_left_2", since breaking
185-# left of an em-dash makes the line *begin*, not *end* with a dash.
186-
187-# This factor is multiplied with the line height to get the
188-# stretchability of a non-justified line. The larger this factor (and
189-# thus, the stretchability), the less likely the words are hyphenated;
190-# so you can use this value to control hyphenation of non-justified
191-# text.
192-#stretchability_factor=1
193-
194-
195-#-------------------------------------------------------------------------
196-# NETWORK SECTION
197-#-------------------------------------------------------------------------
198-
199-# Set the start page.
200-# start_page="about:blank"
201-# start_page="https://dillo-browser.org/"
202-# start_page="file:/home/jcid/custom_page.html"
203-#start_page="about:splash"
204-
205-# Set the home location
206-# home="file:/home/jcid/HomePage/Home.html"
207-#home="https://dillo-browser.org/"
208-
209-# Set the new tab page.
210-# new_tab_page="dpi:/bm/"
211-# new_tab_page="https://example.com/"
212-#new_tab_page="about:blank"
213-
214-# Set the URLs used by the web search dialog.
215-# "%s" is replaced with the search keywords separated by '+'.
216-# Format: search_url="[prefix ][<label> ]<url>"
217-# You can enable multiple search_url strings at once and select from among
218-# them at runtime, with the first being the default.
219-# (the prefix serves to search from the Location Bar. e.g. "dd dillo image")
220-search_url="dd DuckDuckGo https://duckduckgo.com/lite/?kp=-1&kd=-1&q=%s"
221-search_url="wi Wikipedia https://www.wikipedia.org/w/index.php?search=%s&go=Go"
222-search_url="di Free Dictionary https://www.thefreedictionary.com/%s"
223-search_url="sp Startpage https://www.startpage.com/do/search?query=%s"
224-search_url="mg Marginalia https://marginalia-search.com/search?query=%s"
225-search_url="wb Wiby https://wiby.org/?q=%s"
226-search_url="mj Mojeek https://www.mojeek.com/search?q=%s"
227-
228-# If set, dillo will ask web servers to send pages in this language.
229-# This setting does NOT change dillo's user interface.
230-# Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
231-# Language-REGION values: www.iana.org/assignments/language-subtag-registry
232-# (by default, no Accept-Language header is sent)
233-# http_language="de"
234-# http_language="pt-BR"
235-# http_language="en-US,en;q=0.5"
236-
237-# Maximum number of simultaneous TCP connections to a single server or proxy.
238-# http_max_conns=6
239-
240-# If enabled, Dillo will reuse HTTP connections to a server or proxy when
241-# possible rather than making a new connection for every request for a new
242-# page/image/stylesheet.
243-#http_persistent_conns=YES
244-
245-# This mechanism allows servers to specify that they are only to be contacted
246-# through HTTPS and not HTTP.
247-#
248-# Overall, this is a valuable security measure against TLS stripping
249-# attacks, etc., but in principle a site could contrive to use this as a
250-# tracking mechanism. The term is "HSTS super cookie", although note that these
251-# HSTS directives are not saved between browser sessions.
252-#http_strict_transport_security=YES
253-
254-# If enabled, Dillo will force all HTTP connections to be upgraded to
255-# a more secure HTTPS connection. This will prevent sites from loading
256-# if they only support HTTP.
257-#http_force_https=NO
258-
259-# Set the proxy information for http/https.
260-# Note that the http_proxy environment variable overrides this setting.
261-# WARNING: FTP and downloads plugins use wget. To use a proxy with them,
262-# you will need to configure wget accordingly. See
263-# http://www.gnu.org/software/wget/manual/html_node/Proxies.html
264-# http_proxy="http://localhost:8080/"
265-#(by default, no proxy is used)
266-
267-# If you need to provide a user/password pair for the proxy,
268-# set the proxy user name here and Dillo will ask for the password later.
269-# http_proxyuser="joe"
270-#(by default, no proxy is used)
271-
272-# Set the domains to access without proxy
273-# no_proxy = ".hola.com .mynet.cl .hi.de"
274-#no_proxy="localhost 127.0.0.1"
275-
276-# Set the HTTP Referer (sic) header.
277-# Note that there is no option to reveal the page that you came from because it
278-# would endanger your privacy. 'host' and 'path' allow you to pretend that the
279-# link you followed was on the same site that you're going to.
280-# none : Don't send any Referer header at all.
281-# host : Send the requested URI's hostname.
282-# path : Send the requested URI's host and path.
283-#http_referer=host
284-
285-# Set the HTTP User-Agent header.
286-# This can be useful for privacy and for working around servers who think
287-# Dillo is less capable than it really is. However, if you pretend to use a
288-# different browser, servers may send you pages that work with the features
289-# and bugs of that other browser -- or even disallow access in cases like
290-# wget or googlebot. Remember this before submitting bug reports.
291-#
292-# See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings.
293-#
294-# http_user_agent="Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0"
295-# http_user_agent="Wget/1.13.4 (linux-gnu)"
296-#The default is "Dillo/"+current_version_number
297-
298-#-------------------------------------------------------------------------
299-# COLORS SECTION
300-#-------------------------------------------------------------------------
301-
302-# Set the page background color
303-# bg_color=gray
304-# bg_color=0xd6d6c0
305-#bg_color=0xdcd1ba
306-
307-# If your eyes suffer with white backgrounds, change this.
308-#allow_white_bg=YES
309-
310-# If allow_white_bg is set to NO, white backgrounds are replaced by
311-# this color.
312-#white_bg_replacement=0xe0e0a3
313-
314-# When set to YES, the page author's visited link color may be overridden
315-# to allow better contrast with text/links/background
316-#contrast_visited_color=YES
317-
318-
319-#-------------------------------------------------------------------------
320-# USER INTERFACE SECTION
321-#-------------------------------------------------------------------------
322-
323-# UI theme
324-# "none" is the default FLTK appearance, which "resembles old Windows...and
325-# old GTK/KDE".
326-# "plastic" "is inspired by the Aqua user interface on Mac OS X".
327-# "gtk+" "is inspired by the Red Hat Bluecurve theme".
328-#
329-# If you have fltk-1.3.3 or newer, you can specify "gleam", which
330-# is "a sort of Clearlooks Glossy scheme". ("fltk-config --version")
331-#theme=none
332-# theme=gtk+
333-# theme=plastic
334-
335-# UI colors
336-# Note that FLTK may sometimes override colors, generally for contrast and
337-# readability.
338-#
339-# ui_fg_color, ui_main_bg_color, ui_text_bg_color, and ui_selection_color
340-# map to concepts in the underlying FLTK toolkit which are described as:
341-# "the default foreground color...used for labels and text", "default
342-# background color", "the default background color for text, list, and
343-# valuator widgets", and "the default selection/highlight color". They
344-# sometimes have other uses in the more complex FLTK widgets.
345-#
346-# ui_button_highlight_color is the background used when the mouse cursor is
347-# over a button. By default, this is a lightened version of the main
348-# background color.
349-#
350-# ui_tab_active_fg_color and ui_tab_active_bg_color are used for the current
351-# tab. By default, they are the main foreground color and the text background
352-# color, respectively.
353-#
354-# ui_tab_fg_color and ui_tab_bg_color are used for the other tabs. By default,
355-# they are the main foreground color and the main background color,
356-# respectively.
357-#
358-# ui_tab_height controls the height of the tabs (default 20).
359-#
360-# Note to packagers: leaving these variables for the system to guess
361-# gives different results in different environments, so we played it safe
362-# by defining the traditional colors. Please choose the color theme that
363-# better fits your distro.
364-
365-#
366-# Gray theme (traditional)
367-#
368-ui_fg_color=black
369-ui_main_bg_color=#c6c6c6
370-ui_text_bg_color=#bfdabf
371-ui_selection_color=#191970
372-ui_button_highlight_color=#a9a9a9
373-ui_tab_active_bg_color=#87aca7
374-ui_tab_active_fg_color=black
375-ui_tab_bg_color=#b7beb7
376-
377-#
378-# Earthly theme:
379-#
380-#ui_fg_color=#100404
381-#ui_main_bg_color=#c2a47b
382-#ui_text_bg_color=#cdc9a5
383-#ui_selection_color=#763024
384-#ui_tab_active_bg_color=#af4b3f
385-#ui_tab_active_fg_color=white
386-#ui_tab_bg_color=#d2b48c
387-
388-#
389-# Greenish theme:
390-#
391-#ui_fg_color=#100404
392-#ui_main_bg_color=#c8d394
393-#ui_text_bg_color=#bdd8b6
394-#ui_selection_color=#7c5f42
395-#ui_button_highlight_color=#adad70
396-#ui_tab_active_bg_color=#b5b679
397-#ui_tab_active_fg_color=#b60907
398-#ui_tab_bg_color=#cac682
399-
400-
401-# Size of dillo panel
402-# tiny : buttons, location, and progress boxes in one row
403-# small : location in one row, buttons + progress boxes in another
404-# medium : adds text labels to buttons and boxes
405-# panel_size=tiny
406-# panel_size=small
407-#panel_size=medium
408-
409-#small_icons=NO
410-
411-# Here you can choose to hide some widgets of the dillo panel...
412-#show_back=YES
413-#show_forw=YES
414-#show_home=YES
415-#show_reload=YES
416-#show_save=YES
417-#show_stop=YES
418-#show_bookmarks=YES
419-#show_tools=YES
420-#show_filemenu=YES
421-#show_clear_url=YES
422-#show_url=YES
423-#show_search=YES
424-#show_help=YES
425-#show_progress_box=YES
426-
427-# Show tooltip popups for the UI
428-#show_ui_tooltip=YES
429-
430-# Start dillo with the panels hidden?
431-#fullwindow_start=NO
432-
433-# When filling out forms, our default behaviour is to submit on enterpress,
434-# but only when there's a single text entry (to avoid incomplete submits).
435-# OTOH, if you have to fill out the same form repeatedly, you may find it
436-# useful to keep away from the mouse by forcing enter to submit.
437-#enterpress_forces_submit=NO
438-
439-# A mouse's middle click over a link opens a new Tab.
440-# If you prefer to open a new Window instead, set it to NO.
441-#middle_click_opens_new_tab=YES
442-
443-# A mouse's middle click over a tab closes the Tab.
444-# With mousewheel mouses, right click feels way better (set to YES).
445-#right_click_closes_tab=YES
446-
447-# Scroll over tabs (using the mouse wheel) to switch among tabs.
448-# If set to NO, the page will be scrolled instead.
449-#scroll_switches_tabs=YES
450-
451-# Reverse the direction of tab scrolling with mouse wheel.
452-#scroll_switches_tabs_reverse=NO
453-
454-# Mouse middle click by default drives drag-scrolling.
455-# To paste an URL into the window instead of scrolling, set it to NO.
456-# Note: You could always paste the URL onto the URL box clear button.
457-#middle_click_drags_page=YES
458-
459-# Focus follows new Tabs.
460-# You can hold SHIFT to temporarily revert this behaviour.
461-#focus_new_tab=NO
462-
463-# Ask before quitting Dillo with more than one window or tab open.
464-#show_quit_dialog=NO
465-
466-#-------------------------------------------------------------------------
467-# DEBUG MESSAGES SECTION
468-#-------------------------------------------------------------------------
469-
470-# Soon we should add the "show_debug_messages=NO" option...
471-
472-# Generic messages (mainly for debugging specific parts)
473-# Change this to disable them.
474-#show_msg=YES
475-#
476-# Print HTTP traffic to stdout (before TLS encryption).
477-# Useful for debugging but will print any user or password sent in forms!
478-#trace_http=NO
479-
480-
481-#-------------------------------------------------------------------------
482-# HTML BUG MESSAGES SECTION
483-#-------------------------------------------------------------------------
484-
485-# Accepted by the W3C validator but "strongly discouraged" by the SPEC.
486-# (Such as "TAB character inside <PRE>").
487-#show_extra_warnings=NO
488-
489-
490-# -----------------------------------------------------------------------
491-# dillorc ends here.