You are not logged in.
Oh my. .Xdefaults please <3
Who is this doin' this synthetic type of alpha beta psychedelic funkin'?
Offline
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
Offline
Husio, what programming font are you using in vim?
urxvt*font: xft:Bitstream Vera Sans Mono:pixelsize=11
Offline
http://farm3.static.flickr.com/2067/209 … 49ca_m.jpg
Conky+Openbox+Tint
Sorry, I meant your tintrc....
Offline
What's the vim colour scheme you're using?
Offline
Husio wrote:What's the vim colour scheme you're using?
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
Sorry, I meant your tintrc....
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
PhrAok wrote:Could you share your irssi config please? Thanks!
Offline
PhrAok wrote:Oh my. .Xdefaults please <3
Offline
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? Just trying it out atm
Offline
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
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. ) 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
http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!
Offline
My simple kde3.5 desktop:
Nice wallpaper. Would you share it?
ArchLinux with Xfce4.
Offline
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.
Cthulhu For President!
Offline
Rokixz wrote:My simple kde3.5 desktop:
Nice wallpaper. Would you share it?
http://smail.lt/users/klyvis/alta-badia.jpg
Here you are
Last edited by Rokixz (2007-12-10 18:40:18)
http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!
Offline
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
Please people, stop posting Xmonad screenshots, or I'll end up installing it again... I was trying to settle with Gnome...
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
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!
Offline
Gotmor, thanks for dzen2 and your comment!
Offline
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
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
Cthulhu For President!
Offline
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
Offline
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