You are not logged in.

#301 2008-09-23 18:03:42

hBd
Member
From: Romania - Cluj Napoca
Registered: 2008-06-08
Posts: 241
Website

Re: Share your Openbox Desktop ! :)

msdark wrote:

My Screenshot...

Dirty
http://xs131.xs.to/xs131/08391/2008-09- … png.xs.jpg

Clean
http://xs131.xs.to/xs131/08391/2008-09- … png.xs.jpg

You can see conky, bmpanel with transpy theme (modificated), wbar in the top with Elegant Icons.
ncmpc and mutt in the Dirty screenshot
Openbox Theme and GTK2 Theme: Elegant Brit

can u post the conkyrc pls ?? with all the files needed .

Offline

#302 2008-09-23 21:01:51

msdark
Member
From: Chile
Registered: 2008-08-17
Posts: 49
Website

Re: Share your Openbox Desktop ! :)

My conkyrc

background yes
# Use Xft?
use_xft yes
xftfont cure:size=6

# Update interval in seconds
update_interval 1

# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0

# Create own window instead of using desktop (required in nautilus)
own_window  yes
own_window_transparent no
own_window_type widget
own_window_hints undecorate,sticky,skip_taskbar,skip_pager 

# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes

# Minimum size of text area
minimum_size 280 5

maximum_width 90

# Draw shades?
draw_shades no

# Draw outlines?
draw_outline no

# Draw borders around text
draw_borders yes

# Stippled borders?
stippled_borders 0

# border margins
border_margin 5

# border width
border_width 1

# Default colors and also border colors
default_color 303030
#default_shade_color white
#default_outline_color black
own_window_colour 262524

# Text alignment, other possible values are commented
alignment top_left
#alignment top_right
#alignment bottom_left
#alignment bottom_right

# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 5
gap_y 78

# Subtract file system buffers from used memory?
no_buffers yes

# set to yes if you want all text to be in uppercase
uppercase no

# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 2

# number of net samples to average
# set to 1 to disable averaging
net_avg_samples 2

# Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes

# Add spaces to keep things from moving about?  This only affects certain objects.
use_spacer left


TEXT
${color a4a4a4}${alignc 28}${font DotMatrix:size=16}${time %k:%M}
$font${time %D}
${font monospace:size=6}${execpi 3600 cal -m | awk 'NR>1'}$font


$color$hr

${color 9AB7DC}Date:${color a4a4a4}${alignr}${time %D}

${color 9AB7DC}Kernel:${color a4a4a4}${alignr}$kernel
${color 9AB7DC}UpTime:${color a4a4a4}${alignr}$uptime

${color 9AB7DC}Arch Update: 
${color a4a4a4}${execi 300 perl ~/.scripts/conky-updates.pl}

${color 9AB7DC}Cpu1:${color a4a4a4}${alignr}${cpu cpu1}% 
${color 9AB7DC}Cpu2:${color a4a4a4}${alignr}${cpu cpu2}% 

${color 9AB7DC}Ram:${color a4a4a4}${alignr}${memperc}%
${color 668ABF}${membar 3,85}

$color$hr
${color 9AB7DC}MPD:
${color a4a4a4}${alignc 2}${font DejaVu Sans Mono:size=18}${execi 1 ~/.scripts/mpd.sh}
${font}${color 668ABF}${alignc}${if_running mpd}${voffset -15}${mpd_status}$else Stopped $endif

${color 9AB7DC}Random:${color a4a4a4}${alignr}${if_running mpd}${mpd_random}$endif

${color 9AB7DC}Artist:${if_running mpd}${color a4a4a4}${mpd_artist}$endif
${color 9AB7DC}Title:${if_running mpd}${color a4a4a4}${mpd_title}$endif
${color 9AB7DC}Album:${if_running mpd}${color a4a4a4}${mpd_album}$endif
${if_running mpd}
${color a4a4a4}${mpd_elapsed}${alignr}${mpd_length}
${color 668ABF}${mpd_bar 3,85}
$endif
$color$hr

${color 9AB7DC}Disk IO:${color a4a4a4} ${alignr 4}$diskio
${color 9AB7DC}Root:     ${color a4a4a4}${fs_free_perc /}%
${color 668ABF}${fs_bar 3,85 /}
${color 9AB7DC}Home:    ${color a4a4a4}${fs_free_perc /home}%
${color 668ABF}${fs_bar 3,85 /home}

