You are not logged in.
@rab
Nice wallpaper. Do you have a link?
Smarter than a speeding bullet
My Goodreads profile
Offline
Offline
Messing more with colors and some patches. Any good patches to check out? Right now I have bottom stack and push compiled in, which actually takes care of all the functionality i required, haha. But im a slave to tinkeritus :S
dirty:
clean:
Arch x86_64 - GitHub
Offline
I've been lazy and haven't really changed anything.
Can I please have your wallpaper?
Offline
Offline
You use conky to viev your cover of album?
Is your cover change automaticly with album change?
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
That thing about changing cover in conky was posted in August screenshots at page 15 I think
Offline
That thing about changing cover in conky was posted in August screenshots at page 15 I think
Thanks but I can't find it
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
Offline
@ Taters
I've been trying to figure out how to set the active workspace color in xmobar. Is that in .xmobarrc, and if so could we please see your .xmobarrc?
Offline
Thanks but I can't find it
Yes it changes. The info can be found in august thread in the beginning, and also in the conky thread I think. But for reference, its two files, one script and one conky config.
This is the script, the one I use at the moment that is.
#!/bin/bash
#Credit to B at arclinux.org for the modifications
#
# Script to use with conky to display cover art. You should modify
# the path to the directory containing the album art
# Put the album title into a variable so it's easier to use later on
mpd_album=$(mpc --format %artist%-%album%|head -1)
# Link the cover into /tmp so the conky cover instance can pick it up
# Make sure we don't relink all the time, it's a waste of CPU cycles
# and SSD memory cells
if [[ ! -f /tmp/"${mpd_album}".album ]] ; then
rm -f /tmp/*.album &>/dev/null
>/tmp/"${mpd_album}".album
ln -sf ~/.covers/"${mpd_album}".jpg ~/Temp/cover.jpg
fi
And this is what you put in conky:
${execi 5 ~/bin/cover.sh}
${image ~/Temp/cover.jpg -s 120x120}
Offline
@ Taters
I've been trying to figure out how to set the active workspace color in xmobar. Is that in .xmobarrc, and if so could we please see your .xmobarrc?
xmobar just reads stdin from xmonad, so any formatting comes from .xmonad.hs via your loghook,
something like:
import XMonad
import XMonad.Hooks.DynamicLog
main = do
x <- spawnPipe "xmobar"
xmonad $ defaultConfig
{ logHook = myLogHook x
, -- whatever else you have...
}
myLogHook h = dynamicLogWithPP $ defaultPP
{ ppCurrent = xmobarColor "foreground" "background" . pad
, ppOutput = hPutStrLn h
}
the docs have more info on how to color other stuff, etc.
//github/
Offline
tomd123 wrote:I've been lazy and haven't really changed anything.
Can I please have your wallpaper?
Offline
Do you have a link to your background? I really like it .
Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
Offline
Do you have a link to your background? I really like it .
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
His one has that chopped tree picture on it... I know about the wood wallpapers, I have some of them myself actually.
Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
Offline
His one has that chopped tree picture on it... I know about the wood wallpapers, I have some of them myself actually.
Well, you can combine the two actually... you can do it in GIMP probably before (s)he posts it
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
Just to show off my new qtcurve with global menu bar support
what is your qtcurve versio???
and what is your plasma-theme.
It's wonderful
Offline
Plasma theme is neon.
Qtcurve is the version from repository, but i rebuild it with this PKGBUILD:
# $Id: PKGBUILD,v 1.27 2008/07/14 01:07:10 Pierre Exp $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgname=qtcurve-kde4
pkgver=0.67.5
pkgrel=1
arch=('i686' 'x86_64')
groups=('qtcurve')
license='GPL'
pkgdesc='A configurable set of widget styles for KDE and Gtk'
source=("http://home.freeuk.com/cpdrummond/QtCurve-KDE4-${pkgver}.tar.bz2")
url='http://www.kde-look.org/content/show.php?content=40492'
makedepends=('cmake' 'automoc4')
depends=('kdebase-workspace>=4.2.98')
md5sums=('d5f84796ced9a00937a39e8c03e3d85e')
build() {
cd $srcdir
mkdir build
cd build
cmake ../QtCurve-KDE4-${pkgver} \
-DQTC_XBAR_SUPPORT=true \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$pkgdir install
}
The " -DQTC_XBAR_SUPPORT=true" is the important part.
He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.
Douglas Adams
Offline
@SpeedVin
Conky CD cover art: this is just one example
Offline
http://www.upload3r.com/serve/070909/1252337694.png
http://www.upload3r.com/serve/070909/1252337929.pngFixed my xmonad.hs and found a more fitting wallpaper.
Looks really nice. Where do you get/how do you use XMonad.Layout.Spacing? I googled a bit but didn't find much.
Arch x86_64 | XMonad
Offline
Just to show off my new qtcurve with global menu bar support
Is it or are some more informations already availabe somwhere?
Offline
Rasi wrote:Just to show off my new qtcurve with global menu bar support
Is it or are some more informations already availabe somwhere?
look above...
He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.
Douglas Adams
Offline