diff options
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | doc/dwb.1 | 13 | ||||
-rw-r--r-- | src/config.h | 2 |
3 files changed, 15 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..96aeb94d --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +Authors: +Stefan Bolte - portix <portix at gmx dot net> 2010-2012 + +Contributors: +Peter Bex 2011 +Jonas H. 2010 +Nathan Owens 2011-2012 @@ -41,7 +41,7 @@ Open a new session, even if is enabled. .TP .BR \-x ,\ --execute \ <commands> -Execute a list list of dwb commands seperated by +Execute a list of dwb commands separated by .IR ;; , see .B CUSTOM COMMANDS @@ -149,7 +149,7 @@ aliases: .BR o ). .TP .BR go -Open url in the focused tab, set the current url in the navigation bar (comand +Open url in the focused tab, set the current url in the navigation bar (command .BR open_url ). .TP .BR O @@ -1621,7 +1621,8 @@ and .I DWB_USER_AGENT are set. Default value: -.IR xterm\ -e\ wget\ 'dwb_uri'\ -O\ 'dwb_output'\ --load-cookies\ 'dwb_cookies' . +.IR xterm\ -e\ wget\ 'dwb_uri'\ -O\ 'dwb_output' +.BR --load-cookies 'dwb_cookies'. .TP .BR download-directory The default download directory, if empty, the current working directory is used @@ -1850,8 +1851,8 @@ available which can be used in a script, for example: #!/bin/sh case ${DWB_SCHEME} in - mailto) xterm -e "mutt ${DWB_URI}";; - ftp) xterm -e "ncftp ${DWB_URI}";; + mailto) xterm -\(hye "mutt ${DWB_URI}";; + ftp) xterm \(hye "ncftp ${DWB_URI}";; *) xdg-open ${DWB_URI} esac .fi @@ -1870,7 +1871,7 @@ default value: .TP .BR single-instance Only one instance of dwb per user. This option will be overridden by the -commandlineoption -n. Possible values: true/false, +commandlineoption \(hyn. Possible values: true/false, default value: .IR true . .TP diff --git a/src/config.h b/src/config.h index e41c5dc4..848d990f 100644 --- a/src/config.h +++ b/src/config.h @@ -1034,7 +1034,7 @@ static WebSettings DWB_SETTINGS[] = { /* downloads */ { { "download-external-command", "External program used for downloads", }, SETTING_GLOBAL, CHAR, { .p = "xterm -e wget 'dwb_uri' -O 'dwb_output' --load-cookies 'dwb_cookies'" }, NULL, }, - { { "download-no-confirm", "Wheter to confirm download directory", }, + { { "download-no-confirm", "Whether to confirm download directory", }, SETTING_GLOBAL, BOOLEAN, { .b = false }, NULL, }, { { "download-directory", "Default download directory", }, SETTING_GLOBAL, CHAR, { .p = NULL }, NULL, }, |