$color$hr

${color 9AB7DC}TOP: 

${color 9AB7DC}Proceso   CPU 
${top name 1}  ${color 668ABF}${alignr}${top cpu 1}
${color 9AB7DC}${top name 2}${color 668ABF}${alignr}${top cpu 2}
${color 9AB7DC}${top name 3}${color 668ABF}${alignr}${top cpu 3}
${color 9AB7DC}${top name 4}${color 668ABF}${alignr}${top cpu 4}

$color$hr

${color 9AB7DC}Bateria:
Estado:${color 668ABF}${alignr}${battery}
${color 9AB7DC}Tiempo:${color 668ABF}${alignr}${battery_time}/${battery_percent}%
${color 668ABF}${battery_bar 3,85}

And i only use a script for mpd
mpd.sh

#!/bin/sh
funcionando=0
mpd=`pidof -s mpd`
if [ -z $mpd ]; then
    funcionando=0
else
    funcionando=1
fi

if [ $funcionando == 1 ]; then
    estado=`mpc | cut -c -9 | head -2 | tail -1` &>/dev/null
    #echo $estado
    if [ $estado = "[paused]" ]; then
        echo "❚❚  "
    else
        if [ $estado = "[playing]" ]; then
            echo "▶"
        else
            echo "■"
        fi
    fi
else
    echo "■"
fi

www.msdarkici.wordpress.com (Spanish) All what i Do in the linux world!!!
Arch User... Feel Free... Feel Speed....

Offline

#303 2008-09-23 21:01:52

dhave
Arch Linux f@h Team Member
From: Outside the matrix.
Registered: 2005-05-15
Posts: 1,112

Re: Share your Openbox Desktop ! :)

@ Reasons: I've been freely pilfering much of your openbox setup (from post no. 7 in this thread, dated 20 March 2008) as a way to help someone see the possibilities for his system. We're wondering, though, where you got the nice green Arch wallpaper. If you've given a link in this thread, we missed it.

Thanks for your help, Reasons.

Last edited by dhave (2008-09-23 21:07:51)


Donate to Arch!

Tired? There's a nap for that. --anonymous

Offline

#304 2008-09-24 04:36:55

Reasons
Member
From: Washington
Registered: 2007-11-04
Posts: 572

Re: Share your Openbox Desktop ! :)

dhave wrote:

@ Reasons: I've been freely pilfering much of your openbox setup (from post no. 7 in this thread, dated 20 March 2008) as a way to help someone see the possibilities for his system. We're wondering, though, where you got the nice green Arch wallpaper. If you've given a link in this thread, we missed it.

Thanks for your help, Reasons.

Lucky I randomly checked this thread. I made it from this.
http://www.scribd.com/doc/3597994/GNOME … -1600x1200

Offline

#305 2008-09-24 06:30:26

hBd
Member
From: Romania - Cluj Napoca
Registered: 2008-06-08
Posts: 241
Website

Re: Share your Openbox Desktop ! :)

msdark wrote:

My conkyrc

...

ty

Offline

#306 2008-09-24 11:22:25

cuervo
Member
Registered: 2008-04-29
Posts: 65
Website

Re: Share your Openbox Desktop ! :)

VoteforPedro...do have a link to that wallpaper? And what panel is that? Looks nice.
Cheers

Offline

#307 2008-09-24 13:08:29

dhave
Arch Linux f@h Team Member
From: Outside the matrix.
Registered: 2005-05-15
Posts: 1,112

Re: Share your Openbox Desktop ! :)

Reasons wrote:

Lucky I randomly checked this thread. I made it from this.
http://www.scribd.com/doc/3597994/GNOME … -1600x1200

Thanks, Reasons. You're a very reasonable fellow.


Donate to Arch!

Tired? There's a nap for that. --anonymous

Offline

#308 2008-09-24 14:05:41

weakhead
Member
From: Poland
Registered: 2008-08-21
Posts: 341
Website

Re: Share your Openbox Desktop ! :)

@BRaKeR
What's your OpenBox theme?

Offline

