You are not logged in.

#226 2010-06-08 20:19:00

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: June 2010 Screenshots

Touba wrote:

That's nice! Could you tell us which theme are you using please? And that white Arch start icon, is it part of the theme?

gtk-theme-shiki-colors-murrine
icon theme is custom elementary. if you want them, pm me and i'll send you a link


Give what you have. To someone, it may be better than you dare to think.

Offline

#227 2010-06-08 20:23:35

Troolari
Member
Registered: 2010-01-01
Posts: 23

Re: June 2010 Screenshots

ould wrote:

Nice setup. more info on config? wallpaper?

Thanks,

Kevin

Wallpaper and configs.

Offline

#228 2010-06-08 21:15:33

Eit
Member
From: Italy
Registered: 2010-01-22
Posts: 57

Re: June 2010 Screenshots

Impressive, I rly like it.
I'd like to theme my terminal and my cli applications colors, is there any how-to, guide or some reference that I can read to get some hints about how achieve smt like that ? hmm

Offline

#229 2010-06-08 21:36:00

bl1nk
Member
Registered: 2008-07-29
Posts: 57
Website

Re: June 2010 Screenshots

gtklocker wrote:

Really nice bl1nk - what about the bar up there?

It's a part of wmii smile

Offline

#230 2010-06-08 22:15:04

robrene
Member
Registered: 2009-04-16
Posts: 168

Re: June 2010 Screenshots

staar wrote:

wow, many scarlett johansson fans this month..

http://omploader.org/vNGpqNg
http://omploader.org/vNGpqNw

There was a thread on reddit.com the other day where people attempted to photoshop/gimp together a picture of scarlett making out with herself.

On topic though, what fonts are you using and with what smoothening options. Those are fantastic.


smile neutral sad big_smile yikes wink hmm tongue lol mad roll cool

Offline

#231 2010-06-08 23:09:26

aznblur
Member
Registered: 2010-02-09
Posts: 20

Re: June 2010 Screenshots

Aakko wrote:

Are you guys using this Lokaltog's method to get icons in DWM's titlebar?

Could you share your Conky configs?

Not yet, I've been meaning to, but study is more important haha.

Top bar:

