You are not logged in.

#451 2009-08-21 01:42:32

RagePie
Member
From: USA
Registered: 2009-05-31
Posts: 51

Re: August 2009 Screenshots

tMjZ0NA

Fresh install of Arch 2009.08 x64; testing the new installer and playing with XFS. Shown: Evilwm, Xterm x2, Xcompmgr, Moc.

Offline

#452 2009-08-21 03:41:20

Taters
Member
From: Ohio
Registered: 2008-08-22
Posts: 53

Re: August 2009 Screenshots

Tweaked it a bit.

1250825780.png
1250825765.png

Out of curiosity, has anyone been able to make fadeInactive and xmobar to play nicely with each other? I'm having trouble getting them both to use the logHook...

Last edited by Taters (2009-08-21 03:42:42)

Offline

#453 2009-08-21 07:58:58

edma2
Member
Registered: 2009-08-20
Posts: 66

Re: August 2009 Screenshots

http://img198.imageshack.us/img198/1825 … hotacr.png

Last edited by edma2 (2009-08-21 07:59:43)

Offline

#454 2009-08-21 08:02:01

Barghest
Member
From: Hanau/Germany
Registered: 2008-01-03
Posts: 563

Re: August 2009 Screenshots

tlvb wrote:

http://solstorm.doesntexist.com/images/ … 9small.png
Wallpaper is plain black, for two reasons actually.
1) I have a tiling wm, so as soon an app is running it covers the whole screen.
2) I frequiently change between running only 1280x800, 1280x1024 and 2560x1024 and finding a wallpaper that I want that looks good on all these is somewhat difficult (and I like to create them myself too).

What vim scheme do you use?

Offline

#455 2009-08-21 08:26:27

echasslau
Member
Registered: 2007-09-21
Posts: 113

Re: August 2009 Screenshots

empty:
aug2009empty.th.png

busy:
aug2009busyd.th.png

Offline

#456 2009-08-21 10:29:51

flamelab
Member
From: Athens, Hellas (Greece)
Registered: 2007-12-26
Posts: 2,160

Re: August 2009 Screenshots

vlearner wrote:
flamelab wrote:
esters wrote:

@ flamelab

What font are you using in the menu bar ? : >

Trebuchet smile

Can I have your wallpaper flamelab, thanks a lot

I just tested gnome-shell yesterday and indeed it wasnt that great as i thought, it was freaking slow for some reason maybe because of my Intel graphic chipset, so i went back to my Xmonad

Here you are

http://img188.imageshack.us/img188/3215 … 920x12.png

Offline

#457 2009-08-21 13:41:19

kaliber
Member
Registered: 2009-08-21
Posts: 3

Re: August 2009 Screenshots

Nothing great, but works for me !

tMjZ3Ng


Wallpaper : Wallpaper by Ghost1227

ConkyRC, can be found in the Forums for conkeyrc..i just cannot remember which posting and rc i used for my Desktop.


Will try soon something lighter then Gnome. (any sugesstions, please IM me smile )

Last edited by kaliber (2009-08-21 13:47:24)

Offline

#458 2009-08-21 16:21:42

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: August 2009 Screenshots

slumslayer wrote:

I've added some modifications. Now it saves the image (by default in ~/.covers) so you don't need to download it again later. smile

#!/usr/bin/python

import os
import shutil
import commands
import urllib

def copycover(currentalbum, src, dest, defaultfile):
    searchstring = currentalbum.replace(" ", "+")
    if not os.path.exists(src):
        url = "http://www.albumart.org/index.php?srchkey=" + searchstring + "&itempage=1&newsearch=1&searchindex=Music"
        cover = urllib.urlopen(url).read()
        image = ""
        for line in cover.split("\n"):
            if "http://www.albumart.org/images/zoom-icon.jpg" in line:
                image = line.partition('src="')[2].partition('"')[0]
                break
        if image:
            urllib.urlretrieve(image, src)
    if os.path.exists(src):
        shutil.copy(src, dest)
    elif os.path.exists(defaultfile):
        shutil.copy(defaultfile, dest)
    else:
        print "Image not found!"