#309 2008-09-24 14:08:03

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

Re: Share your Openbox Desktop ! :)

f_thumbm_0f67202.png

Offline

#310 2008-09-24 20:19:12

BRaKeR
Member
Registered: 2008-05-20
Posts: 5

Re: Share your Openbox Desktop ! :)

weakhead wrote:

@BRaKeR
What's your OpenBox theme?

Clearlooks-Olive

Offline

#311 2008-09-25 00:24:41

voteforpedro36
Member
Registered: 2008-08-06
Posts: 99

Re: Share your Openbox Desktop ! :)

cuervo wrote:

VoteforPedro...do have a link to that wallpaper? And what panel is that? Looks nice.
Cheers

No link to it (so I can't give credit to the artist), but I got it from the Ubuntu Forums (great Screenshot thread there). I uploaded to Photobucket for you, though.

The panel is tint (http://code.google.com/p/tint2/).

Old wall:

th_Canrun.jpg

New screen too:

th_9-24-08-bare.png

th_9-24-08-media.png

Last edited by voteforpedro36 (2008-09-25 00:25:13)

Offline

#312 2008-09-27 02:32:23

cuervo
Member
Registered: 2008-04-29
Posts: 65
Website

Re: Share your Openbox Desktop ! :)

@voteforpedro36

Thanks mate, much obliged!

Offline

#313 2008-09-27 03:18:08

voteforpedro36
Member
Registered: 2008-08-06
Posts: 99

Re: Share your Openbox Desktop ! :)

cuervo wrote:

@voteforpedro36

Thanks mate, much obliged!

No problem wink.

Offline

#314 2008-09-27 17:06:31

weakhead
Member
From: Poland
Registered: 2008-08-21
Posts: 341
Website

Re: Share your Openbox Desktop ! :)

Clean:
screen2-20080927120157.png

Dirty:
screen2-20080927121329.png

GTK theme: Elegant Blue
Openbox theme: Elegant Mine(modified)
Icon theme: OxygenRefit2
Wallpaper: 4 Seasons by vxside

Conky:

#avoid flicker
double_buffer yes

#own window to run simultanious 2 or more conkys
own_window  yes
own_window_transparent yes
own_window_type desktop
own_window_hints undecorate,sticky,skip_taskbar,skip_pager 

#borders
draw_borders no
border_margin 1

#shades
draw_shades no

#position
gap_x 0
gap_y 10
alignment top_left

#behaviour
update_interval 1

#colour
default_color  ffffff

#default_shade_color 000000
own_window_colour 262729

#font
use_xft yes
font URW Gothic L:pixelsize=22

#to prevent window from moving
use_spacer no
minimum_size 1280 0



TEXT
${alignc}${color 0096d1}KERNEL: ${color}$kernel     ${color 0096d1}UPTIME: ${color}$uptime_short     ${color 0096d1}CPU-FREQ: ${color}${freq cpu1}MHz     ${color 0096d1}CPU: ${color}${cpu cpu0}%     ${color 0096d1}MEM: ${color}${memperc}%     ${color 0096d1}DOWN: ${color}${downspeed ath0}k/s     ${color 0096d1}UP: ${color}${upspeed ath0}k/s

Pypanel:

#------------------------------------------------------------------------------
#
#                         PyPanel v2.4 Configuration
#
# This configuration file is a Python script that will be executed when
# PyPanel is started.  In order for PyPanel to start properly, make sure that
# this file contains proper Python formatting and no syntax errors.
#------------------------------------------------------------------------------
VERSION         = 2.4           # Config file version

#------------------------------------------------------------------------------
# Colors: Format is hex triplet - 0xrrggbb
#------------------------------------------------------------------------------
BG_COLOR        = "0x000000"    # Panel background and tinting color
TASK_COLOR      = "0x808080"    # Normal task name color 
FOCUSED_COLOR   = "0xffffff"    # Focused task name color
SHADED_COLOR    = "0x808080"    # Shaded task name color 
MINIMIZED_COLOR = "0x808080"    # Minimized task name color 
DESKTOP_COLOR   = "0x0096d1"    # Desktop name color
CLOCK_COLOR     = "0xffffff"    # Clock text color
LINE_COLOR      = "0xffffff"    # Vertical line color

