Kako izgleda vaš desktop

Vijesti, rasprave, pitanja i savjeti o grafičkim okruženjima te upraviteljima prozora.

Moderator/ica: Moderatori/ce

Avatar
sumski
Moderator
Postovi: 1779
Pridružen/a: 10 ruj 2010, 11:20
Spol: M
OS: openSUSE Factory KDE

Re: Kako izgleda vaš desktop

Post Postao/la sumski »

Hvala! Lud mi je wallpaper
Listen, I gotta fight the lion. That's what that guy Scott's all about. I know. I've studied him already.
Avatar
simke
Postovi: 1410
Pridružen/a: 31 sij 2009, 23:37
OS: arch | 7
Lokacija: rijeka
Kontakt:

Re: Kako izgleda vaš desktop

Post Postao/la simke »

slika
I'm a Paladin with 18 charisma and 97 hit points. I can use my helm of disintegration and do one D4 damage as my half-elf mage wields his plus-five holy avenger.
Avatar
Hugo
Postovi: 2451
Pridružen/a: 28 vel 2010, 18:13
Spol: M
OS: Linux
Lokacija: Đubrovnik
Kontakt:

Re: Kako izgleda vaš desktop

Post Postao/la Hugo »

simke je napisao/la:slika
Može conkyrc? :)
One definition of the word mean is "small." Mean people live small, think small, and feel small—the smaller, the meaner.
Avatar
simke
Postovi: 1410
Pridružen/a: 31 sij 2009, 23:37
OS: arch | 7
Lokacija: rijeka
Kontakt:

Re: Kako izgleda vaš desktop

Post Postao/la simke »

Hugo je napisao/la:
simke je napisao/la:slika
Može conkyrc? :)
a može, al smrčoi sam s offsetom, i slike su pozicionirane


kombinacija ovo i još jednog, neznam sad, odavde uzmi fontove i gmail
http://www.ubuntu-inside.me/2009/05/how ... aunty.html



conkyrc

Kod: Označi sve

use_xft yes
xftfont verdana:size=8
alignment top_right
xftalpha 0.8
own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
stippled_borders 10
border_margin 4
border_width 1
default_shade_color grey
default_outline_color black
default_color BADCDD
use_spacer none
no_buffers yes
uppercase no 
color1 F8DF58 


TEXT


   ${voffset 550}${color C2E078}${font PizzaDude Bullets:size=16}J${font}   $mem / $memmax
   ${font StyleBats:size=18}P${font}  Work:  ${uptime_short}



${goto 200}${voffset -80}${font Radio Space:size=14}${time %A %d %Y}
      ${goto 180}${voffset }${font Radio Space:size=45}${time %H:%M}

${goto 17}${voffset -150}${color F8DF58}${font FreeSans:size=16}@${font}${execpi 300 python ~/scripts/gmail_parser.py gmail@gmail.com  pass 3}

${voffset -720}${font Radio Space:size=14}${execpi 600 conkyForecast --location=HRXX0006 --template=~/scripts/.temple}
.temple

Kod: Označi sve

${font verdana:size=8}${color}
   Pressure: ${goto 155}[--datatype=BR]
   Visibility: ${goto 155}[--datatype=VI]
   Time Until Sunrise:  ${goto 155}[--datatype=DL]
#   Fasi lunari: ${goto 155}[--datatype=MP]
   Humidity: ${goto 155}[--datatype=HM]
   Wind: ${goto 155}[--hideunits --datatype=WS] km/h [--hideunits --datatype=WD]
   Chance of Precip:${goto 155}[--datatype=PC --startday=0]
   City:${goto 155}[--location=HRXX0006 --datatype=CN]${color}${font}

${voffset 100}${image [--datatype=MI] -p 255,0 -s 90x90}${font}
${voffset -150}${goto 245}${font Weather:size=28}y${font}  ${voffset -20}${font Hawaii Lover:size=26}[--hideunits --hidedegreesymbol --datatype=HT] C ${font verdana:size=8}${color}

