デスクトップに最新のブログ投稿を表示するアプリケーション

デスクトップに最新のブログ投稿を表示するアプリケーション

RSSフィードをデスクトップに直接配置できるLinuxアプリケーションはありますか?私は多くのスタンドアロンプ​​ログラムを見ましたが、デスクトップの隅に常に最新のnエントリ(デスクトップアプレットなど)を表示するウィンドウがあります。

私はLinux MintとKDEを使用しています。

ベストアンサー1

あなたはそれを使用することができますconkyRSSフィードをデスクトップに直接表示します。例は次のとおりです。

# --- Window Layout & Options --- #
#background yes
own_window yes
own_window_colour brown
own_window_transparent yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
use_spacer right
use_xft yes
alignment middle_middle
gap_x 20
gap_y 60

# --- Colours, Sizes, Fonts & Margins --- #
update_interval 2.0
maximum_width 300
stippled_borders 3
border_margin 9
border_width 10
default_color grey

# --- Text --- #
draw_outline no
draw_borders no
font Monospace:size=8:weight=bold
uppercase no
draw_shades yes

TEXT
${font}The Pirate Bay - Blog${hr 2}
${font}${rss http://rss.thepiratebay.se/blog 1 item_titles 10}

${font}Linux Outlaws Podcast${hr 2}
${font}${rss http://feeds.feedburner.com/linuxoutlaws-ogg 1 item_titles 10}

${font}ArchLinux News Feed${hr 2}
${font}${rss http://www.archlinux.org/feeds/news/ 1 item_titles 10}

${font}ArchLinux Repo Updates${hr 2}

上記の内容をファイル名に入れて、$HOME/.conky/conky_rss.conf次のように実行します。

$ conky -c $HOME/.conky/conky_rss.conf

これにより、上記のRSSフィードが私のデスクトップに次のように表示されます。

                        コンキ RSS SS

conkyそれよりはるかに多くのことができます。そのウェブサイトで例を確認してください。

おすすめ記事