# Text Shadow Colors
TASK_SHADOW_COLOR      = "0xffffff"
FOCUSED_SHADOW_COLOR   = "0xffffff"
SHADED_SHADOW_COLOR    = "0xffffff"
MINIMIZED_SHADOW_COLOR = "0xffffff" 
DESKTOP_SHADOW_COLOR   = "0xffffff"
CLOCK_SHADOW_COLOR     = "0xffffff"

#------------------------------------------------------------------------------
# Panel Spacing and Location Options: Measured in pixels
#------------------------------------------------------------------------------
P_LOCATION      = 1             # Panel placement: 0 = top, 1 = bottom
P_WIDTH         = 0             # Panel width: 0 = Use full screen width
P_START         = 0             # Starting X coordinate of the panel
P_SPACER        = 6             # Spacing between panel objects
P_HEIGHT        = 21            # Panel height

#------------------------------------------------------------------------------
# Icon Size Options: Measured in pixels
#------------------------------------------------------------------------------
I_HEIGHT        = 10            # Panel application icon height
I_WIDTH         = 10            # Panel application icon Width 
APPL_I_HEIGHT   = 21            # Application launcher icon height
APPL_I_WIDTH    = 21            # Application launcher icon width
TRAY_I_HEIGHT   = 16            # System tray icon height (usually 16 or 24)
TRAY_I_WIDTH    = 16            # System tray icon width  (usually 16 or 24)
                                # If TRAY_I_WIDTH is set to 0, then the
                                # width specified by the tray app will be used
                                
#------------------------------------------------------------------------------
# Panel Clock Format: 'man strftime' for detailed formatting options and help
#------------------------------------------------------------------------------
CLOCK_FORMAT    = "%d-%m-%y %H:%M"    # Ex: 2004-09-25 17:45 

#------------------------------------------------------------------------------
# Clock Delay: Seconds between each clock update during periods of inactivity
#------------------------------------------------------------------------------
CLOCK_DELAY     =5

#------------------------------------------------------------------------------
# Hidden Application List: Apps listed here will not be display on the panel
# The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS
# Ex: ["xmms", "xine", "gDesklets"]
#------------------------------------------------------------------------------
HIDE_LIST       = []            
                   
#------------------------------------------------------------------------------
# Hidden Panel Size: Size of the panel when it's hidden/minimized
#------------------------------------------------------------------------------
HIDDEN_SIZE     = 1

#------------------------------------------------------------------------------
# Panel Text Font: This option takes either a traditional or Xft font string 
# Ex: "-schumacher-clean-medium-r-normal-*-12-*-*-*-*-*-*-*"
#     "aquafont-8" 
#------------------------------------------------------------------------------
FONT            = "URW Gothic L-11"

#------------------------------------------------------------------------------
# Show All Applications: Show apps from all desktops or just the current
# 0: Disabled - Only applications on the current desktop will be displayed
# 1: Enabled  - Selected apps are moved to the current desktop
# 2: Enabled  - Current desktop is changed to the selected apps desktop
#------------------------------------------------------------------------------
SHOWALL         = 0             # 0, 1 or 2 - see descriptions above

#------------------------------------------------------------------------------
# Show Minimized/Iconified Applications: Show only minimized apps or all apps
# 0: Disabled - Show all applications on the panel
# 1: Enabled  - Show only minimized apps on the panel
#------------------------------------------------------------------------------
SHOWMINIMIZED   = 0

#------------------------------------------------------------------------------
# Application Icon List: List of custom icons for specific applications
# The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS
#
# The "default" entry is used for applications with no icon.  If left "",
# PyPanel will use the default icon distributed with the source.
#
# Add entries using the following format -
#     "<application name>" : "<full path to icon>",
#------------------------------------------------------------------------------
ICON_LIST       = {
                   "default" : "",
                   "example" : "/usr/share/imlib2/data/images/audio.png",
                  }
                  
#------------------------------------------------------------------------------
# Application Launch List: Ordered list of icons and applications for the
#                          application launcher.
# 
# Add entries using the following format -
#     ("<executable>", "<full path to icon>")
#------------------------------------------------------------------------------
LAUNCH_LIST     = [
                   ("xdotool key alt+F1", "/home/kant/ikony/start-here.png") 
                  ]