# Path where the images are saved
imgpath = os.getenv("HOME") + "/.covers/"

# image displayed when no image found
noimg = imgpath + "nocover.png"

# Cover displayed by conky
cover = "/tmp/cover"

# Name of current album
album = commands.getoutput("mpc --format %artist%+%album% | head -n 1")

# If tags are empty, use noimg.
if album == "":
    if os.path.exists(conkycover):
        os.remove(conkycover)
    if os.path.exists(noimg):
        shutil.copy(noimg, conkycover)
    else:
        print "Image not found!"
else:

    filename = imgpath + album + ".jpg"
    if os.path.exists("/tmp/nowplaying") and os.path.exists("/tmp/cover"):
        nowplaying = open("/tmp/nowplaying").read()
        if nowplaying == album:
            pass
        else:
            copycover(album, filename, cover, noimg)
            open("/tmp/nowplaying", "w").write(album)
    else:
        copycover(album, filename, cover, noimg)
        open("/tmp/nowplaying", "w").write(album)

Conky can display images now?! Wow! (I must be flagged out of date lol)

And here comes my bash version, if you don't mind. smile

#!/bin/bash
#make sure hold_dir and non_cvr exists.
hold_dir="$HOME/.covers"
none_cvr="$hold_dir/nocover.png"
disp_cvr="/tmp/conky.cover"
play_log="/tmp/mpd_playing.log"

