redgore wrote:

I can recommend Cowon players, the S9 which I own has support for fully free codecs, flac and ogg right out of the box. it also appears as a removable USB drive to linux. Their new player seems a bit odd mind, looks like a phone but without the internals to make it work as one.

Same for me, the perfect player. You just put your file in it through the filemanager and everything is ok.
For people liking the customisation you can change the interface appearance also big_smile

Happy birthday !

Dark Advice wrote:

This is pretty old, but still rather impressive.

http://www.dontclick.it/

Really impressive but I don't feel it practical... maybe just an habit big_smile

corenominal wrote:
Nicky wrote:

Why it can't work with Unetbootin to do the USB key ?

Honestly, I am not sure, I have not had time to look. Also, the dd method is fairly straightforward and just works, which has meant I have been less inclined to investigate the Unetbootin issues.

Ok, thanks. It is just that I am used to do with unetbootin, I will watch the straightforward method if it doesn't work big_smile
I will maybe try this last crunchbang as I feel that the last ubuntu netbook edition is quite slow... my first steps in linux for the true leet !

Why it can't work with Unetbootin to do the USB key ?

anonymous wrote:

Im surprised how high Windows usage is for a Linux forum.

When you surf on web from work you rarely have the choice of your OS big_smile

7

(39 replies, posted in CrunchBang Talk)

Ok big_smile

edit: In fact I am not under crunchbang now, but it seems that it is also on ubuntu repos (rev 0.9.7 if it is the last one)

8

(39 replies, posted in CrunchBang Talk)

Question about this new version of pcmanfm... when will it comes out ? Because I maybe don't find the information but it looks like nothing appends since a while.

richs-lxh wrote:

Nice work, thanks for creating a "petite maison" for the French Crunchbang users smile

PS: Crunch Bang = Croquer Coup on Google translate, sounds quite cool tongue

Sounds good but mean nothing tongue

I hope this will be the final yes smile

It also exist this to search on internet: http://www.yauba.com/

I didn't test it, so I don't know if it is good or not, but it seems to respect your privacy at least big_smile

You mean this ? : http://crunchbanglinux.org/forums/topic … r-systray/

Two clear hands of Fabiano on the second goal big_smile
They were better than Ivory coast anyway, but it was a tough match with a lot of hard contacts.

14

(9 replies, posted in Help & Support (Stable))

Scribus is a software dedicated to publishing. So you can create a book with it and export to PDF. The problem is that not so much printing shops accept it, but if you found one it would be ok.

qbrick wrote:

Bravo Australia, great fight!
Everybody knew, what a great team Australia has (think of AUS-ITA 4 yrs ago).

Yes they have a good fighting spirit, they could have win.

It will be hard for Australia at 10 against 11... wink

aaro wrote:
CrunchyFree wrote:

The U.S. got robbed on that game, they came strong and should've gotten the third goal. I'm upset.

Totally agree. There was no reason to invalidate the USA third goal. No off-side, no fault.
-
I liked Ghana and Ivory Coast. Hope they make to the next phase.
Big deceptions: Spain, France and England, but Spain and England have big possibilities to make it and they have the teams to do it. France needs a miracle.
Argentina has been the best team so far. We all knew they had the players but now they also have shown a great team game.
Brazil looked solid as usual but i'm worried about Kaka, not in his best moment. Hope he improves his performance in next games.
Favorite goal so far: Maicon's goal (Brazil) vs North Korea http://www.youtube.com/watch?v=JR18rYmMdYM

The only reason I see that Uruguay and Mexico don't do a 0-0 is that they fight for the first place to avoid Argentina in the next match. And even with this France need to win with a lot of goal.... I don't see how they could do it anyway big_smile

Let's see the second match of Spain before being deceptive but I agree these team are not as good as they should.

Zapadlo wrote:

Germany 0 : Serbia 1 - What the hell is going on this world cup?!
And Slovenia is trashing USA right now...

Another very sever red card hmm

I know he was not speaking about France, it is just that we are also near of the outdoor.

The problem is not the intension to make a fault. In the last 16.5m a fault mean a penalty and when it is made by the last defender it is a red card. Don't know why but it seems to be like this.

But I am surprise on the penalty yesterday against the France, I don't know why the defender didn't get the red if it is the rule. So maybe it is not so automatic big_smile

France is not in Africa neutral