#------------------------------------------------------------------------------
# Background Alpha/Shade Level: 0 (Fully Translucent) -> 255 (Fully Opaque)
# BG_COLOR is used for tinting
#------------------------------------------------------------------------------
SHADE           = 0

#------------------------------------------------------------------------------
# Misc. Options: 1 = Enabled/Yes, 0 = Disabled/No
#------------------------------------------------------------------------------
ABOVE           = 0             # Panel is always above other apps
APPICONS        = 0             # Show application icons
AUTOHIDE        = 0             # Autohide uses the CLOCK_DELAY timer above
SHADOWS         = 0             # Show text shadows
SHOWLINES       = 0             # Show object seperation lines
SHOWBORDER      = 0             # Show a border around the panel

#------------------------------------------------------------------------------
# Desktop Names: Configure the names of your desktops
# If the option is [], PyPanel will attempt to use the desktop name specified
# by the XServer, if that fails it will use the desktop number as its name
# Ex. ["One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight"]
#------------------------------------------------------------------------------
DESKTOP_NAMES   = []

#------------------------------------------------------------------------------
# Panel Layout:       -----------------------------------
#                     [  1  ][  2  ][  3  ][  4  ][  5  ]
#                     -----------------------------------
#
# The panel layout is split into 5 sections numbered 1, 2, 3, 4 or 5 as shown
# in the diagram above.  Each of the following objects can be enabled by
# assigning it a section number or disabled by assigning it 0:
#------------------------------------------------------------------------------
LAUNCHER        = 1             # Application launcher section
DESKTOP         = 3             # Desktop name section
TASKS           = 2             # Task names section 
TRAY            = 4             # System tray section
CLOCK           = 5             # Clock section

#------------------------------------------------------------------------------
#                       Button Event Function Definitions
#------------------------------------------------------------------------------
# Left click   - button 1 
# Middle click - button 2
# Right click  - button 3
# Wheel up     - button 4
# Wheel down   - button 5 
#
# changeDesktop(x)
# - Change Desktop: Increase or decrease the current desktop by 'x' amount
# 
# toggleShade(task)
# - Shade or Unshade an application
#
# toggleHidden()
# - Minimize the panel to the top or bottom depending on its start location
#
# toggleMinimize(task, traise=1)
# - Minimize or Unminimize an application and optionally raise it
#
# taskRaise(task, focus=1)
# - Raise an application to the top of the window list and optionally focus it 
#
# taskLower(task, focus=0)
# - Lower an app to the bottom of the window list and optionally focus it
#
# taskFocus(task)
# - Give focus to the selected application, if it has focus then minimize it
#
# showDesktop()
# - Toggle between hiding and unhiding ALL applications
#------------------------------------------------------------------------------

#----------------------------------
def desktopButtonEvent(pp, button):
#----------------------------------
    """ Button event handler for the panel's desktop object """
        
    if button == 1:
        pp.changeDesktop(-1)
    elif button == 2:
        pp.changeDesktop(2)
    elif button == 3:
        pp.changeDesktop(1)
    elif button == 4:
        pp.changeDesktop(1)
    elif button == 5:
        pp.changeDesktop(-1)
        
#--------------------------------
def clockButtonEvent(pp, button):
#--------------------------------
    """ Button event handler for the panel's clock object """
    
    if button == 1:
        os.system("xclock &")
    elif button == 2:
        pass
    elif button == 3:
        pp.toggleHidden()  
    elif button == 4:
        pp.showDesktop()
    elif button == 5:
        pp.showDesktop()
        
#--------------------------------
def panelButtonEvent(pp, button):
#--------------------------------
    """ Button event handler for the panel with no active tasks """
    
    if button == 1:
        pass
    elif button == 2:
        pass
    elif button == 3:
        pass
    elif button == 4:
        pass
    elif button == 5:
        pass
        
