Advertisement
Guest User

~/.newsbeuter/config

a guest
Feb 22nd, 2012
1,236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.55 KB | None | 0 0
  1. ####################################
  2. # newsbeuter example configuration #
  3. ####################################
  4.  
  5. ## Podbeuter stuff
  6. max-downloads 5
  7. download-path "~/podcasts/podbeuter/"
  8. player "mplayer %u"
  9. browser elinks
  10. ## configuration option: always-display-description
  11. ## description: If true, then the description will always displayed even if e.g. a content:encoded tag has been found.
  12. ## parameter syntax: [true/false]
  13. always-display-description false
  14.  
  15. ## configuration option: article-sort-order
  16. ## description: The sortfield specifies which article property shall be used for sorting (currently available: date, title, flags, author, link, guid). The optional direction specifies the sort direction ("asc" specifies ascending sorting, "desc" specifies descending sorting. for date, "desc" is default, for all others, "asc" is default).
  17. ## parameter syntax: <sortfield>[-<direction>]
  18. article-sort-order date
  19.  
  20. ## configuration option: articlelist-format
  21. ## description: This variable defines the format of entries in the article list. See the respective section in the documentation for more information on format strings.
  22. ## parameter syntax: <format>
  23. articlelist-format "%4i %f %D %6L %?T?|%-17T| ?%t"
  24.  
  25. ## configuration option: auto-reload
  26. ## description: If enabled, all feeds will be automatically reloaded at start up and then continuously after a certain time has passed (see reload-time).
  27. ## parameter syntax: [yes/no]
  28. auto-reload yes
  29.  
  30. ## configuration option: bookmark-cmd
  31. ## description: If set, then <bookmark-command> will be used as bookmarking plugin. See the documentation on bookmarking for further information.
  32. ## parameter syntax: <bookmark-command>
  33. # bookmark-cmd ""
  34.  
  35. ## configuration option: bookmark-interactive
  36. ## description: If set to yes, then the configured bookmark command is an interactive program.
  37. ## parameter syntax: [yes/no]
  38. bookmark-interactive no
  39.  
  40. ## configuration option: browser
  41. ## description: Set the browser command to use when opening an article in the browser. If <browser-command> contains %u, it will be used as complete commandline and %u will be replaced with the URL that shall be opened.
  42. ## parameter syntax: <browser-command>
  43. browser elinks %u
  44.  
  45. ## configuration option: cache-file
  46. ## description: This configuration option sets the cache file. This is especially useful if the filesystem of your home directory doesn't support proper locking (e.g. NFS).
  47. ## parameter syntax: <path>
  48. cache-file "~/.newsbeuter/cache.db"
  49.  
  50. ## configuration option: cleanup-on-quit
  51. ## description: If yes, then the cache gets locked and superfluous feeds and items are removed, such as feeds that can't be found in the urls configuration file anymore.
  52. ## parameter syntax: [yes/no]
  53. cleanup-on-quit yes
  54.  
  55. ## configuration option: confirm-exit
  56. ## description: If set to yes, then newsbeuter will ask for confirmation whether the user really wants to quit newsbeuter.
  57. ## parameter syntax: [yes/no]
  58. confirm-exit no
  59.  
  60. ## configuration option: datetime-format
  61. ## description: This format specifies the date/time format in the article list. For a detailed documentation on the allowed formats, consult the manpage of strftime(3).
  62. ## parameter syntax: <date/time format>
  63. datetime-format %b %d
  64.  
  65. ## configuration option: display-article-progress
  66. ## description: If set to yes, then a read progress (in percent) is displayed in the article view. Otherwise, no read progress is displayed.
  67. ## parameter syntax: [yes/no]
  68. display-article-progress yes
  69.  
  70. ## configuration option: download-retries
  71. ## description: How many times newsbeuter shall try to successfully download a feed before giving up. This is an option to improve the success of downloads on slow and shaky connections such as via a TOR proxy.
  72. ## parameter syntax: <number retries>
  73. download-retries 1
  74.  
  75. ## configuration option: download-timeout
  76. ## description: The number of seconds newsbeuter shall wait when downloading a feed before giving up. This is an option to improve the success of downloads on slow and shaky connections such as via a TOR proxy.
  77. ## parameter syntax: <seconds>
  78. download-timeout 30
  79.  
  80. ## configuration option: error-log
  81. ## description: If set, then user errors (e.g. errors regarding defunct RSS feeds) will be logged to this file.
  82. ## parameter syntax: <path>
  83. error-log "~/.newsbeuter/errors"
  84.  
  85. ## configuration option: feed-sort-order
  86. ## description: If set to "firsttag", the feeds in the feed list will be sorted by their first tag in the urls file.
  87. ## parameter syntax: <sortorder>
  88. feed-sort-order none
  89.  
  90. ## configuration option: feedlist-format
  91. ## description: This variable defines the format of entries in the feed list. See the respective section in the documentation for more information on format strings.
  92. ## parameter syntax: <format>
  93. feedlist-format "%4i %n %11u %t"
  94.  
  95. ## configuration option: googlereader-flag-share
  96. ## description: If this is set and Google Reader support is used, then all articles that are flagged with the specified flag are being "shared" in Google Reader so that people that follow you can see it.
  97. ## parameter syntax: <flag>
  98. # googlereader-flag-share ""
  99.  
  100. ## configuration option: googlereader-flag-star
  101. ## description: If this is set and Google Reader support is used, then all articles that are flagged with the specified flag are being "starred" in Google Reader and appear in the list of "Starred items".
  102. ## parameter syntax: <flag>
  103. # googlereader-flag-star ""
  104.  
  105. ## configuration option: googlereader-login
  106. ## description: This variable sets your Google Reader login for the Google Reader support.
  107. ## parameter syntax: <login>
  108. # googlereader-login ""
  109.  
  110. ## configuration option: googlereader-min-items
  111. ## description: This variable sets the number of articles that are loaded from Google Reader per feed.
  112. ## parameter syntax: <number>
  113. # googlereader-min-items 20
  114.  
  115. ## configuration option: googlereader-password
  116. ## description: This variable sets your Google Reader password for the Google Reader support.
  117. ## parameter syntax: <password>
  118. # googlereader-password ""
  119.  
  120. ## configuration option: googlereader-show-special-feeds
  121. ## description: If this is set, then "special feeds" like "People you follow" (articles shared by people you follow), "Starred items" (your starred articles), "Shared items" (your shared articles) and "Popular items" (articles considered to be popular by Google's magic algorithms) appear in your subscription list.
  122. ## parameter syntax: [yes/no]
  123. googlereader-show-special-feeds yes
  124.  
  125. ## configuration option: goto-first-unread
  126. ## description: If set to yes (the default), then the first unread article will be selected whenever a feed is entered.
  127. ## parameter syntax: [yes/no]
  128. goto-first-unread yes
  129.  
  130. ## configuration option: goto-next-feed
  131. ## description: If set to yes, then the next-unread and prev-unread keys will search in other feeds for unread articles if all articles in the current feed are read. If set to no, then the next-unread and prev-unread keys will stop in the current feed.
  132. ## parameter syntax: [yes/no]
  133. goto-next-feed yes
  134.  
  135. ## configuration option: history-limit
  136. ## description: Defines the maximum number of entries of commandline resp. search history to be saved. To disable history saving, set history-limit to 0.
  137. ## parameter syntax: <number>
  138. history-limit 200
  139.  
  140. ## configuration option: html-renderer
  141. ## description: If set to "internal", then the internal HTML renderer will be used. Otherwise, the specified command will be executed, the HTML to be rendered will be written to the command's stdin, and the program's output will be displayed. This makes it possible to use other, external programs, such as w3m, links or lynx, to render HTML.
  142. ## parameter syntax: <path>
  143. # html-renderer internal
  144.  
  145. ## configuration option: ignore-mode
  146. ## description: This configuration option defines in what way an article is ignored (see ignore-article). If set to "download", then it is ignored in the download/parsing phase (which is the default) and thus never written to the cache, if it set to "display", it is ignored when displaying articles but is kept in the cache.
  147. ## parameter syntax: [download/display]
  148. ignore-mode download
  149.  
  150. ## configuration option: keep-articles-days
  151. ## description: If set the a number greater than 0, only articles that are were published within the last <n> days are kept, and older articles are deleted. If set to 0 (default value), this option is not active.
  152. ## parameter syntax: <days>
  153. keep-articles-days 0
  154.  
  155. ## configuration option: mark-as-read-on-hover
  156. ## description: If set to yes, then all articles that get selected in the article list are marked as read.
  157. ## parameter syntax: [yes/no]
  158. mark-as-read-on-hover no
  159.  
  160. ## configuration option: max-items
  161. ## description: Set the number of articles to maximally keep per feed. If the number is set to 0, then all articles are kept.
  162. ## parameter syntax: <number>
  163. max-items 0
  164.  
  165. ## configuration option: notify-format
  166. ## description: Format string that is used for formatting notifications. See the chapter on format strings for more information.
  167. ## parameter syntax: <string>
  168. notify-format "newsbeuter: finished reload, %f unread feeds (%n unread articles total)"
  169.  
  170. ## configuration option: notify-program
  171. ## description: If set, then the configured program will be executed if new articles arrived (through a reload) or if notify-always is true. The first parameter of the called program contains the notification message.
  172. ## parameter syntax: <path>
  173. # notify-program ""
  174.  
  175. ## configuration option: notify-always
  176. ## description: If no, notifications will only be made when there are new feeds or articles. If yes, notifications will be made regardless.
  177. ## parameter syntax: [yes/no]
  178. # notify-always no
  179.  
  180. ## configuration option: notify-screen
  181. ## description: If yes, then a "privacy message" will be sent to the terminal, containing a notification message about new articles. This is especially useful if you use terminal emulations such as GNU screen which implement privacy messages.
  182. ## parameter syntax: [yes/no]
  183. # notify-screen no
  184.  
  185. ## configuration option: notify-xterm
  186. ## description: If yes, then the xterm window title will be set to a notification message about new articles.
  187. ## parameter syntax: [yes/no]
  188. notify-xterm yes
  189.  
  190. ## configuration option: notify-beep
  191. ## description: If yes, then the speaker beep on new articles.
  192. ## parameter syntax: [yes/no]
  193. notify-beep yes
  194.  
  195. ## configuration option: opml-url
  196. ## description: If the OPML online subscription mode is enabled, then the list of feeds will be taken from the OPML file found on this location. Optionally, you can specify more than one URL. All the listed OPML URLs will then be taken into account when loading the feed list.
  197. ## parameter syntax: <url> ...
  198. # opml-url ""
  199.  
  200. ## configuration option: pager
  201. ## description: If set to "internal", then the internal pager will be used. Otherwise, the article to be displayed will be rendered to be a temporary file and then displayed with the configured pager. If the pager path is set to an empty string, the content of the "PAGER" environment variable will be used. If the pager path contains a placeholder "%f", it will be replaced with the temporary filename.
  202. ## parameter syntax: [<path>/internal]
  203. pager internal
  204.  
  205. ## configuration option: podcast-auto-enqueue
  206. ## description: If yes, then all podcast URLs that are found in articles are added to the podcast download queue. See the respective section in the documentation for more information on podcast support in newsbeuter.
  207. ## parameter syntax: [yes/no]
  208. podcast-auto-enqueue no
  209.  
  210. ## configuration option: prepopulate-query-feeds
  211. ## description: If yes, then all query feeds are prepopulated with articles on startup.
  212. ## parameter syntax: [yes/no]
  213. prepopulate-query-feeds no
  214.  
  215. ## configuration option: proxy-auth-method
  216. ## description: Set proxy authentication method. Allowed values: any, basic, digest, digest_ie (only available with libcurl 7.19.3 and newer), gssnegotiate, ntlm, anysafe.
  217. ## parameter syntax: <method>
  218. proxy-auth-method any
  219.  
  220. ## configuration option: proxy-type
  221. ## description: Set proxy type. Allowed values: http, socks4, socks4a, socks5.
  222. ## parameter syntax: <type>
  223. proxy-type http
  224.  
  225. ## configuration option: refresh-on-startup
  226. ## description: If yes, then all feeds will be reloaded when newsbeuter starts up. This is equivalent to the -r commandline option.
  227. ## parameter syntax: [yes/no]
  228. refresh-on-startup yes
  229.  
  230. ## configuration option: reload-only-visible-feeds
  231. ## description: If yes, then manually reloading all feeds will only reload the currently visible feeds, e.g. if a filter or a tag is set.
  232. ## parameter syntax: [yes/no]
  233. reload-only-visible-feeds no
  234.  
  235. ## configuration option: reload-time
  236. ## description: The number of minutes between automatic reloads.
  237. ## parameter syntax: <number>
  238. reload-time 30
  239.  
  240. ## configuration option: reload-threads
  241. ## description: The number of parallel reload threads that shall be started when all feeds are reloaded.
  242. ## parameter syntax: <number>
  243. reload-threads 1
  244.  
  245. ## configuration option: save-path
  246. ## description: The default path where articles shall be saved to. If an invalid path is specified, the current directory is used.
  247. ## parameter syntax: <path>
  248. save-path ~/podcasts/podbeuter/
  249.  
  250. ## configuration option: search-highlight-colors
  251. ## description: This configuration command specifies the highlighting colors when searching for text from the article view.
  252. ## parameter syntax: <fgcolor> <bgcolor> [<attribute> ...]
  253. search-highlight-colors black red
  254.  
  255. color background white default
  256. color listnormal white default
  257. color listfocus red white
  258. color info red default bold
  259. color article white default
  260.  
  261. ## configuration option: show-keymap-hint
  262. ## description: If no, then the keymap hints on the bottom of screen will not be displayed.
  263. ## parameter syntax: [yes/no]
  264. show-keymap-hint yes
  265.  
  266. ## configuration option: show-read-feeds
  267. ## description: If yes, then all feeds, including those without unread articles, are listed. If no, then only feeds with one or more unread articles are list.
  268. ## parameter syntax: [yes/no]
  269. show-read-feeds yes
  270.  
  271. ## configuration option: show-read-articles
  272. ## description: If yes, then all articles of a feed are listed in the article list. If no, then only unread articles are listed.
  273. ## parameter syntax: [yes/no]
  274. show-read-articles yes
  275.  
  276. ## configuration option: suppress-first-reload
  277. ## description: If yes, then the first automatic reload will be suppressed if auto-reload is set to yes.
  278. ## parameter syntax: [yes/no]
  279. suppress-first-reload no
  280.  
  281. ## configuration option: text-width
  282. ## description: If set to a number greater than 0, then all HTML will be rendered to this maximum line length. If set to 0, the terminal width will be used.
  283. ## parameter syntax: <number>
  284. text-width 0
  285.  
  286. ## configuration option: urls-source
  287. ## description: This configuration command sets the source where URLs shall be retrieved from. By default, this is ~/.newsbeuter/urls. Alternatively, you can set it to "opml", which enables newsbeuter's OPML online subscription mode, or to "googlereader", which enables newsbeuter's Google Reader support. In order to make Google Reader support work correctly, you also need to set googlereader-login and googlereader-password.
  288. ## parameter syntax: <source>
  289. urls-source "local"
  290.  
  291. ## configuration option: use-proxy
  292. ## description: If yes, then the configured proxy will be used for downloading the RSS feeds.
  293. ## parameter syntax: [yes/no]
  294. use-proxy no
  295.  
  296. ## configuration option: user-agent
  297. ## description: If set to a non-zero-length string, this value will be used as HTTP User-Agent header for all HTTP requests.
  298. ## parameter syntax: <user agent string>
  299. # user-agent ""
  300.  
  301. # EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement