You are not logged in.
Taters wrote:Remember to get darcs version along with the contrib package. I had to compile the darcs version myself because switching between the binary packages seems to cause some issues.
Already have darcs version Any chance of getting your .xmobarrc?
Config { font = "-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*"
, bgColor = "#262729"
, fgColor = "#a0a0a0"
, position = Top
, lowerOnStart = True
, commands = [ Run Date "%A, %d %b %Y <fc=#cd5c5c>%H:%M:%S</fc>" "date" 10
, Run Com "skb" ["-1"] "kb" 10
, Run StdinReader
, Run Com "mpc | grep -" [] "mpd" 10
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% }{<fc=#cd5c5c>%mpd%</fc> %date% "
}
Have fun.
Offline
Have fun.
Thank you
Offline
Offline
http://h.imagehost.org/t/0607/snapshot.jpg http://h.imagehost.org/t/0258/snapshot1.jpg
its been long since i've posted a shot!
kde 4.3 goodness!
Excellent Kstyle and color scheme ! Can you share these with us ?
Offline
Pekwm, midori, urxvt, ncmpcpp, conky with albumart
Pekwm : Elfin2
GTK : Ljuda Striped
Icons : gnome-brave
Font : Profont
Wallpaper : Sugar Lake Rainbow
Can you post your conky albumart script in a more copy/paste friendly format? I'm having trouble getting it to work and want to see if I'm missing something obvious.
Thanks
Offline
Dead Code wrote:http://h.imagehost.org/t/0607/snapshot.jpg http://h.imagehost.org/t/0258/snapshot1.jpg
its been long since i've posted a shot!
kde 4.3 goodness!
Excellent Kstyle and color scheme ! Can you share these with us ?
thanks..
Color scheme: Gaia
Desktop theme (Plasma): Gaia Recycled
All can be fetched from kde-look
Offline
My first arch screenshots:
Yeah, maybe some details.
It's fluxbox with theme called Royalty. GTK is Vorta with Tango/Gnome icons. Icons on the desktop + "dock" from rox-filer. Conkies and buttons appear at the top when mpd is playing.
Last edited by spupy (2009-08-15 23:41:22)
There are two types of people in this world - those who can count to 10 by using their fingers, and those who can count to 1023.
Offline
Still monkeying around with OpenBSD 4.5 on Amd64. Shown are Evilwm, Xcompmgr, and Two Xterms. No wallpaper.
One thing I take for granted is how many binaries packages Arch has. OpenBSD doesn't happen to have a package for Moc, so I had to compile it myself. Luckily, I got it to work. And since OpenBSD's Xterm defaults to TERM=xterm or not xterm-color, I accidently discovered I prefer Moc in B&W.
Tomorrow I am going to slick the hard drive and test the new Arch installer!
Offline
Offline
Offline
Great shot. Rox-filer looks great here (but I can't get used to it myself... maybe I give one more chance).
Offline
My first arch screenshots:
http://omploader.org/vMjVyNQ/00_small.pngClean
http://omploader.org/vMjVyZQ/01_small.pngBusyYeah, maybe some details.
It's fluxbox with theme called Royalty. GTK is Vorta with Tango/Gnome icons. Icons on the desktop + "dock" from rox-filer. Conkies and buttons appear at the top when mpd is playing.
Looks great, nice work.
Offline
Can you post your conky albumart script in a more copy/paste friendly format? I'm having trouble getting it to work and want to see if I'm missing something obvious.
Thanks
I've added some modifications. Now it saves the image (by default in ~/.covers) so you don't need to download it again later.
#!/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)
Save the image to display when there is no cover as ~/.covers/nocover.png
I use this :
.conkyrc :
imlib_cache_size 0
alignment bl
background yes
border_margin 10
border_width 0
cpu_avg_samples 2
default_color white
default_outline_color white
default_shade_color black
double_buffer yes
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
use_xft yes
xftfont Monospace:size=8
gap_x 10
gap_y 85
maximum_width 300
minimum_size 300 100
net_avg_samples 2
no_buffers yes
out_to_console no
out_to_stderr no
own_window yes
own_window_class Conky
own_window_type desktop
own_window_transparent true
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
stippled_borders 0
update_interval 1.0
uppercase no
use_spacer none
show_graph_scale no
show_graph_range no
TEXT
${scroll 36 5 ${mpd_artist} }
${scroll 36 5 ${mpd_title} }
${scroll 36 5 ${mpd_album} }
${mpd_status} $alignr ${mpd_percent}%
${mpd_bar}
${execi 5 mpd-cover}
${image /tmp/cover -s 75x75}
Do not forget to add imlib_cache_size 0 in .conkyrc
Last edited by slumslayer (2009-08-16 11:15:18)
Offline
KDEmod 4.3
yeah ! cult of luna
Archlinux x86_64 | post-engineering | last.fm
Offline
way cool WP. Is that actually a snapshot showing frequency of usage, or is it just supposed to be loosely representative of some connections between programs? nice conky, too.
Offline
Mountainjew wrote:KDEmod 4.3
yeah ! cult of luna
Nice Jakob avatar
Offline
way cool WP. Is that actually a snapshot showing frequency of usage, or is it just supposed to be loosely representative of some connections between programs? nice conky, too.
Looks like pacgraph, a community program to show a visual of which programs you have installed, and their dependencies.
Last edited by Mountainjew (2009-08-16 12:23:04)
Offline
geoisis wrote:Mountainjew wrote:KDEmod 4.3
yeah ! cult of luna
Nice Jakob avatar
thanx, check out my blog i think it might interest you
Archlinux x86_64 | post-engineering | last.fm
Offline
Mountainjew wrote:geoisis wrote:yeah ! cult of luna
Nice Jakob avatar
thanx, check out my blog i think it might interest you
Awesome, loads of bands i don't know on there
Offline