#-------------------------------------
def taskButtonEvent(pp, button, task):
#-------------------------------------
    """ Button event handler for the panel's tasks """
    
    if button == 1:
        pp.taskFocus(task)
    elif button == 2:
        # Destroy the application
        task.obj.destroy()
    elif button == 3:
        # Ex. - XMMS doesn't shade, so we want to minimize it instead and
        #       still use button 3 to shade other applications
        #       task.tclass is the tasks class name (WM_CLASS)
        if "xmms" in task.tclass:
            pp.toggleMinimize(task)
        else:
            pp.toggleShade(task)
    elif button == 4:
        pp.taskRaise(task, focus=1)
    elif button == 5:
        pp.taskLower(task, focus=0)

Last edited by weakhead (2008-09-27 17:15:43)

Offline

#315 2008-09-28 03:08:03

voteforpedro36
Member
Registered: 2008-08-06
Posts: 99

Re: Share your Openbox Desktop ! :)

Slight change in some fonts.

th_9-27-08-bare.png

th_9-27-08-media.png

My bad for posting within 3 posts of myself.

Offline

#316 2008-09-28 14:49:19

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

Re: Share your Openbox Desktop ! :)

thumb.png

Offline

#317 2008-09-28 14:56:58

distortion
Member
Registered: 2007-11-08
Posts: 45

Re: Share your Openbox Desktop ! :)

tonyisnt wrote:

http://xs231.xs.to/xs231/08391/clean972.png.xs.jpg http://xs231.xs.to/xs231/08391/busy271.png.xs.jpg

First Openbox screens. big_smile

Firefox, PCManFM, Conky, Stalonetray.  Openbox theme is Glow Ibex (with a slight edit); GTK Theme is Candido-Calm; icons are gnome-alternative.

Mind sharing your stalonetray-config? smile

Offline

#318 2008-09-28 16:38:18

cinan
Member
From: Slovakia
Registered: 2008-07-04
Posts: 251
Website

Re: Share your Openbox Desktop ! :)

changed conky, wallpaper, borders and menu
clean: 5468486-155.png
some apps: 5468487-d8f.png

Last edited by cinan (2008-09-28 16:38:41)

Offline

#319 2008-09-28 16:44:50

weakhead
Member
From: Poland
Registered: 2008-08-21
Posts: 341
Website

Re: Share your Openbox Desktop ! :)

What OpenBox theme is that, cinan?
Overall, simple, clean and nice.

Offline

#320 2008-09-28 16:47:43

dhave
Arch Linux f@h Team Member
From: Outside the matrix.
Registered: 2005-05-15
Posts: 1,112

Re: Share your Openbox Desktop ! :)

weakhead wrote:

What OpenBox theme is that, cinan?
Overall, simple, clean and nice.

It's pretty much all black, right? Or is my laptop screen not rendering it well? Simple, clean and nice, I suppose....


Donate to Arch!

Tired? There's a nap for that. --anonymous

Offline

#321 2008-09-28 17:07:24

cinan
Member
From: Slovakia
Registered: 2008-07-04
Posts: 251
Website

Re: Share your Openbox Desktop ! :)

It's my own theme, originally based on Onyx-Black. Here it is: http://www.divshare.com/download/5468744-e3e

dhave: Maybe it depends on lcd settings... On my LCD it looks dark, but only borders and menu are almost black, wallpaper is dark-grey. I'll look on it at another PC, just to be sure.

Offline

#322 2008-09-28 20:58:17

Bert
Member
From: Zwolle
Registered: 2006-04-10
Posts: 14

Re: Share your Openbox Desktop ! :)

bb_1280x1024946.png.xs.jpg

Offline

#323 2008-09-29 01:01:41

heleos
Member
From: Maine, USA
Registered: 2007-04-24
Posts: 678

Re: Share your Openbox Desktop ! :)

Offline

#324 2008-09-29 07:31:55

omp
Member
From: Glendale, California
Registered: 2005-10-02
Posts: 41
Website

Re: Share your Openbox Desktop ! :)


boo!

Offline

#325 2008-09-29 19:16:52

Skruf
Member
From: Norway
Registered: 2008-08-08
Posts: 10

Re: Share your Openbox Desktop ! :)

Clean:
th_2008-09-29-210556_1280x800_scrot.png

Less clean:
th_2008-09-29-210836_1280x800_scrot.png

Openbox with XFCE-panel
GTK: Breathe
OB: Breathe
Font: Sans 8

Offline

Board footer

Powered by FluxBB