201

Re: February 2010 Screenshot thread

http://omploader.org/tM2s0bg

I blog too much....       geek stuff LinuxMintDebian | linux noob stuff LinuxMintNoob | spiritual stuff Daily Cup of Tao

Re: February 2010 Screenshot thread

http://omploader.org/tM2s0dA

A new one of #! on my Desktop (see sig for specs).

[Acer Aspire One ZG5|Intel Atom N270|1GB RAM|8GB SSD|Intel Integrated Graphics|#! 9.04]
[Custom Desktop|Intel C2D E8400|2GB RAM|80GB & 250GB HDD|NVIDIA GeForce GT220|Win7Pro|#! 9.04]
[last.fm|deviantART|Bloodstar Studios]

Re: February 2010 Screenshot thread

@weakhead
Very, very nice!!

@mick
Sorry, forgot to mention that you could just add the commands to the end of your .bashrc, as pvsage mentioned (you need to install fortune first, though)

@tawan
Nice, as always.
Mind sharing the wallpaper?


Same ol, same old....
http://img638.imageshack.us/img638/7514/201002151036151024x600s.png

Point & Squirt

Re: February 2010 Screenshot thread

It's been a while since I contributed to these threads. Once i get my new laptop, I shall be using linux often again, not just in VMs, so expect more later. Until then, here is the VM i've been using, its mainly just for programming (hence why the only things I have on adeskbar are firefox, geany, and term)
http://omploader.org/tM2s1ZQ

Also, to avoid confusion, thats a very minimal tint2 on the top left, and adeskbar in the center.

just call me...
~FSM~

Re: February 2010 Screenshot thread

The discussion that was here regarding copyright, can now be found here http://crunchbanglinux.org/forums/topic … iscussion/

smile

206

Re: February 2010 Screenshot thread

No interest in copyright debates even though the thread is labeled as started by me smile

here is an image I took from a site where people share images and a conky that I made. I used an image in the conky that was shared on another site. I used a GTK that was shared elsewhere and I made the openbox theme from a theme shared elsewhere. My system uses many many parts all shared from other places. I did not pay a penny. The laptop is my wife's old one and is all I have.

http://omploader.org/tM2s4aQ

EDIT: well the above blue 'glass' attempt is a fail I think and I'm preferring the original look...

http://omploader.org/tM2s4cA

..so bit of a wasted post here, oh well.

Last edited by tawan (2010-02-15 13:08:19)

I blog too much....       geek stuff LinuxMintDebian | linux noob stuff LinuxMintNoob | spiritual stuff Daily Cup of Tao

Re: February 2010 Screenshot thread

Just a new wallpaper...
http://omploader.org/tM2tiaA

Last edited by Zwopper (2010-02-15 17:20:14)

My artwork at deviantART   |    My Tweet   | My upcoming web page
Nulla dies sine GIMP!
ASUS Eee PC 1000 HE | 2GB | 120GB OCZ Vertex 2 SSD | #! Statler

208

Re: February 2010 Screenshot thread

http://omploader.org/tM2toZA

Been messing about learning lua and making this frame for conky, seems to have turned out ok but everything needs to be hacked to fit in (ie tint2 and a load of gotos for the text).
Just  need to find things to put on the other two sides now, and if im really board make it so the curved corners adjust when my terminal drops down smile

- - - - - - - - Wiki Pages - - - - - - -
#! install guide           *autostart programs, modify the menu & keybindings
configuring Conky       *installing scripts

Re: February 2010 Screenshot thread

benj1 wrote:

http://omploader.org/tM2toZA

Been messing about learning lua and making this frame for conky, seems to have turned out ok but everything needs to be hacked to fit in (ie tint2 and a load of gotos for the text).
Just  need to find things to put on the other two sides now, and if im really board make it so the curved corners adjust when my terminal drops down smile

pretty smile
is that one big conky window? or a conky for each side?

It's hard to find something if you don't know what you're looking for.
I have a blog, it's mostly about conky and lua stuff... go here.

Re: February 2010 Screenshot thread

@benj1
Really cool destination, but sounds like a painful/tiring journey.
I really admire the patience of all you Conky tuners.


Away from home right now, so just reusing old wallpapers
http://img197.imageshack.us/img197/6471/201002160335571024x600s.png

Point & Squirt

Re: February 2010 Screenshot thread

A big update smile

http://img269.imageshack.us/img269/4750/201002161315501366x768s.th.png
http://img687.imageshack.us/img687/6136/201002161310581366x768s.th.png

firefox // nautilus elementary // tint2 // pypanel

Re: February 2010 Screenshot thread

@kmason

Very nice screenshot homes!!

213

Re: February 2010 Screenshot thread

mrpeachy wrote:

pretty smile
is that one big conky window? or a conky for each side?

yeah can't make up my mind whether its a nice spring time scene or just girly, 'pretty' suggests to me girly.

its just one big window, but i W-space anyway, heres the code:

--[[
was originally a script by londonali1010 (2009)
although almost completely rewritten by me, Ben Holroyd
 
This script draws a background to the Conky window. It covers the whole of the Conky window, but you can specify rounded corners, if you wish.
 
To call this script in Conky, use (assuming you have saved this script to ~/scripts/):
    lua_load ~/scripts/draw_bg.lua
    lua_draw_hook_pre draw_bg
 
]]

--size of corners
CORNER=60
-- thickness of frame (left, right, top, bottom)
L_THICK = 40  
R_THICK = 180
B_THICK = 35
T_THICK = 20

-- Set the colour and transparency (alpha) of your background.
bg_colour=0x000000
bg_alpha=0.2
 
require 'cairo'
function rgb_to_r_g_b(colour,alpha)
    return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end
 
function conky_draw_bg()
    if conky_window==nil then return end
    local w=conky_window.width
    local h=conky_window.height
    local cs=cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, w, h)
    cr=cairo_create(cs)

        -- outer edge
        cairo_move_to(cr,0,0)
    cairo_line_to(cr,w,0)
    cairo_line_to(cr,w,h)
    cairo_line_to(cr,0,h)
    cairo_line_to(cr,0,0)
    cairo_close_path(cr)
        
    -- inner edge 
        cairo_move_to(cr,L_THICK,T_THICK)
    
    cairo_line_to(cr,L_THICK,(h-B_THICK)-CORNER) --bottom left
    -- cairo_curve_to(cr,width (at corner point),height,width(& corner angle)going in,height,width exiting curve, height)
        cairo_curve_to(cr,L_THICK,h-B_THICK,L_THICK+CORNER,h-B_THICK,L_THICK+CORNER,h-B_THICK)
    
    cairo_line_to(cr,(w-R_THICK)-CORNER,h-B_THICK) --bottom right
        cairo_curve_to(cr,w-R_THICK,h-B_THICK,w-R_THICK,(h-B_THICK)-CORNER,w-R_THICK,(h-B_THICK)-CORNER) --
    
    cairo_line_to(cr,w-R_THICK,T_THICK+CORNER) --top right
        cairo_curve_to(cr,w-R_THICK,T_THICK,(w-R_THICK)-CORNER,T_THICK,(w-R_THICK)-CORNER,T_THICK) --
    
    cairo_line_to(cr,L_THICK+CORNER,T_THICK) --top left
        cairo_curve_to(cr,L_THICK,T_THICK,L_THICK,T_THICK+CORNER,L_THICK,T_THICK+CORNER)
    cairo_close_path(cr)
    
    cairo_set_source_rgba(cr,rgb_to_r_g_b(bg_colour,bg_alpha))
    cairo_fill(cr)
    draw_clock(w,h,cr)
end

@ gutterslob
was too bad actually, considering ive never used lua before, or cairo. its just the final bits and bobs like the settings that seem to change when you restart the computer, grr.

- - - - - - - - Wiki Pages - - - - - - -
#! install guide           *autostart programs, modify the menu & keybindings
configuring Conky       *installing scripts

Re: February 2010 Screenshot thread

benj1 wrote:
mrpeachy wrote:

pretty smile
is that one big conky window? or a conky for each side?

yeah can't make up my mind whether its a nice spring time scene or just girly, 'pretty' suggests to me girly.

its just one big window, but i W-space anyway, heres the code:

I don't think pretty necessarily means girly... just pleasing to the eye.  If you like something, go with it smile

It's hard to find something if you don't know what you're looking for.
I have a blog, it's mostly about conky and lua stuff... go here.

Re: February 2010 Screenshot thread

p0rksh3d wrote:

@kmason

Very nice screenshot homes!!

Thanks!  I actually have several wallpapers on rotation, one made by me (see my thread in this forum), and the rest from http://customize.org.

The other parts, I can offer configs for, if wanted. wink  The .bashrc uses the hostname for the figlet on the top, so it changes dynamically from computer to computer.

Last edited by kmason (2010-02-16 17:31:06)

[Acer Aspire One ZG5|Intel Atom N270|1GB RAM|8GB SSD|Intel Integrated Graphics|#! 9.04]
[Custom Desktop|Intel C2D E8400|2GB RAM|80GB & 250GB HDD|NVIDIA GeForce GT220|Win7Pro|#! 9.04]
[last.fm|deviantART|Bloodstar Studios]

Re: February 2010 Screenshot thread

http://img138.imageshack.us/img138/9834/screenshotpz.th.png

debian testing - #! style

Re: February 2010 Screenshot thread

My newly installed CrunchBanged Debian Testing.

Clean:
http://i1021.photobucket.com/albums/af339/dvanvessem/Linux/th_desktop_clean_feb16_2010.png

With other apps:
http://i1021.photobucket.com/albums/af339/dvanvessem/Linux/th_desktop_withwindows_feb16_2010.png

Re: February 2010 Screenshot thread

niraj2709 wrote:

http://img138.imageshack.us/img138/9834/screenshotpz.th.png

debian testing - #! style

Nice to see that wallpaper getting some use. smile

My artwork at deviantART   |    My Tweet   | My upcoming web page
Nulla dies sine GIMP!
ASUS Eee PC 1000 HE | 2GB | 120GB OCZ Vertex 2 SSD | #! Statler

Re: February 2010 Screenshot thread

i usually download wallpapers from your( zwopper) collection.
you are a great artist !! keep it up !!
you might not remember but i can never forget that you were the one who advised me to use linux mint 6 xfce (about 1.5 years ago...)
and then i started rolling from gnome to xfce to lxde and now to openbox.....ha ha !
thanks a lot for your contribution to this world of opensource
you are certainly an inspiration.

220

Re: February 2010 Screenshot thread

http://omploader.org/tM2t1cQ

back to this old fave wallpaper

I blog too much....       geek stuff LinuxMintDebian | linux noob stuff LinuxMintNoob | spiritual stuff Daily Cup of Tao

Re: February 2010 Screenshot thread

@ niraj2709

I like it!

"Old-school" look - with all those desktop icons wink

Re: February 2010 Screenshot thread

Undarl wrote:

My newly installed CrunchBanged Debian Testing.

Clean:
http://i1021.photobucket.com/albums/af339/dvanvessem/Linux/th_desktop_clean_feb16_2010.png

With other apps:
http://i1021.photobucket.com/albums/af339/dvanvessem/Linux/th_desktop_withwindows_feb16_2010.png

Seems to be a growing number of Debian Testing desktops. A great choice for a Crunchbang style setup big_smile

Re: February 2010 Screenshot thread

@ omns

It s your fault ;-)

We admire you so much that we all want to try Debian testing also ;-)

Adrien

224

Re: February 2010 Screenshot thread

omns wrote:

Seems to be a growing number of Debian Testing desktops. A great choice for a Crunchbang style setup big_smile

I'm on Debian too (was Sid and now Sid/Squeeze) and I took a great amount from the work of corenominal, probably the entire inspiration was from #!. It was fellow user Slipshot who put me onto the Debian base idea.

Now though I'm wondering about a new base... Wonder what?

Erm, as I seem to be off-topic here, I'll just say - "hey, great work on the customizing everyone!"

Oh, Debian...

http://omploader.org/tM2t5eg

I blog too much....       geek stuff LinuxMintDebian | linux noob stuff LinuxMintNoob | spiritual stuff Daily Cup of Tao

Re: February 2010 Screenshot thread

omns wrote:

Seems to be a growing number of Debian Testing desktops. A great choice for a Crunchbang style setup big_smile

Ho yes ...

http://pix.toile-libre.org/upload/thumb/1266402610.jpg


You can see 2 photos on my screenshoots : "Photo-random.py" and "Banshee-cover.py", some great scripts made by ADcomp, thanks to him smile

wink