background yes
out_to_console yes
update_interval 1.0
total_run_times 0
use_spacer none
TEXT
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/cpu.xbm) ^fg(\#dcdccc)${freq_g}GHz $cpu% \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/mem.xbm) ^fg(\#dcdccc)$mem \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/net_down_03.xbm) ^fg(\#dcdccc)${downspeedf wlan0} \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/net_up_03.xbm) ^fg(\#dcdccc)${upspeedf wlan0} \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/bat_full_01.xbm) ^fg(\#dcdccc)${execi 30 /home/john/.scripts/acpi-time.sh} ${execi 30 /home/john/.scripts/battery.sh} \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/clock.xbm) ^fg(\#dcdccc)${time %H:%M:%S %a %b %d}

Bottom bar:

background yes
out_to_console yes
update_interval 1.0
total_run_times 0
use_spacer none
TEXT
^p(1)^fg(\#f0dfaf) john^fg(\#80d4aa)@^fg(\#dca3a3)archnet \
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/spkr_01.xbm)^fg(\#dcdccc) ${mixer}% \
^fg(\#5ccbed)${execi 10 /home/john/.scripts/mpd.awk}\
^fg(\#dcdccc)$if_mpd_playing ${scroll 102 5 $mpd_smart } $endif \
^pa(790)\
^fg(\#5ccbed)^i(/home/john/bitmaps/xbm8x8/wifi_02.xbm) \
^fg(\#f0dfaf)${wireless_essid wlan0} \
^fg(\#8cd0d3)${addr wlan0} \
^fg(\#80d4aa)${execi 3600 wget -O - http://whatismyip.org/ | tail} \
^fg(\#dca3a3)${wireless_link_qual_perc wlan0}% \

acpi-time.sh

#!/bin/bash

data=`acpi -b`
data=`echo $data | tr "[:upper:]" "[:lower:]"`
values=(`echo $data | tr ',' ' '`)
timepre=(`echo ${values[4]} | tr ' ' ' '`)
time=`echo ${timepre/ /}`
if [ "$time" != "" ];
then
    timeparts=(`echo $time | tr ':' ' '`)
    echo "${timeparts[0]}:${timeparts[1]}"
else
    echo "done"
fi

battery.sh - Normally there are colours, but I haven't bothered with it yet.

#!/bin/bash
#
#batttery status script
#

BATTERY=/proc/acpi/battery/BAT0

REM_CAP=`grep "^remaining capacity" $BATTERY/state | awk '{ print $3 }'`
FULL_CAP=`grep "^last full capacity" $BATTERY/info | awk '{ print $4 }'`
BATSTATE=`grep "^charging state" $BATTERY/state | awk '{ print $3 }'`

CHARGE=`echo $(( $REM_CAP * 100 / $FULL_CAP ))`

NON=''
BLD=''
RED=''
GRN=''
YEL=''

COLOUR="$RED"

case "${BATSTATE}" in
   'charged')
   BATSTT="$GRN=$NON"
   ;;
   'charging')
   BATSTT="$YEL+$NON"
   ;;
   'discharging')
   BATSTT="$RED-$NON"
   ;;
esac

# prevent a charge of more than 100% displaying
if [ "$CHARGE" -gt "99" ]
then
    CHARGE=100
fi

if [ "$CHARGE" -gt "25" ]
then
    COLOUR="$YEL"
fi

if [ "$CHARGE" -gt "65" ]
then
    COLOUR="$GRN"
fi

echo -e "${BATSTT}${COLOUR}${CHARGE}%${NON}"

# end of file
#!/bin/awk -f
# Credits to riivo on Arch Linux forums for this, I just slightly
# modified it 

BEGIN {

    MPD_CMD = "mpc";
    MPD_CMD | getline;
    MPD_CMD | getline;
    mpd_state = $1
    close(MPD_CMD);

    if(mpd_state == "[playing]")
        print "^i(/home/john/bitmaps/xbm8x8/play.xbm)"; 
    else if(mpd_state == "[paused]")
        print "^i(/home/john/bitmaps/xbm8x8/pause.xbm)"; 
    else
        print "^i(/home/john/bitmaps/xbm8x8/stop.xbm)"; 

}

Offline

#232 2010-06-09 01:41:57

sand_man
Member
From: Australia
Registered: 2008-06-10
Posts: 2,164

Re: June 2010 Screenshots

Nice tag names wink


neutral

Offline

#233 2010-06-09 02:18:25

YamiFrankc
Member
From: Mexico
Registered: 2009-06-19
Posts: 177
Website

Re: June 2010 Screenshots

Hey Troolari, how do you add the lil' thing in the workspaces, the square and the 90° line?
Is it using dzen2?

And yes, my dwm bar with that little font looks ugly, but at the time i was configuring it.


Thanks and greetings.

Offline

#234 2010-06-09 03:16:10

Mr Pink57
Member
From: a van down by the river
Registered: 2009-05-30
Posts: 91

Re: June 2010 Screenshots

tNGpycw
Same old same old all that has changed is the background really and maybe a few colors.  I guess I'm done tinkering.


Even a broken clock is right twice a day.

Diplomacy without force is like music without instruments.

Offline

#235 2010-06-09 03:28:39

staar
Member
From: Argentina
Registered: 2009-04-17
Posts: 15

Re: June 2010 Screenshots

robrene wrote:
staar wrote:

wow, many scarlett johansson fans this month..

http://omploader.org/vNGpqNg
http://omploader.org/vNGpqNw

There was a thread on reddit.com the other day where people attempted to photoshop/gimp together a picture of scarlett making out with herself.

On topic though, what fonts are you using and with what smoothening options. Those are fantastic.

i'm using LucidaMacBold 7.5 on fluxbox, Segoe UI 8 on gtk apps, Terminus 11 on urxvt, and this is what i have in my Xdefaults:

Xft.dpi:         96
Xft.antialias:   true
Xft.hinting:     true
Xft.hintstyle:   hintslight
Xft.rgba:        rgb

Offline

#236 2010-06-09 03:44:23

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

Re: June 2010 Screenshots

A9csLs.jpg tongue

gNUfws.jpg lol

Offline

#237 2010-06-09 04:14:17

Troolari
Member
Registered: 2010-01-01
Posts: 23

Re: June 2010 Screenshots

YamiFrankc wrote:

Hey Troolari, how do you add the lil' thing in the workspaces, the square and the 90° line?
Is it using dzen2?

Oh yeah, it's just dzen2 putting the has_win.xbm (the little square) in front of the tag.

Offline

#238 2010-06-09 06:03:44

dmz
Member
From: Sweden
Registered: 2008-08-27
Posts: 881
Website

Re: June 2010 Screenshots

Eit wrote:

Impressive, I rly like it.
I'd like to theme my terminal and my cli applications colors, is there any how-to, guide or some reference that I can read to get some hints about how achieve smt like that ? hmm

Thanks.

I'm not sure what you mean by theme the terminal, but if you mean the shell you can look at http://github.com/trapd00r/configs/blob … .zsh-theme . If you just want to edit your color resources, do that in .Xresources (http://github.com/trapd00r/configs/blob … Xresources).

man zsh and man urxvt, respectively.

Offline

#239 2010-06-09 06:05:53

dmz
Member
From: Sweden
Registered: 2008-08-27
Posts: 881
Website

Re: June 2010 Screenshots

nanotube09 wrote:

Maybe someone has already asked it to you ... In any case, which browser is that??

Thanks smile

That's firefox with vimperator.

Offline

#240 2010-06-09 06:24:17

bam365
Member
Registered: 2010-06-05
Posts: 20

Re: June 2010 Screenshots

I think I did enough rearranging to merit another post...

Clean:
tNGp0NA

Dirty:
tNGp0Ng

Offline

#241 2010-06-09 06:42:03

benoror
Member
Registered: 2009-07-20
Posts: 66
Website

Re: June 2010 Screenshots

IV6xsl.png

Awesome WM w/Custom xoria256 theme, Vim w/modified xoria256 heme, htop, urxvt ... etc


ArchLinux :: Awesome WM :: dotfiles

Offline

#242 2010-06-09 09:24:52

Erus_Iluvatar
Wiki Admin
Registered: 2010-04-01
Posts: 128

Re: June 2010 Screenshots

What is the GTK theme please?


I'm french, don't mind my mistakes in english.

Offline

#243 2010-06-09 10:36:29

slumslayer
Member
From: Belgium
Registered: 2008-09-14
Posts: 66

Re: June 2010 Screenshots

What is the top right app ?

Last edited by slumslayer (2010-06-09 10:36:41)

Offline

#244 2010-06-09 11:06:57

mad_
Member
Registered: 2010-01-11
Posts: 2

Re: June 2010 Screenshots

I join the fray too. Simple gnome on my 12" notebook:

Clean:
201006091259081280x800s.th.png

"Dirty"
201006091259421280x800s.th.png

Offline

#245 2010-06-09 13:45:50

heidar
Member
From: UK
Registered: 2010-02-04
Posts: 12
Website

Re: June 2010 Screenshots

Just finished installing Arch.

Openbox with arch.blue theme (modified to be lime/green...)
Tint2
urxvt (Thayer's colours IIRC)
Sonata
pcmanfm
ACYL icon theme
GTK theme is industrial
Wallpaper: http://delta909.deviantart.com/art/Soft … -146040434

tNGpueg

BTW, does anyone know where I can get the industrial-square GTK theme? I think it used to be a part of the Ximian artwork package from Novell but this was years ago, I always preferred square corners over rounded ones.

Last edited by heidar (2010-06-09 13:48:22)

Offline

#246 2010-06-09 14:24:24

paschalis.m
Member
From: Greece
Registered: 2009-09-09
Posts: 18

Re: June 2010 Screenshots

Pekwm:
vNGp4OA
vNGp4Yg

Offline

#247 2010-06-09 16:01:39

Troolari
Member
Registered: 2010-01-01
Posts: 23

Re: June 2010 Screenshots

Erus_Iluvatar wrote:

What is the GTK theme please?

It's Murrina-Night-Owl-2.

slumslayer wrote:

What is the top right app ?

Anichou.

Offline

#248 2010-06-09 16:51:20

silenc3r
Member
From: Poland
Registered: 2009-08-29
Posts: 149

Re: June 2010 Screenshots

Troolari wrote:
Erus_Iluvatar wrote:

What is the GTK theme please?

It's Murrina-Night-Owl-2.

slumslayer wrote:

What is the top right app ?

Anichou.

Could you tell me name of your icon theme?

Offline

#249 2010-06-09 17:08:22

Garr
Member
From: Poland
Registered: 2010-03-12
Posts: 20

Re: June 2010 Screenshots

Mr Pink57 wrote:

http://omploader.org/tNGpycw
Same old same old all that has changed is the background really and maybe a few colors.  I guess I'm done tinkering.

Would you share the wallpaper?


here's mine

dirty:
tNGp6bA

clean:
tNGp6ag

Last edited by Garr (2010-06-09 17:51:48)

Offline

#250 2010-06-09 18:34:08

tehswift
Member
From: Nashville, TN
Registered: 2008-10-30
Posts: 11

Re: June 2010 Screenshots

could you post a link to your ncmpcpp config?

Offline

Board footer

Powered by FluxBB