You are not logged in.

#176 2007-12-10 05:37:42

cry0x
Member
Registered: 2007-04-11
Posts: 91

Re: December 2007 Screenshots

Oh my. .Xdefaults please <3


Who is this doin' this synthetic type of alpha beta psychedelic funkin'?

Offline

#177 2007-12-10 08:34:29

gejr
Member
Registered: 2007-05-23
Posts: 92

Re: December 2007 Screenshots

jordanmthomas wrote:

http://img118.imageshack.us/img118/3003/ssyi8.th.png
I switched back to using gnome and gnome programs solely because of this gtk theme.  It came with audacious I think (since it's called aud-default and looks like my audacious).

Hey JordanThomas... How do you get your fonts to look this good? What font(settings) do you have in your .Xdefaults? Also I wonder what you've done to your .*shrc to get that awesome prompt!:) Mind sharing?



thayer: Sorry, thanks for pointing that out. Not sure why I got the impression it was your shot smile

Offline

#178 2007-12-10 09:46:00

Husio
Member
From: Europe
Registered: 2005-12-04
Posts: 359
Website

Re: December 2007 Screenshots

siodine wrote:

Husio, what programming font are you using in vim?

urxvt*font:         xft:Bitstream Vera Sans Mono:pixelsize=11

Offline

#179 2007-12-10 10:07:45

nucleuswizard
Member
From: Serbia
Registered: 2007-10-07
Posts: 79

Re: December 2007 Screenshots

Sorry, I meant your tintrc.... big_smile big_smile big_smile

Offline

#180 2007-12-10 12:29:58

Xilon
Member
Registered: 2007-01-01
Posts: 243

Re: December 2007 Screenshots

Offline

#181 2007-12-10 12:38:39

Husio
Member
From: Europe
Registered: 2005-12-04
Posts: 359
Website

Re: December 2007 Screenshots

darkvim colorscheme: ftp://husio.homelinux.com/dotfiles/vim/ … arkvim.vim
Xdefaults: ftp://husio.homelinux.com/dotfiles/Xdefaults

Last edited by Husio (2007-12-10 12:41:16)

Offline

#182 2007-12-10 13:22:21

MarinvHs
Member
From: Curitiba, PR, Brazil
Registered: 2007-10-15
Posts: 47

Re: December 2007 Screenshots

nucleuswizard wrote:

Sorry, I meant your tintrc.... big_smile big_smile big_smile

There you go

#---------------------------------------------
# TTM CONFIG FILE
#
# colors: hex format
# booleans: 0 or 1 
# alpha: 0 to 100 percent
# font: [FAMILY-LIST] [STYLE-OPTIONS] [SIZE]
# panel_width: 0 == use full width
#---------------------------------------------

#---------------------------------------------
# FONT
#---------------------------------------------
font = bit stream vera 8
font_color = #ffffff
font_alpha = 90
font_active_color = #ffffff
font_active_alpha = 100
font_shadow = 0

#---------------------------------------------
# TASKS
#---------------------------------------------
task_text_centered = 1
task_width = 216
task_margin = 2
task_padding = 0

#---------------------------------------------
# PANEL
#---------------------------------------------
panel_width = 0
panel_height = 25
panel_tasks_centered = 0

#---------------------------------------------
# PANEL BACKGROUND
#---------------------------------------------
panel_background = 0
panel_background_color = #ffffff
panel_background_alpha = 10

#---------------------------------------------
# TASK BACKGROUND
#---------------------------------------------
task_background = 1
task_background_color = #222222
task_background_alpha = 100
task_active_background_color = #888888
task_active_background_alpha = 100
task_background_as_border = 0

Offline

#183 2007-12-10 14:28:28

PhrAok
Member
From: France
Registered: 2006-12-16
Posts: 66
Website

Re: December 2007 Screenshots

adekoba wrote:

Could you share your irssi config please? Thanks!

here

Offline

#184 2007-12-10 14:29:45

PhrAok
Member
From: France
Registered: 2006-12-16
Posts: 66
Website

Re: December 2007 Screenshots

cry0x wrote:

Oh my. .Xdefaults please <3

config

Offline

#185 2007-12-10 15:28:06

Xilon
Member
Registered: 2007-01-01
Posts: 243

Re: December 2007 Screenshots

buttons wrote:

http://img213.imageshack.us/img213/83/2 … jh8.th.png

Update!

Conky has been completely replaced with dzen.  Couldn't be happier with it.

XMonad/dzen/divinorum-green/vim/trayer/mail-notification/pidgin/thunar

Mind sharing your xmonad.hs? big_smile Just trying it out atm smile

Offline

#186 2007-12-10 15:35:25

buttons
Member
From: NJ, USA
Registered: 2007-08-04
Posts: 620

Re: December 2007 Screenshots

Sure

-- xmonad.hs
import XMonad
import XMonad.Layouts
import XMonad.Config                (defaultConfig)
import XMonad.Actions.RotView        ( rotView )
import XMonad.Hooks.DynamicLog        ( PP(..), dynamicLogWithPP, dzenColor, wrap, defaultPP )
import XMonad.Layout.NoBorders
import XMonad.Util.Run                (spawnPipe)
import Data.Bits

import XMonad.Operations
import qualified XMonad.StackSet as W 
import qualified Data.Map as Map
import Data.Ratio
import Graphics.X11.Xlib
import System.IO
 
statusBarCmd= "dzen2 -y 2 -w 400 -bg '#000000' -fg '#ffffff' -sa c -fn '-*-terminus-*-*-*-*-12-*-*-*-*-*-iso8859' -e '' -ta l"
 
main = do din <- spawnPipe statusBarCmd
          xmonad $ defaultConfig
                     { borderWidth        = 1
                     , normalBorderColor  = "black"
                     , focusedBorderColor = "#aecf96"
                     , terminal           = "urxvt"
                     , workspaces         = ["main","net", "dev"]
                                            ++ map show [4..9]
                     , defaultGaps        = [(16,0,0,0)]
                     , logHook            = dynamicLogWithPP $ myPP din
                     , manageHook          = myManageHook
                     , modMask            = mod4Mask
                     , keys               = \c -> myKeys `Map.union`
                                                  keys defaultConfig c
                     , layoutHook         = smartBorders $ Mirror tiled ||| Full ||| tiled
                     }
                     where
                        tiled = Tall 1 (3%100) (680%1000)
 
myKeys = Map.fromList $
    [ ((mod4Mask                    , xK_F2    ), spawn "gmrun")
    --, ((mod4Mask .|. shiftMask        , xK_t       ), spawn "thunar")
    , ((0                           , 0x1008ff11    ), spawn "amixer -q sset Master 5-"                     )   -- XF86AudioLowerVolume: Lower audio volume
    , ((0                           , 0x1008ff12    ), spawn "amixer -q sset Master toggle"                 )   -- XF86AudioMute: Mute audio
    , ((0                           , 0x1008ff13    ), spawn "amixer -q sset Master 5+"                     )   -- XF86AudioRaiseVolume: Raise audio volume
    , ((mod4Mask                    , xK_e       ), spawn "thunar")
    , ((mod4Mask                    , xK_o       ), spawn "urxvt -e screen")
    , ((mod4Mask                    , xK_F12   ), spawn "sudo shutdown -h now")
    , ((mod4Mask                    , xK_p     ), spawn "exe=`dmenu_path | dmenu -b -fn '-*-terminus-*-r-*-*-*-*-*-*-*-*-*-*' -nb '#000000' -nf '#FFFFFF'` && eval \"exec $exe\"") -- %! Launch dmenu
    , ((mod4Mask                    , xK_c       ), kill)
    ]

myManageHook = composeAll . concat $
                [ [ className =? c --> doFloat | c <- floats]
                , [ resource =? r --> doIgnore | r <- ignore]
                , [ resource =? "gecko" --> doF (W.shift "net") ]]
 where floats = ["MPlayer", "Gimp", "switch2", "Switch2", "nitrogen", "Nitrogen"]
       ignore = ["panel", "trayer", "gnome-panel", "desktop_window", "kicker", "kdesktop"]

myPP h = defaultPP 
            { ppCurrent = wrap "^fg(#000000)^bg(#aecf96)^p(2)^i(/home/buttons/.bitmaps/has_win.xbm)" "^p(2)^fg()^bg()"
             , ppVisible = wrap "^bg(gray40)^fg(#ffffff)^p(2)" "^p(2)^fg()^bg()"
             , ppSep     = " ^fg(gray40)^r(3x3)^fg() "
             , ppLayout  = dzenColor "#be6b13" "" .
                           (\x -> case x of
                                    "Tall" -> "^i(/home/buttons/.bitmaps/tall.xbm)"
                                    "Mirror Tall" -> "^i(/home/buttons/.bitmaps/mtall.xbm)"
                                    "Full" -> "^i(/home/buttons/.bitmaps/full.xbm)"
                           )
             , ppTitle   = dzenColor "white" "" . wrap "< " " >" 
             , ppOutput   = hPutStrLn h
             }

Relevant parts of .xinitrc:

#Trayer
trayer --edge top --align right --margin 200 --widthtype request --height 14 --transparent true --alpha 100 --tint 1 --SetDockType true

#Neat bars
DZENOPTS="-y 2 -bg #000000 -fg #ffffff -fn -*-terminus-*-*-*-*-12-*-*-*-*-*-iso8859 -e onstart=lower" 

gcpubar -fg '#aecf96' -bg 'gray40' -h 7 -w 75 | dzen2 -ta l -w 180 -x 400 ${DZENOPTS} &
/home/buttons/bin/dzenlong.sh | dzen2 -ta l -x 580 -w 500 ${DZENOPTS} &
/home/buttons/bin/dzendate.sh | dzen2 -y 1 -ta r -w 200 -x 1080 -bg '#000000' -fg '#ffffff' -fn '-*-terminus-bold-*-*-*-13-*-*-*-*-*-iso8859' -e '' &

EDIT: Ehh..I just realised my xinitrc has changed a bit since that screenshot, but you get the gist.

Last edited by buttons (2007-12-10 15:36:25)


Cthulhu For President!

Offline

#187 2007-12-10 15:56:21

jordanmthomas
Member
Registered: 2007-07-10
Posts: 33

Re: December 2007 Screenshots

gejr wrote:
jordanmthomas wrote:

http://img118.imageshack.us/img118/3003/ssyi8.th.png
I switched back to using gnome and gnome programs solely because of this gtk theme.  It came with audacious I think (since it's called aud-default and looks like my audacious).

Hey JordanThomas... How do you get your fonts to look this good? What font(settings) do you have in your .Xdefaults? Also I wonder what you've done to your .*shrc to get that awesome prompt!:) Mind sharing?

I can't find the source, but it was called ph!l's or something similar.
ZSH

function precmd {

    local TERMWIDTH
    (( TERMWIDTH = ${COLUMNS} - 1 ))


    ###
    # Truncate the path if it's too long.
    
    PR_FILLBAR=""
    PR_PWDLEN=""
    
    local promptsize=${#${(%):---(%n@%m:%l)---()--}}
    local pwdsize=${#${(%):-%~}}
    
    if [[ "$promptsize + $pwdsize" -gt $TERMWIDTH ]]; then
        ((PR_PWDLEN=$TERMWIDTH - $promptsize))
    else
    PR_FILLBAR="\${(l.(($TERMWIDTH - ($promptsize + $pwdsize)))..${PR_HBAR}.)}"
    fi


    ###
    # Get APM info.

    if which ibam > /dev/null; then
    PR_APM_RESULT=`ibam --percentbattery`
    elif which apm > /dev/null; then
    PR_APM_RESULT=`apm`
    fi
}


setopt extended_glob
preexec () {
    if [[ "$TERM" == "screen" ]]; then
    local CMD=${1[(wr)^(*=*|sudo|-*)]}
    echo -n "\ek$CMD\e\\"
    fi
}


setprompt () {
    ###
    # Need this so the prompt will work.

    setopt prompt_subst


    ###
    # See if we can use colors.

    autoload colors zsh/terminfo
    if [[ "$terminfo[colors]" -ge 8 ]]; then
    colors
    fi
    for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
    eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
    eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
    (( count = $count + 1 ))
    done
    PR_NO_COLOUR="%{$terminfo[sgr0]%}"


    ###
    # See if we can use extended characters to look nicer.
    
    typeset -A altchar
    set -A altchar ${(s..)terminfo[acsc]}
    PR_SET_CHARSET="%{$terminfo[enacs]%}"
    PR_SHIFT_IN="%{$terminfo[smacs]%}"
    PR_SHIFT_OUT="%{$terminfo[rmacs]%}"
    PR_HBAR=${altchar[q]:--}
    PR_ULCORNER=${altchar[l]:--}
    PR_LLCORNER=${altchar[m]:--}
    PR_LRCORNER=${altchar[j]:--}
    PR_URCORNER=${altchar[k]:--}

    
    ###
    # Decide if we need to set titlebar text.
    
    
    ###
    # Decide whether to set a screen title
    if [[ "$TERM" == "screen" ]]; then
    PR_STITLE=$'%{\ekzsh\e\\%}'
    else
    PR_STITLE=''
    fi
    
    
    ###
    # APM detection
    
    if which ibam > /dev/null; then
    PR_APM='$PR_RED${${PR_APM_RESULT[(f)1]}[(w)-2]}%%(${${PR_APM_RESULT[(f)3]}[(w)-1]})$PR_LIGHT_BLUE:'
    elif which apm > /dev/null; then
    PR_APM='$PR_RED${PR_APM_RESULT[(w)5,(w)6]/\% /%%}$PR_LIGHT_BLUE:'
    else
    PR_APM=''
    fi
    
    
    ###
    # Finally, the prompt.

    PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
$PR_CYAN$PR_SHIFT_IN$PR_ULCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
$PR_GREEN%(!.%SROOT%s.%n)$PR_GREEN@%m:%l\
$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_HBAR${(e)PR_FILLBAR}$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
$PR_MAGENTA%$PR_PWDLEN<...<%~%<<\
$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_URCORNER$PR_SHIFT_OUT\

$PR_CYAN$PR_SHIFT_IN$PR_LLCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
%(?..$PR_LIGHT_RED%?$PR_BLUE:)\
${(e)PR_APM}$PR_YELLOW%D{%H:%M}\
$PR_LIGHT_BLUE:%(!.$PR_RED.$PR_WHITE)%#$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_NO_COLOUR '

    RPROMPT=' $PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_BLUE$PR_HBAR$PR_SHIFT_OUT\
($PR_YELLOW%D{%a,%b%d}$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_LRCORNER$PR_SHIFT_OUT$PR_NO_COLOUR'

    PS2='$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_BLUE$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT(\
$PR_LIGHT_GREEN%_$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT$PR_NO_COLOUR '
}

setprompt

if [[ "$TERM" == "linux" ]]; then
    bash && exit
fi

clear
clear

alias ls='ls --color'

To get my fonts to render like that I installed cairo-lcd, freetype2-lcd, and libxft-lcd from AUR.
The font I am using for most of the desktop is Segoe Semibold (Yes, the one from Microsoft.  smile ) at size 7.
My terminal font is Deja Vu Sans Mono 7.
My font settings in gnome are:
DPI:  96
Subpixel Rendering:  RGB
slight hinting

edit, forgot .Xdefaults

! urxvt settings & colors

urxvt*background:       #242424
xterm*background:       #242424
urxvt*cursorBlink:      true
urxvt*font:             xft:Dejavu Sans Mono:pixelsize=7
urxvt*boldFont:         xft:Dejavu Sans Mono:pixelsize=8
#xterm*font:        xft:Monaco:pixelsize=8
#xterm*boldFont:        xft:Monaco:pixelsize=8
urxvt*foreground:       white
xterm*foreground:    white
urxvt*geometry:         80x25
! V
urxvt*inheritPixmap:   true
urxvt*internalBorder:   0
urxvt*loginShell:       true
urxvt*saveLines:        4000
urxvt*scrollBar:        false
! V
urxvt*shading:         1
urxvt*termName:         rxvt
! V
!urxvt*tintColor:       #ffffff
urxvt*underlineColor:   #86a2be
URxvt.perl-ext-common:      default,matcher
URxvt.matcher.button:       1
URxvt.matcher.pattern.1:    \bwww\.[\w-]\.[\w./?&@#-]*[\w/-]
URxvt*urlLauncher:        firefox
urxvt.perl-ext-common:      matcher

!black text
urxvt*color0:           #242424
urxvt*color8:           #cdb5cd
xterm*color0:        #242424
xterm*color0:        #cdb5cd 


!red text
urxvt*color1:           #bf7979
urxvt*color9:           #f4a45f

!green text
urxvt*color2:           #97b26b
urxvt*color10:          #c5f779

!yellow text
urxvt*color3:           #cdcda1
urxvt*color11:          #ffffaf

!blue text
urxvt*color4:           #86a2be
urxvt*color12:          #98afd9

!magenta text
urxvt*color5:           #d9b798
urxvt*color13:          #d7d998

!cyan text
urxvt*color6:           #a1b5cd
urxvt*color14:          #a1b5cd

!white
urxvt*color7:           #ffffff
urxvt*color15:          #dedede

Last edited by jordanmthomas (2007-12-10 15:57:34)

Offline

#188 2007-12-10 16:59:34

Rokixz
Member
From: Šiauliai, Lithuania
Registered: 2007-04-21
Posts: 251
Website

Re: December 2007 Screenshots

My simple kde3.5 desktop:

t307149_kopija3.png


http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!

Offline

#189 2007-12-10 18:05:22

LinuxPatsku
Member
Registered: 2007-05-27
Posts: 37

Re: December 2007 Screenshots

Rokixz wrote:

Nice wallpaper. Would you share it? smile


ArchLinux with Xfce4.

Offline

#190 2007-12-10 18:16:17

buttons
Member
From: NJ, USA
Registered: 2007-08-04
Posts: 620

Re: December 2007 Screenshots

jordanmthomas wrote:
gejr wrote:
jordanmthomas wrote:

http://img118.imageshack.us/img118/3003/ssyi8.th.png
I switched back to using gnome and gnome programs solely because of this gtk theme.  It came with audacious I think (since it's called aud-default and looks like my audacious).

Hey JordanThomas... How do you get your fonts to look this good? What font(settings) do you have in your .Xdefaults? Also I wonder what you've done to your .*shrc to get that awesome prompt!:) Mind sharing?

I can't find the source, but it was called ph!l's or something similar.

Phil!'s ZSH Prompt


Cthulhu For President!

Offline

#191 2007-12-10 18:39:06

Rokixz
Member
From: Šiauliai, Lithuania
Registered: 2007-04-21
Posts: 251
Website

Re: December 2007 Screenshots

LinuxPatsku wrote:
Rokixz wrote:

Nice wallpaper. Would you share it? smile

http://smail.lt/users/klyvis/alta-badia.jpg

Here you are wink

Last edited by Rokixz (2007-12-10 18:40:18)


http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!

Offline

#192 2007-12-10 20:00:59

Ashren
Member
From: Denmark
Registered: 2007-06-13
Posts: 1,229
Website

Re: December 2007 Screenshots

20071210ashrensg9.th.png

An update.

XMonad 0.5 with two instances of dzen2, where the bottom one is displaying rss feeds.

Configuring XMonad plus dzen is so time consuming, but still so much fun.

Offline

#193 2007-12-10 20:04:36

finferflu
Forum Fellow
From: Manchester, UK
Registered: 2007-06-21
Posts: 1,899
Website

Re: December 2007 Screenshots

Please people, stop posting Xmonad screenshots, or I'll end up installing it again... I was trying to settle with Gnome... tongue


Have you Syued today?
Free music for free people! | Earthlings

"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery

Offline

#194 2007-12-10 20:53:40

gotmor
Member
From: Germany
Registered: 2007-09-03
Posts: 84
Website

Re: December 2007 Screenshots

Ashren wrote:

http://img142.imageshack.us/img142/7923 … sg9.th.png

An update.

XMonad 0.5 with two instances of dzen2, where the bottom one is displaying rss feeds.

Configuring XMonad plus dzen is so time consuming, but still so much fun.

I would say it paid off, a very nice one! smile

Offline

#195 2007-12-10 21:24:56

Ashren
Member
From: Denmark
Registered: 2007-06-13
Posts: 1,229
Website

Re: December 2007 Screenshots

Gotmor, thanks for dzen2 and your comment!
smile

Offline

#196 2007-12-10 21:56:37

PJ
Member
From: Sweden
Registered: 2005-10-11
Posts: 602

Re: December 2007 Screenshots

20071210nb2.th.png
I am trying a darker theme and really enjoying it. I wish that I could find a nice icon theme to match te rest of the stuff.

Last edited by PJ (2007-12-10 21:58:04)

Offline

#197 2007-12-10 22:51:46

Nihathrael
Member
From: Freising, Germany
Registered: 2007-10-21
Posts: 82
Website

Re: December 2007 Screenshots

Ashren wrote:

http://img142.imageshack.us/img142/7923 … sg9.th.png

An update.

XMonad 0.5 with two instances of dzen2, where the bottom one is displaying rss feeds.

Configuring XMonad plus dzen is so time consuming, but still so much fun.

That looks really awsome! Would you mind posting you're xmonad.hs + dzen2 lines/scripts?


Unknown Horizons - Open source real-time strategy game with the comfy Anno 1602 feeling!

Offline

#198 2007-12-11 00:45:19

buttons
Member
From: NJ, USA
Registered: 2007-08-04
Posts: 620

Re: December 2007 Screenshots

PJ wrote:

http://img405.imageshack.us/img405/2395 … nb2.th.png
I am trying a darker theme and really enjoying it. I wish that I could find a nice icon theme to match te rest of the stuff.

I gave up "matching" with my dark themes and mostly use Glass Icons.  The transparency looks tons better in my opinion with something dark behind it smile


Cthulhu For President!

Offline

#199 2007-12-11 02:09:30

z0phi3l
Member
From: Waterbury CT
Registered: 2007-11-26
Posts: 278

Re: December 2007 Screenshots

PJ wrote:

http://img405.imageshack.us/img405/2395 … nb2.th.png
I am trying a darker theme and really enjoying it. I wish that I could find a nice icon theme to match te rest of the stuff.

nuoveXT Black are nice but I think they're for KDE only



http://www.kde-look.org/content/show.ph … tent=65890

Offline

#200 2007-12-11 05:58:36

ebirtaid
Member
From: USA
Registered: 2007-11-18
Posts: 52

Re: December 2007 Screenshots

PJ wrote:

http://img405.imageshack.us/img405/2395 … nb2.th.png
I am trying a darker theme and really enjoying it. I wish that I could find a nice icon theme to match te rest of the stuff.

black-white for gnome is good for dark themes but I dont know that it would blend well with your color scheme, worth checking though it is on gnome-look

Offline

Board footer

Powered by FluxBB