Well, what a bad team (as far as we can call it a team) big_smile

Sector11 wrote:

I totally disagree with South Africa's goalkeeper getting a Yellow card - let alone a Red card.

He was doing his job, using his legs to try and cover the ball. If that was an "intentional" trip I'll eat my hat and yours!

I have seen some "what looked intentional" tripping that went unnoticed by the referees ... and they were looking just at it as I was.

OK, game over time now:  0-2 - 92:15

It is the rule. Maybe a bad rule but referee has to give it as the goalkeeper makes the fault and is the last defender.

But I agree it is too hard because a penalty is almost a sure goal so there is no need to give a red card if it is not a big fault as in this case.

22

(1,839 replies, posted in Tips, Tricks & Scripts)

slapfish wrote:
Nicky wrote:

Conky email can check directly your accounts without thunderbird running.
It is what I use on a eeepc to not have thunderbird running all the time for nothing.

can you share a line or two of code about that, please? big_smile
Also, is it possible to make thunderbird open when a new email arrives?

So it is as I said to you, you install conkyEmail.

In Conky I have this command: $alignr${execpi 600 ~/scripts/email }

which call the script email every 10 min:

#! /bin/sh
# this script use the package conkyEmail (found and installed with synaptic)

# Verify each mailbox and keep the number of new mail in a variable
GMAIL=$(conkyEmail --servertype=POP --ssl --servername=pop.gmail.com --folder=Inbox --username=myusername --password=mypassword --connectiontimeout=20)
LAPOSTE=$(conkyEmail --servertype=POP --servername=pop.laposte.net --folder=Inbox --username=myusername --password=mypassword --connectiontimeout=20)
HOTMAIL=$(conkyEmail --servertype=POP --ssl --servername=pop3.live.com --folder=Inbox --username=myusername --password=mypassword --connectiontimeout=20)

# For each variable (each mailbox in fact), if the value is 0 (there is no new message)
# or ? (connexion to mailbox failed), just write the name of the mail box
# else, if there is a mail, write the name of the mail box in red.

if [ "$GMAIL" = "0" ]; then
    {
    GMAIL='Gmail'
    }
elif [ "$GMAIL" = "?" ]; then
    {
    GMAIL='Gmail'
    }
else
    {
    GMAIL='${color red}Gmail${color}'
    }
fi

if [ "$LAPOSTE" = "0" ]; then
    {
    LAPOSTE='Laposte'
    }
elif [ "$LAPOSTE" = "?" ]; then
    {
    LAPOSTE='Laposte'
    }
else
    {
    LAPOSTE='${color red}Laposte${color}'
    }
fi

if [ "$HOTMAIL" = "0" ]; then
    {
    HOTMAIL='Hotmail'
    }
elif [ "$HOTMAIL" = "?" ]; then
    {
    HOTMAIL='Hotmail'
    }
else
    {
    HOTMAIL='${color red}Hotmail${color}'
    }
fi

# Write the names of mailbox side by side.
echo $GMAIL" "$LAPOSTE" "$HOTMAIL

exit 0

And you have the result in the left top corner (here I have an email in my gmail inbox)

http://img217.imageshack.us/img217/930/2010061012761996541024x.th.png

Uploaded with ImageShack.us

And to launch automatically thunderbird you just have to write thunderbird in the condition when there is a mail. In that case there is no interest to write anything in your conky so you should write the script differently wink

23

(1,839 replies, posted in Tips, Tricks & Scripts)

I will check when I am home, but if you search in the repository you will find conkymail or conky email, something like that.
As I put it in a script as far as I remember, I guess it is possible to launch thunderbird automatically if needed.

24

(1,839 replies, posted in Tips, Tricks & Scripts)

alexander wrote:

does anyone know how to link thunderbird to conky?

update: that won't be necessary anymore, i found a really cool thunderbird plugin that displays the new messages on the taskbar

Conky email can check directly your accounts without thunderbird running.
It is what I use on a eeepc to not have thunderbird running all the time for nothing.

I am not a fan of glossy screens too for a computer. What I like in the imac is the design. It is far better looking than a desktop and the cable to connect the screen etc... It is too expensive for what it is but it is a kind of object I would like (without OsX).
But in fact I don't like the trade "apple", I don't like the discourse and philosophy and even for the music player I avoided to get one (Cowon rocks yikes ) big_smile