function update_cover ()
{
currentalbum="$1" ; src="$2" ; dest="$disp_cvr" ; fallback="$none_cvr"
if [ "$currentalbum" == "EMPTYTAGSARECOOL"  ] ; then
    ln -sf "$fallback" "$dest"
elif [ -f "$src" ] ; then
    ln -sf "$src" "$dest"
else
    searchstring="${currentalbum// /+}"
    url="http://www.albumart.org/index.php?srchkey=${searchstring}&itempage=1&newsearch=1&searchindex=Music"
    #only gets the 1st cover, modify if you can't get no satisfaction
    cover_url=$( curl -s "$url" |
    awk -F'src=' '/zoom-icon.jpg/{print $2}' | cut -d\" -f2 | head -1 )
    if [ "$cover_url" != "" ] ; then
    src_name=$(basename "$src") ; src_dir=$(dirname "$src")
    cd "$src_dir" ; aria2c -q -o "$src_name" "$cover_url"
    fi
    [ -f "$src" ] && ln -sf "$src" "$dest" || ln -sf "$fallback" "$dest"
fi
}

touch "$play_log"
ln -s "$fallback" "$dest" 2>/dev/null

album=$( mpc --format %artist%+%album% | grep -v '^volume:' | head -1 )
filepath="$hold_dir/$album.jpg"
last=$( cat "$play_log" )

if [ "$album" != "$last" ] ; then
     if [ "$album" == "" ] ; then
         update_cover EMPTYTAGSARECOOL
     else
             update_cover "$album" "$filepath"
     fi
              echo "$album" > "$play_log"
fi

Edit: Made a mistake about aria2's -o option, works now.

Edit: Another cleaned up version, which grabs covers from last.fm

#!/bin/bash
#make sure hold_dir and non_cvr exists.
hold_dir="$HOME/.covers"
none_cvr="$hold_dir/nocover.png"
disp_cvr="/tmp/conky.cover"
play_log="/tmp/mpd_playing.log"

function update_cover ()
{
current="$1" ; src="$2" ; dest="$disp_cvr" ; fallback="$none_cvr"
if [ "$current" == ""  ] ; then
    ln -sf "$fallback" "$dest"
elif [ -f "$src" ] ; then
    ln -sf "$src" "$dest"
else
    artist=`echo "$current"|cut -d+ -f1|sed 's/ /+/g'`
    album=`echo "$current"|cut -d+ -f2|sed 's/ /+/g'`
    url="http://www.last.fm/music/${artist}/${album}"
    cover_url=$( curl -s "$url" |
    grep 'LFM.set("ParentResource"' | tr '"' '\n' | sed '/.*.jpg/!d;s/\\//g' | tail -1 )
    if [ "$cover_url" != "" ] ; then
    src_name=$(basename "$src") ; src_dir=$(dirname "$src")
    cd "$src_dir" ; aria2c -q -o "$src_name" "$cover_url"
    fi
    [ -f "$src" ] && ln -sf "$src" "$dest" || ln -sf "$fallback" "$dest"
fi
}

touch "$play_log"

current=$( mpc --format %artist%+%album% | grep -v '^volume:' | head -1 )
last=$( cat "$play_log" )

if [ "$current" != "$last" ] ; then
    filepath="$hold_dir/$current.jpg"
    update_cover "$current" "$filepath"
    echo "$current" > "$play_log"
fi

Last edited by lolilolicon (2009-08-27 04:27:22)


This silver ladybug at line 28...

Offline

#459 2009-08-21 16:51:29

bioe007
Member
Registered: 2007-11-12
Posts: 56

Re: August 2009 Screenshots

awesome-git, very cluttered: vim,firefox,mutt,mocp,twf,irssi,pcmanfm

200908210947171680x1850.th.png

Offline

#460 2009-08-22 00:07:42

vlearner
Member
Registered: 2009-03-16
Posts: 52

Re: August 2009 Screenshots

thanks a lot flamelab

My <3 xmonad

28_28_2009-08-20-040428_1366x768_scrot-thmb.png


I LOVE archlinux

Offline

#461 2009-08-22 14:05:52

Mountainjew
Member
From: Ireland
Registered: 2008-08-24
Posts: 405

Re: August 2009 Screenshots

Finally happy with mine now smile

tctvPl.jpg

Last edited by Mountainjew (2009-08-22 14:06:11)

Offline

#462 2009-08-22 15:02:22

djnm
Member
From: USA
Registered: 2008-12-21
Posts: 78

Re: August 2009 Screenshots

http://www.nmihalich.net/images/currentscreen.png
so I went back to dwm. I kept hitting my dwm shortcuts in KDE and realized I should never have left. wink
ncurses apps and keyboard control just work so much nicer with dwm on my laptop


br0tat0chip in #archlinux and on freenode

Offline

#463 2009-08-22 16:06:20

whordijk
Member
From: the Netherlands
Registered: 2008-12-12
Posts: 147
Website

Re: August 2009 Screenshots

screenthumb.png
dwm smile

Last edited by whordijk (2009-08-22 16:07:11)

Offline

#464 2009-08-22 17:20:56

LeoSolaris
Member
From: South Carolina
Registered: 2008-03-30
Posts: 354

Re: August 2009 Screenshots

heazky wrote:
karabaja4 wrote:

It's the -m flag in xcompmgr-dana:

 -m opacity
      Specifies the opacity for menus. (default 1.0)

It only works if you have fades enabled, so set fade steps to 1 (if you don't want fades):

xcompmgr -I1 -O1 -Ff -m.75 &

Aha, so that was the magic, thanks smile! Looks like it's not in the manpage, but it shows the option when doing a -h.

Thanks!   I have been wrapped up in a home improvement project (yay tile floor is done!)

Yes, xcompmgr-dana has a -m#.## option to make the menus transparent. (first # can only be a 1 or nonexistent)

Just make sure you do not set the -c flag, it will cause a bunch of havoc because it is default. It seems to set twice somehow...

I use -m.86 myself. The -m.85 was a little hard to see with my theme and background, and anything higher might as well have been not transparent IMO.

By the way, I got the help from a google search that turned up a Gentoo forum post. I am glad it helped someone else.

My apologies for not getting the proper flag use up with the post. I tried to make it as simple of a how-to in the original post as possible, and simply forgot that step.


I keep getting distracted from my webserver project...

huh? oooh...  shiny!

Offline

#465 2009-08-22 18:34:09

anubis2591
Member
Registered: 2008-07-06
Posts: 52
Website

Re: August 2009 Screenshots

gqK.png

A bit late but oh well. I'm lazy.

GTK: Mire v2 Gray by lyare.
OB: axonkolorish by me.
Wall: From Jthree Wallpack 2009 by j3concepts.

@Taters: Nice taste in music and wallpapers. ^_^

Edit: url not ur; >_>

Last edited by anubis2591 (2009-08-22 18:38:24)

Offline

#466 2009-08-22 18:58:31

Dead Code
Member
Registered: 2009-01-18
Posts: 227

Re: August 2009 Screenshots

kde 4.3
plasmoids running: gmail, yawp, system load, folder view, analog clock, disk & network monitor
wallpaper from zixpk.com
desktop theme: Ghost

snapshot.jpg snapshot1.jpg

Offline

#467 2009-08-22 19:02:30

capnmoney
Member
From: ~
Registered: 2008-10-17
Posts: 108
Website

Re: August 2009 Screenshots

anubis2591 wrote:

http://wimg.co.uk/gqK.png

A bit late but oh well. I'm lazy.

GTK: Mire v2 Gray by lyare.
OB: axonkolorish by me.
Wall: From Jthree Wallpack 2009 by j3concepts.

@Taters: Nice taste in music and wallpapers. ^_^

Edit: url not ur; >_>

What icons are those?  Also, that's a nice looking obtheme you've made there!

Offline

#468 2009-08-22 19:13:54

phisphere
Member
From: Tallinn, Estonia
Registered: 2007-03-05
Posts: 136
Website

Re: August 2009 Screenshots

5de64a80f2ca974f0d990298ada1e1d6.png

Last edited by phisphere (2009-08-22 19:14:14)

Offline

#469 2009-08-22 19:21:09

capnmoney
Member
From: ~
Registered: 2008-10-17
Posts: 108
Website

Re: August 2009 Screenshots

Is that clock done with conky?  Please share it!

Offline

#470 2009-08-22 19:25:09

phisphere
Member
From: Tallinn, Estonia
Registered: 2007-03-05
Posts: 136
Website

Re: August 2009 Screenshots

capnmoney wrote:

Is that clock done with conky?  Please share it!

yes it is. i got it from here: http://crunchbanglinux.org/forums/topic … -in-conky/

Offline

#471 2009-08-22 19:28:47

anubis2591
Member
Registered: 2008-07-06
Posts: 52
Website

Re: August 2009 Screenshots

capnmoney wrote:
anubis2591 wrote:

http://wimg.co.uk/gqK.png

A bit late but oh well. I'm lazy.

GTK: Mire v2 Gray by lyare.
OB: axonkolorish by me.
Wall: From Jthree Wallpack 2009 by j3concepts.

@Taters: Nice taste in music and wallpapers. ^_^

Edit: url not ur; >_>

What icons are those?  Also, that's a nice looking obtheme you've made there!

Icons are ALLGREY. And thanks, credit does go to the original axonkolor XP visual style though. I just made a close port.

Offline

#472 2009-08-22 19:31:14

koch
Member
From: Germany
Registered: 2008-01-26
Posts: 369

Re: August 2009 Screenshots

mind sharing your wallper? smile

Offline

#473 2009-08-22 19:39:26

phisphere
Member
From: Tallinn, Estonia
Registered: 2007-03-05
Posts: 136
Website

Re: August 2009 Screenshots

koch wrote:

mind sharing your wallper? smile

sure, here you are: http://pixelgirlpresents.com/images/des … n_1440.jpg

Offline

#474 2009-08-22 19:52:54

esquiso
Member
From: Oporto, Portugal
Registered: 2008-05-21
Posts: 15

Re: August 2009 Screenshots

6zlu8n.png

It's tint2 (running pidgin and transmission) + conky down there. The terminal is an urxvt runing screen (with a bash shell, irssi, ncmpc and htop).

Offline

#475 2009-08-22 20:02:31

DawiX
Member
From: Czech Republic
Registered: 2009-04-23
Posts: 92

Re: August 2009 Screenshots

Woohoo I never thought I would ever use leave my lovely tiling WMs, but tried KDE 4.3 and so far I like it. So here you go with my new screenshot.
5pbgKs.png

The wallpaper is artwork by David Lanham


xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz

Offline

Board footer

Powered by FluxBB