# HG changeset patch
# User Alexander Steinböck <z3ttacht@grml.org>
# Date 1202309625 -3600
# Node ID 08da1db05b06ef7de0db638fbcff06796d8e301a
# Parent  6ec86ccc80cfe83d9bf6fa2f0644de069295bda0
Initial config for newsbeuter. Providing .newsbeuter/config.

diff -r 6ec86ccc80cf -r 08da1db05b06 etc/skel/.newsbeuter/config
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/etc/skel/.newsbeuter/config	Wed Feb 06 15:53:45 2008 +0100
@@ -0,0 +1,172 @@
+# Filename:      .newsbeuter/config
+# Purpose:       Config file for newsbeuter, an ncurses-based RSS
+#                feed reader
+# Authors:       grml-team (grml.org), (c) Alexander Steinböck <z3ttacht@grml.org>
+# Bug-Reports:   see http://grml.org/bugs/
+# License:       This file is licensed under the GPL v2.
+# Latest Change: Sat Feb 02 23:10:23 CET 2008 [z3ttacht]
+################################################################################
+# Ressources:
+#   http://synflood.at/newsbeuter/newsbeuter.html
+################################################################################
+ 
+# Settings: {{{1
+# 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.
+  show-read-feeds yes
+
+# Enable reloading of feeds at startup and after a specific amount
+# of time.
+# auto-reload yes
+# The number of minutes between automatic reloads.
+# reload-time 30
+
+# If yes, then all feeds will be reloaded when newsbeuter starts up.
+# This is equivalent to the -r commandline option.
+# refresh-on-startup yes
+
+# If yes, then the first automatic reload will be suppressed if
+# auto-reload is set to yes.
+  suppress-first-reload yes
+
+# Set the number of articles to maximally keep per feed. If the
+# number is set to 0, then all articles are kept.
+  max-items 0
+
+# Set the browser command to use when opening an article in the
+# browser.
+  browser $BROWSER 
+# browser "screen -t nb_url 20 $BROWSER"
+
+# If set to a non-zero-length string, this value will be used as
+# HTTP User-Agent header for all HTTP requests.
+# user-agent ""
+
+# 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.
+# Warning: It may happen that commands, e.g. <show-urls>, do not
+# function porperly or at all when using another html-renderer than
+# `internal'.
+# html-renderer "w3m -dump -T text/html"
+  html-renderer "internal"
+
+# Proxy Settings: {{{2
+# If yes, then the configured proxy will be used for downloading the
+# RSS feeds.
+# use-proxy yes
+
+# Set the proxy to use for downloading RSS feeds.
+# proxy server:port
+# proxy localhost:8118
+
+# Set the proxy authentication string.
+# proxy-auth user:password
+# }}}2
+
+# The default path where articles shall be saved to. If an invalid
+# path is specified, the current directory is used.
+# save-path "~/newsbeuter/saved_articles/"
+
+# 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.
+# cleanup-on-quit yes
+
+# Sets the cache file. This is especially useful if the filesystem of
+# your home directory doesn't support proper locking 
+# (e.g. NFS).
+# cache-file "~/.newsbeuter/cache_grml.db"
+
+# 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).
+  datetime-format "%b %d"
+
+# If set, then user errors (e.g. errors regarding defunct RSS feeds)
+# will be logged to this file.
+# error-log "~/.newsbeuter/error_log"
+
+# If set, the configured command will be used as bookmark plugin.
+# Please refer to the documentation for further information on
+# bookmark plugins.
+# bookmark-cmd ""
+
+# Send a privacy message to the terminal. Especially useful within
+# GNU/screen.
+# Look for notify-program and notify-xterm as well.
+  notify-screen yes
+
+# Set the xterm window title to a notification message about new
+# articles.
+  notify-xterm yes
+
+# If set to yes, then newsbeuter will ask for confirmation whether
+# the user really wants to quit newsbeuter.
+  confirm-exit yes
+
+# Colors: {{{1
+  include ~/.newsbeuter/colors
+
+# Keybindings: {{{1
+# unbind-key   q
+  bind-key     b     quit
+  bind-key     j     down
+  bind-key     k     up
+# bind-key     F1    help
+  bind-key     RIGHT open
+# bind-key     LEFT  quit
+
+# Filter: {{{1
+  include ~/.newsbeuter/filter
+
+# Killfile: {{{1
+# include ~/.newsbeuter/killfile
+  
+# Bloglines & OPML Support: {{{1
+# This configuration command sets the source where URLs shall be
+# retrieved from. By default, this is ~/.newsbeuter/urls.
+# Alternatively, you can set it to "bloglines", which enables
+# newsbeuter's Bloglines synchronization mode, or to "opml", which
+# enables newsbeuter's OPML online subscription mode.
+  urls-source "local"
+# urls-source "bloglines"
+
+# Set the Bloglines username and password. This is necessary for the
+# Bloglines synchronization mode.
+# bloglines-auth "<user>:<password>"
+
+# If set to yes, it will mark all articles that are downloaded from
+# Bloglines as read.
+# bloglines-mark-read no
+
+# If the OPML online subscription mode is enabled, then the list of
+# feeds will be taken from the OPML file found on this location.
+# opml-url ""
+
+# Podcast Support -- Podbeuter: {{{1
+# If yes, then all podcast URLs that are found in articles are added
+# to the podcast download queue. See below for more information on
+# podcast support in newsbeuter.
+# podcast-auto-enqueue yes
+
+# Specifies the directory where podbeuter shall download the files
+# to.
+# download-path "~/.newsbeuter/podcasts/"
+
+# Specifies the maximum number of parallel downloads when automatic
+# download is enabled.
+# max-downloads 3
+
+# Specifies the player that shall be used for playback of downloaded
+# files.
+# MPlayer plays just everything. (o;
+  player "mplayer"
+# player "mplayer -vo fbdev -fs -zoom -xy 1.5 1>/dev/null"
+# }}}1
+ 
+## END OF FILE ##################################################################