${goto 15}[--datatype=DW --startday=1]${goto 150}[--datatype=DW --startday=2]${goto 300}[--datatype=DW --startday=3]
${goto 15}[--startday=1 --hideunits --hidedegreesymbol --datatype=HT]C/[--startday=1 --hideunits --hidedegreesymbol --datatype=LT]C${goto 150}[--startday=2 --hideunits --hidedegreesymbol --datatype=HT]C/[--startday=2 --hideunits --hidedegreesymbol --datatype=LT]C${goto 310}[--startday=3 --hideunits --hidedegreesymbol --datatype=HT]C/[--startday=3 --hideunits --hidedegreesymbol --datatype=LT]C
${voffset -100}${image [--datatype=WI --startday=1] -p 10,140-s 80x80}${image [--datatype=WI --startday=2] -p 138,140 -s 80x80}${image [--datatype=WI --startday=3] -p 290,140 -s 80x80}${font}
gmail_parser.py

Kod: Označi sve

## check-gmail.py -- A command line util to check GMail -*- Python -*-
## modified to display mailbox summary for conky

# ======================================================================
# Copyright (C) 2006 Baishampayan Ghose <b.ghose@ubuntu.com>
# Modified 2008 Hunter Loftis <hbloftis@uncc.edu>
# Time-stamp: Mon Jul 31, 2006 20:45+0530
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
# ======================================================================

import sys
import urllib             # For BasicHTTPAuthentication
import feedparser         # For parsing the feed
from textwrap import wrap

_URL = "https://mail.google.com/gmail/feed/atom"

uname = sys.argv[1]
password = sys.argv[2]
maxlen = sys.argv[3]

urllib.FancyURLopener.prompt_user_passwd = lambda self, host, realm: (uname, password)
	
def auth():
    '''The method to do HTTPBasicAuthentication'''
    opener = urllib.FancyURLopener()
    f = opener.open(_URL)
    feed = f.read()
    return feed


def readmail(feed, maxlen):
	'''Parse the Atom feed and print a summary'''
	atom = feedparser.parse(feed)
	print '${color1} %s new email(s)\n' % (len(atom.entries))
	for i in range(min(len(atom.entries), maxlen)):
		print '          ${color2}%s' % atom.entries[i].title
#uncomment the following line if you want to show the name of the sender
#		print '          ${color2}%s' % atom.entries[i].author
	if len(atom.entries) > maxlen:
		print ' ${color}more...'

if __name__ == "__main__":
    f = auth()  # Do auth and then get the feed
    readmail(f, int(maxlen)) # Let the feed be chewed by feedparser
I'm a Paladin with 18 charisma and 97 hit points. I can use my helm of disintegration and do one D4 damage as my half-elf mage wields his plus-five holy avenger.
Avatar
Hugo
Postovi: 2451
Pridružen/a: 28 vel 2010, 18:13
Spol: M
OS: Linux
Lokacija: Đubrovnik
Kontakt:

Re: Kako izgleda vaš desktop

Post Postao/la Hugo »

simke je napisao/la: a može, al smrčoi sam s offsetom, i slike su pozicionirane

kombinacija ovo i još jednog, neznam sad, odavde uzmi fontove i gmail
http://www.ubuntu-inside.me/2009/05/how ... aunty.html
Hvala! :thumbs
One definition of the word mean is "small." Mean people live small, think small, and feel small—the smaller, the meaner.
Avatar
Markec
Postovi: 3865
Pridružen/a: 30 sij 2008, 14:55
Spol: M
OS: neodlučan
Lokacija: Croatia/Zagorje

Re: Kako izgleda vaš desktop

Post Postao/la Markec »

slika

Uploaded with ImageShack.us
Avatar
zole052
Postovi: 9952
Pridružen/a: 12 tra 2008, 22:45
Spol: M
OS: Manjaro/Endevour
Lokacija: Rijeka

Re: Kako izgleda vaš desktop

Post Postao/la zole052 »

slika
Nije teško biti toliko nesrećan da bi čovek počeo da pije. Ljude treba odvikavati od nesreće, a ne od alkohola. Nesreća je veći porok.
Lutherus

Re: Kako izgleda vaš desktop

Post Postao/la Lutherus »

zole052 je napisao/la:slika
ljepo,čisto,savršeno
Avatar
ams_tex
Postovi: 123
Pridružen/a: 08 pro 2008, 16:46
Spol: M
OS: Archlinux
Lokacija: Sesvete

Re: Kako izgleda vaš desktop

Post Postao/la ams_tex »

slika
\m/
Avatar
madone
Postovi: 1594
Pridružen/a: 09 srp 2008, 09:49
Spol: M
OS: Debian
Lokacija: Zagreb

Re: Kako izgleda vaš desktop

Post Postao/la madone »

Ko da za pentagon radiš :) :thumbs
Koji ti je to player u terminalu ?
Odgovori