Προς το περιεχόμενο

Our Linux Desktop Screenshots


Προτεινόμενες αναρτήσεις

  • Απαντ. 3,9k
  • Δημ.
  • Τελ. απάντηση

Συχνή συμμετοχή στο θέμα

Δημοσ.

 

lol

 

Ναι, ξεχασα να πω οτι ειναι πειραματισμοι με το look, οντας νεος στο ubuntu. :P

Εχω νεο αλλα θα το ανεβασω σε λιγο (pc πιασμενο απο τη γυναικα να παιζει mame atm).

 

Edit:

 

Ετοιμα και τα νεα screenshots (πρεπει να ειναι καπως καλυτερα τωρα, ή πως σας φαινονται?).

 

Screenshot-1-1.png

 

 

 

Screenshot-3.png

 

 

Ποια τα icnos που χρησιμοποιείς?

Δημοσ.

conky

 

 

>TEXT
${color1 #5b6dad}Eortologio: ${color2 #7f8ed3}${rss http://www.eortologio.gr/rss/si_el.xml 60 item_titles 1}

${color1 #5b6dad}Troktiko:
${color2 #7f8ed3}${execi 300 /home/johny/.conkycolors/bin/conky-rss.sh http://troktiko.blogspot.com/feeds/posts/default?alt=rss 5 2}

${color1 #5b6dad}Insomnia:
${color2 #7f8ed3}${execi 300 /home/johny/.conkycolors/bin/conky-rss.sh http://feeds.feedburner.com/grinsomnia-63 5 2}

${color1 #5b6dad}Gazzetta:
${color2 #7f8ed3}${execi 300 /home/johny/.conkycolors/bin/conky-rss.sh http://feeds.feedburner.com/Gazzettagr/main 10 2}

 

 

 

script

 

 

>#!/bin/bash
# RSS Display Script by Bill Woodford ([email protected]) v1.0
#
# This script is designed to output story titles for most any RSS Feed.
#
# This script depends on curl.  Please ensure it is installed and in your $PATH
# Gentoo: emerge -av net-misc/curl
# Debian: apt-get install curl
# Homepage: http://curl.haxx.se/
#
# Usage:
# .conkyrc:	${execi [time] /path/to/script/conky-rss.sh URI LINES TITLENUM}
#	URI = Location of feed, ex. http://www.gentoo.org/rdf/en/glsa-index.rdf
#	LINES = How many titles to display (default 5)
#	TITLENUM = How many times the title of the feed itself is specified, usually 1 or 2 (default 2)
#
# Usage Example		
#		${execi 300 /home/youruser/scripts/conky-rss.sh http://www.foxnews.com/xmlfeed/rss/0,4313,1,00.rss 4 2}

#RSS Setup - Don't change unless you want these values hard-coded!
uri=$1							#URI of RSS Feed
lines=$2						#Number of headlines
titlenum=$3						#Number of extra titles

#Script start
#Require a uri, as a minimum
if [[ "$uri" == "" ]]; then
echo "No URI specified, cannot continue!" >&2
echo "Please read script for more information" >&2
else
#Set defaults if none specified
if [[ $lines == "" ]]; then lines=5 ; fi
if [[ $titlenum == "" ]]; then titlenum=2 ; fi

#The actual work
curl -s --connect-timeout 30 $uri |\
sed -e 's/<\/title>/\n/g' |\
grep -o '<title>.*' |\
sed -e 's/<title>//' |\
head -n $(($lines + $titlenum)) |\
tail -n $(($lines))
fi

 

Επισκέπτης
Αυτό το θέμα είναι πλέον κλειστό για περαιτέρω απαντήσεις.

  • Δημιουργία νέου...