You are not logged in.

#426 2008-11-19 05:19:07

xvedejas
Member
Registered: 2008-11-19
Posts: 18

Re: Share your Openbox Desktop ! :)

Offline

#427 2008-11-21 18:29:55

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

frig_sc1_th.jpg
frig_sc2_th.jpg

Gtk theme : Rezlooks gray
Icons : Crashbit
Obtheme : Carbon (modified a bit)
Panel : bmpanel transpy theme
Running apps : sonata sakura thunar mirage conky wbar

i'm pretty happy with it atm but i still have to make my own bmpanel theme and some other fonts adjustements
feel free to ask for any of the config files.

Offline

#428 2008-11-21 18:52:10

arch0r
Member
From: From the Chron-o-John
Registered: 2008-05-13
Posts: 597

Re: Share your Openbox Desktop ! :)

wow, wbar looks awesome! :>

it's always worth looking in this thread :>

Offline

#429 2008-11-21 18:55:52

NeOnsKuLL
Member
From: Havana, Cuba
Registered: 2005-03-29
Posts: 117

Re: Share your Openbox Desktop ! :)

Hi all, this is my OpenBox3 workspace

Clean:
71646238.png


OpenBox Theme: Onyx
GTK+ Theme: Nonix
Icon Theme: Crashbit
Apps: OpenBox3, lxpanel, conky, Thunar, volwheel (volume control, at systray), ob3menugen (OpenBox3 menu generator)

You can get the "stable" ob3menugen at: http://bbs.archlinux.org/viewtopic.php?id=58834
Or the development version at my email, just send me a private message (I will create a project in SF or dsource.org ASAP)


conkyrc-calendar

default_color white
default_shade_color black
default_outline_color black
#color0 7ca9f0
color0 e04613

# set to yes if you want Conky to be forked in the background
background no

# Use Xft?
use_xft yes

# Xft font when Xft is enabled
xftfont Bitstream Vera Sans Mono:size=10

xftalpha 1
# out_to_console no
# out_to_console no
update_interval 60
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_colour f9f9f9
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 0 0
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 0
border_margin 0
border_width 0

#alignment top_left
alignment top_right
#alignment bottom_left
#alignment bottom_right
#alignment none

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

uppercase no
override_utf8_locale no
use_spacer none

TEXT
${execp /home/pavel/.conkyrc/bin/ConkyCalendar.py}

ConkyCalendar.py

#!/usr/bin/env python

import os, time, calendar

FORMATBEGIN = "${color0}"
FORMATEND = "${color}"


def getMonthDaysFormatted():
    today = int(time.strftime("%d"))

    cal = calendar.Calendar(calendar.SUNDAY)
    month = cal.monthdayscalendar(int(time.strftime("%Y")), int(time.strftime("%m")))

    for weekID in xrange(len(month)):
        for dayID in xrange(7):
    
            if month[weekID][dayID] == 0:
                month[weekID][dayID] = "  "
    
            elif month[weekID][dayID] == today:
                month[weekID][dayID] = "%s% 2s%s" % (FORMATBEGIN, month[weekID][dayID], FORMATEND)
    
            else:
                month[weekID][dayID] = "% 2s" % month[weekID][dayID]
    
        month[weekID] = " ".join(month[weekID])
    return "\n".join(month)


def getCalendarHeader():
    header = ""    
    
    monthYear = "%s  %s" % (time.strftime("%B"), time.strftime("%Y"))
    side = " "*((20-len(monthYear))/2)
    monthYear = "%s%s%s" % (side, monthYear, side)
    if len(monthYear) < 20:
        monthYear = "%s " % monthYear
    
    weekHeader = "Su Mo Tu We Th Fr Sa"
    
    header = "%s\n%s\n" % (monthYear, weekHeader)
    return header


def getFormattedCalendar():
    header = getCalendarHeader()
    weeks = getMonthDaysFormatted()
    return "%s%s" % (header, weeks)


print(getFormattedCalendar())

conkyrc-cpu

default_color white
default_shade_color black
default_outline_color black

color0 7ca9f0
color1 e04613

# set to yes if you want Conky to be forked in the background
background no

# Use Xft?
use_xft yes

# Xft font when Xft is enabled
xftfont Bitstream Vera Sans:size=10

xftalpha 1
update_interval 1
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_colour f9f9f9
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 0 80
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 0
border_margin 0
border_width 0

alignment top_left
#alignment top_right
#alignment bottom_left
#alignment bottom_right
#alignment none

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

uppercase no
override_utf8_locale no
use_spacer none
no_buffers yes

TEXT
${voffset 10}${color0}${font Bitstream Vera Sans:size=10}Core 1:${color}${offset 5}${voffset -7}${cpugraph cpu1 18,60 7ca9f0 E04613} ${voffset 6}${font Bitstream Vera Sans:size=10} ${cpu cpu1}% ${voffset 0} 
${color0}${font Bitstream Vera Sans:size=10}Core 2:${color}${offset 5}${voffset -7}${cpugraph cpu2 18,60 7ca9f0 E04613} ${voffset 6}${font Bitstream Vera Sans:size=10} ${cpu cpu2}% ${voffset 0}

conkyrc-monitor-bar

default_color white
default_shade_color black
default_outline_color black

color0 7ca9f0
color1 e04613

# set to yes if you want Conky to be forked in the background
background no

# Use Xft?
use_xft yes

# Xft font when Xft is enabled
xftfont Bitstream Vera Sans:size=10

xftalpha 1
update_interval 1
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_colour f9f9f9
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 1152 30
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 0
border_margin 0
border_width 0

alignment top_left
#alignment top_right
#alignment bottom_left
#alignment bottom_right
#alignment none

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

uppercase no
override_utf8_locale no
use_spacer none
no_buffers yes

TEXT
${offset 10}${voffset 5}${color0}${font Bitstream Vera Sans:size=12}RAM:${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}$memperc% of $memmax ${offset 5}${voffset -3}${color0}${font Bitstream Vera Sans:size=12}Swap: ${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}$swapperc% of $swapmax ${offset 5}${voffset -3}${color0}${font Bitstream Vera Sans:size=12}Temp: ${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}Sys: ${hwmon temp 1}C ${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}CPU: ${hwmon temp 2}C ${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}sda: ${hddtemp sda} ${voffset 0}${color}${offset 5}${voffset 0}${font Bitstream Vera Sans:size=10}sdb: ${hddtemp sdb} ${voffset 0}

See you

PS: Tomorrow I'll post a "dirty" scrrenshot, 'cause this configuration is at home, and I'm at my office now.


Intel Core 2 Duo E8400 3.0 GHz | 2x1GB 667MHz | 250+750GB Seageate SATAII | Samsung 19" TFT 1440x900
Openbox + obmenugen + PyTyle | bmpanel2 | oblogout | conky | pyBgSetter (with Esetroot as backend)
Projects: obmenugen, pyBgSetter

Offline

#430 2008-11-21 19:00:11

markp1989
Member
Registered: 2008-10-05
Posts: 431

Re: Share your Openbox Desktop ! :)

Obtheme: Black-n-white modded
gtk-theme: Industrial blue black from gnome look
icons: Smokikon_v09
dock: fbpanel
wallpaper: smoke2880x900

cd ~/ 
fbpanel &
gmpc --start-hidden &
conky &
feh --bg-scale /home/mark/smoke2880x900.jpg &
# fbpanel <profile> config file
# see http://fbpanel.sf.net/docs.html for complete configuration guide


Global {
    edge = bottom
    allign = center
    margin = 16
    widthtype = percent
    width = 100
    height = 22
    transparent = false
    tintcolor = #000000
    alpha = 172
    setdocktype = true
    setpartialstrut = true
    autohide = false
    heightWhenHidden = 2
}

Plugin {
    type = space
    config {
        size = 5
    }
}


Plugin {
    type = menu
    config {
        image = /home/mark/.icons/Smokikon_v09/scalable/apps/gnome-about-logo.png
        systemmenu {
        }
        separator {
        }
        item {
            icon = gnome-settings
            name = configure
            image = /usr/share/fbpanel/images/gnome-setting.svg
            command = configure
        }
        item {
            icon = gnome-terminal
            name = terminal
            image = /usr/share/fbpanel/images/gnome_terminal.svg
            action = /usr/bin/terminal
        }
        item {
            name = Shutdown
            icon = gnome-logout
            action = killall openbox
        }
    }
}


Plugin {
    type = space
    config {
        size = 5
    }
}


Plugin {
    type = taskbar
    expand = true
    config {
        ShowIconified = true
        ShowMapped = true
        ShowAllDesks = false
        tooltips = true
        IconsOnly = false
        MaxTaskWidth = 150
    }
}


Plugin {
    type = tray
}


Plugin {
    type = space
    config {
        size = 5
    }
}


Plugin {
    type = launchbar
    config {
        button {
            icon = media-skip-backward
            tooltip = skip back
            action = /home/mark/.mpd/prev.sh
        }
    }
}


Plugin {
    type = space
    config {
        size = 1
    }
}


Plugin {
    type = launchbar
    config {
        button {
            icon = media-playback-start
            tooltip = Play/Pause
            action = /home/mark/.mpd/toggle.sh
        }
    }
}


Plugin {
    type = space
    config {
        size = 1
    }
}


Plugin {
    type = launchbar
    config {
        button {
            icon = media-skip-forward
            tooltip = skip current song
            action = /home/mark/.mpd/next.sh
        }
    }
}

Plugin {
    type = space
    config {
        size = 5
    }
}


Plugin {
    type = dclock
    config {
        ClockFmt = %R
        TooltipFmt = %A %x
        Action = xmessage Please define some command &
        color = #ffffff
    }
}
 # 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 87

# 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 20
gap_y 130

# 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 yes

#Email:
#${pop3_unseen  **SERVER NAME**  **USERNAME**  **PASSWORD**} new messages

TEXT
${color a4a4a4}${alignc 28}${font DotMatrix:size=16}${time %k:%M}
${font}${color 668ABF}${alignc}${voffset -10}${time %A}

${color 9AB7DC}Date:${color a4a4a4}${alignr}${time %D}
${color 9AB7DC}${font}Email:${color a4a4a4}${alignr}${execi 300 perl ~/scripts/gmail.pl n} new

${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}Cpu:${color a4a4a4}${alignr}${cpu cpu1}% ${color 668ABF}${acpitemp}C
${color 668ABF}${cpugraph cpu1 20,85 668ABF 9AB7DC} 

${color 9AB7DC}Gpu:${color a4a4a4}${alignr}${execi 20 nvidia-settings -q GPUCurrentClockFreqs |grep Attribute |awk '{print $4}' |cut -c1-7} ${color 668ABF}${execi 20 nvidia-settings -q gpucoretemp |grep Attribute |awk '{print $4}' |cut -c1-2}°C

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

${color 9AB7DC}Up:${color a4a4a4}${alignr}${upspeed eth0}KB/s
${color 668ABF}${upspeedgraph eth0 20,85 668ABF 9AB7DC}
${color 9AB7DC}Total: ${color a4a4a4}${totalup eth0}

${color 9AB7DC}Down:${color a4a4a4}${alignr}${downspeed eth0}KB/s
${color 668ABF}${downspeedgraph eth0 20,85 668ABF 9AB7DC}
${color 9AB7DC}Total: ${color a4a4a4}${totaldown eth0}

${color a4a4a4}${alignc 2}${font DejaVu Sans Mono:size=18}${execi 1 ~/scripts/mpd.awk}
${font}${color 668ABF}${alignc}${voffset -15}${mpd_status}

${color 9AB7DC}Random:${color a4a4a4}${alignr}${mpd_random}

${color 9AB7DC}Artist:
${color a4a4a4}${mpd_artist}
${color 9AB7DC}Title:
${color a4a4a4}${mpd_title}
${color 9AB7DC}Album:
${color a4a4a4}${mpd_album}

${color a4a4a4}${mpd_elapsed}${alignr}${mpd_length}
${color 668ABF}${mpd_bar 3,85}

http://i246.photobucket.com/albums/gg10 … _scrot.png

Last edited by markp1989 (2008-11-21 19:03:33)


Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD

Offline

#431 2008-11-21 19:05:10

Astrodomine
Member
Registered: 2008-11-08
Posts: 7

Re: Share your Openbox Desktop ! :)

NeOnsKuLL wrote:

Hi all, this is my OpenBox3 workspace

Clean:
http://arch.kimag.es/thumbs/71646238.png

Can you share your wallpaper please? It looks awesome!

Offline

#432 2008-11-21 19:15:12

NeOnsKuLL
Member
From: Havana, Cuba
Registered: 2005-03-29
Posts: 117

Re: Share your Openbox Desktop ! :)

Astrodomine wrote:
NeOnsKuLL wrote:

Hi all, this is my OpenBox3 workspace

Clean:
http://arch.kimag.es/thumbs/71646238.png

Can you share your wallpaper please? It looks awesome!

http://arch.kimag.es/share/83340787.png


Intel Core 2 Duo E8400 3.0 GHz | 2x1GB 667MHz | 250+750GB Seageate SATAII | Samsung 19" TFT 1440x900
Openbox + obmenugen + PyTyle | bmpanel2 | oblogout | conky | pyBgSetter (with Esetroot as backend)
Projects: obmenugen, pyBgSetter

Offline

#433 2008-11-21 20:04:47

michaelramm
Member
From: Northport, AL USA
Registered: 2008-09-08
Posts: 10
Website

Re: Share your Openbox Desktop ! :)

FaN_OnLy1 wrote:

http://wilhearts.com/frig_sc1.jpg
i'm pretty happy with it atm but i still have to make my own bmpanel theme and some other fonts adjustements
feel free to ask for any of the config files.

Could you post your conkyrc? I am new to conky and really like the look that you have for your clock.

Thanks,
Michael


OpenArch = Dell Dimension 4300 with Arch Linux and Openbox3

Offline

#434 2008-11-22 14:06:37

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

Sure , here it is :
.conkyrc

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
own_window_colour 262729

#borders
#draw_borders no
border_margin 1
 
#shades
draw_shades no
draw_graph_borders yes
gap_x 20
gap_y 5
alignment top_right

update_interval 0.5

use_xft yes

#MPD
mpd_host localhost
mpd_port 6600

#Colors
color0 c0c0c0
color1 E04613

TEXT

${color1}${font Demi:size=72}${time %H}
${offset 115}${voffset -153}${font Demi:size=30}${time %M}
${offset 115}${voffset -25}${color0}${font Demi:size=14}${time %a}
${offset 115}${voffset 0}${color0}${font Demi:size=14}${time %d}
${offset 115}${voffset -5}${time %b}
${voffset 5}${color0}$stippled_hr
${voffset 0}${font nu}${color1}$nodename ${alignr}${color0}$sysname $kernel on ${color1}$machine
${color0}Updates: ${alignr}${color1}${execi 300 perl ~/.scripts/conky-updates.pl}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}HARDWARE
${voffset 5}${color0}CPU0: ${color1}${cpu cpu0}%${color0}${alignr}CPU1: ${color1}${cpu cpu1}%
${color0}${alignc}${freq_g}GHz
${color1}${voffset 2}${cpubar cpu0 4,0}
${voffset 1}${cpubar cpu1 4,0}
${voffset 5}${color0}RAM: ${color1}$memperc%
${color0}${alignc}$memmax
${color1}${voffset 2}${membar 4,0}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}FILESYSTEM
${voffset 5}${color0}Main ${alignr}${color1}${fs_free_perc /}% ${color0}free
${color1}${alignc}${fs_used /}${color0}/${fs_size /}
${color1}${voffset 2}${fs_bar 4,0 /}
${voffset 5}${color0}Home ${alignr}${color1}${fs_free_perc /home}% ${color0}free
${color1}${alignc}${fs_used /home}${color0}/${fs_size /home}
${color1}${voffset 2}${fs_bar 4,0 /home}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}NETWORK
${voffset 2}${color0}Up: ${color1}${upspeed eth0}Kb ${alignr}${color0}Down: ${color1}${downspeed eth0}Kb
${color0}${alignc}${addr eth0}
${voffset 1}${color1}${upspeedgraph eth0 15,70} ${alignr}${downspeedgraph eth0 15,70}
${if_running mpd}${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}MPD
${voffset 5}${color0}${mpd_status} ${alignr}${color1}${mpd_elapsed}${color0}/${mpd_length}
${voffset 5}${alignc}${color1}${mpd_smart}
${color1}${mpd_bar 4,0}
${color0}${alignc}${mpd_album}
${voffset 5}VOL: ${color1}${mpd_vol}% ${alignr}${color0}SH:${color1}${mpd_random} ${color0}RP:${color1}${mpd_repeat}
${voffset 5}${color0}$stippled_hr$endif

Last edited by FaN_OnLy1 (2008-11-22 14:06:54)

Offline

#435 2008-11-22 20:45:50

ninjaprawn
Member
From: Manchester, UK
Registered: 2008-01-26
Posts: 485

Re: Share your Openbox Desktop ! :)

http://ninjaprawn.myby.co.uk/desk.jpg

this is my new desktop, i only recently moved to openbox after a number of months with fluxbox n a couple of days with icewm! I never use a launch bar as I bind everything to keys!

stalonetray (system tray)
tint2 (task bar, clock)
pcmanfm
nitrogen (manage & set wallpaper)
parcellite (clipboard manager)
xcompmgr -c -D20 (composite manager with shadows and delay!)

i am using the mashup icon set with I.C.E gtk theme and the ubuntustudio theme!

http://ninjaprawn.myby.co.uk/desk.jpg

Last edited by ninjaprawn (2008-11-22 20:48:21)


2007 - Started using Arch Linux as my only/main OS
- Samsung Series 3, Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz - 8Gb DDR3 ram - 700Gb HDD
On board intel Graphics & Sound

Offline

#436 2008-11-22 20:46:48

markp1989
Member
Registered: 2008-10-05
Posts: 431

Re: Share your Openbox Desktop ! :)

I spent all day watching 24 on sky2, and im still watching it, whilst doing it i jus threw a quick wallpaper together, not brilliant work, but it looks effective

os: 64bit arch
WM: openbox
Obtheme: Black-n-white modded
gtk-theme: Industrial blue black from gnome look
icons: Smokikon_v09
dock: fbpanel
wallpaper: somthing i threw together in gimp


Apps: Conky, firefox . fbpanel, pcmanfm. xfce terminal, emesene, gmpc, mpd

Dirty:  http://i246.photobucket.com/albums/gg10 … _scrot.png

Clean: http://i246.photobucket.com/albums/gg10 … _scrot.png

Last edited by markp1989 (2008-11-22 20:59:02)


Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD

Offline

#437 2008-11-22 20:50:52

ninjaprawn
Member
From: Manchester, UK
Registered: 2008-01-26
Posts: 485

Re: Share your Openbox Desktop ! :)

markp1989 wrote:

I spent all day watching 24 on sky2, and im still watching it, whilst doing it i jus threw a quick wallpaper together, not brilliant work, but it looks effective

os: 64bit arch
WM: openbox
Obtheme: Black-n-white modded
gtk-theme: Industrial blue black from gnome look
icons: Smokikon_v09
dock: fbpanel
wallpaper: somthing i threw together in gimp


Apps: Conky, firefox . fbpanel, pcmanfm. xfce terminal, emesene, gmpc, mpd

Dirty:  http://i246.photobucket.com/albums/gg10 … _scrot.png

Clean: http://i246.photobucket.com/albums/gg10 … _scrot.png

mate, those links just take me to the photobucket home page!


2007 - Started using Arch Linux as my only/main OS
- Samsung Series 3, Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz - 8Gb DDR3 ram - 700Gb HDD
On board intel Graphics & Sound

Offline

#438 2008-11-22 20:59:31

markp1989
Member
Registered: 2008-10-05
Posts: 431

Re: Share your Openbox Desktop ! :)

ninjaprawn wrote:
markp1989 wrote:

I spent all day watching 24 on sky2, and im still watching it, whilst doing it i jus threw a quick wallpaper together, not brilliant work, but it looks effective

os: 64bit arch
WM: openbox
Obtheme: Black-n-white modded
gtk-theme: Industrial blue black from gnome look
icons: Smokikon_v09
dock: fbpanel
wallpaper: somthing i threw together in gimp


Apps: Conky, firefox . fbpanel, pcmanfm. xfce terminal, emesene, gmpc, mpd

Dirty:  http://i246.photobucket.com/albums/gg10 … _scrot.png

Clean: http://i246.photobucket.com/albums/gg10 … _scrot.png

mate, those links just take me to the photobucket home page!

ops, fixed now


Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD

Offline

#439 2008-11-23 04:12:26

michaelramm
Member
From: Northport, AL USA
Registered: 2008-09-08
Posts: 10
Website

Re: Share your Openbox Desktop ! :)

FaN_OnLy1 wrote:

Sure , here it is :
.conkyrc

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
own_window_colour 262729

#borders
#draw_borders no
border_margin 1
 
#shades
draw_shades no
draw_graph_borders yes
gap_x 20
gap_y 5
alignment top_right

update_interval 0.5

use_xft yes

#MPD
mpd_host localhost
mpd_port 6600

#Colors
color0 c0c0c0
color1 E04613

TEXT

${color1}${font Demi:size=72}${time %H}
${offset 115}${voffset -153}${font Demi:size=30}${time %M}
${offset 115}${voffset -25}${color0}${font Demi:size=14}${time %a}
${offset 115}${voffset 0}${color0}${font Demi:size=14}${time %d}
${offset 115}${voffset -5}${time %b}
${voffset 5}${color0}$stippled_hr
${voffset 0}${font nu}${color1}$nodename ${alignr}${color0}$sysname $kernel on ${color1}$machine
${color0}Updates: ${alignr}${color1}${execi 300 perl ~/.scripts/conky-updates.pl}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}HARDWARE
${voffset 5}${color0}CPU0: ${color1}${cpu cpu0}%${color0}${alignr}CPU1: ${color1}${cpu cpu1}%
${color0}${alignc}${freq_g}GHz
${color1}${voffset 2}${cpubar cpu0 4,0}
${voffset 1}${cpubar cpu1 4,0}
${voffset 5}${color0}RAM: ${color1}$memperc%
${color0}${alignc}$memmax
${color1}${voffset 2}${membar 4,0}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}FILESYSTEM
${voffset 5}${color0}Main ${alignr}${color1}${fs_free_perc /}% ${color0}free
${color1}${alignc}${fs_used /}${color0}/${fs_size /}
${color1}${voffset 2}${fs_bar 4,0 /}
${voffset 5}${color0}Home ${alignr}${color1}${fs_free_perc /home}% ${color0}free
${color1}${alignc}${fs_used /home}${color0}/${fs_size /home}
${color1}${voffset 2}${fs_bar 4,0 /home}
${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}NETWORK
${voffset 2}${color0}Up: ${color1}${upspeed eth0}Kb ${alignr}${color0}Down: ${color1}${downspeed eth0}Kb
${color0}${alignc}${addr eth0}
${voffset 1}${color1}${upspeedgraph eth0 15,70} ${alignr}${downspeedgraph eth0 15,70}
${if_running mpd}${voffset 5}${color0}$stippled_hr
${voffset 5}${color0}${alignc}MPD
${voffset 5}${color0}${mpd_status} ${alignr}${color1}${mpd_elapsed}${color0}/${mpd_length}
${voffset 5}${alignc}${color1}${mpd_smart}
${color1}${mpd_bar 4,0}
${color0}${alignc}${mpd_album}
${voffset 5}VOL: ${color1}${mpd_vol}% ${alignr}${color0}SH:${color1}${mpd_random} ${color0}RP:${color1}${mpd_repeat}
${voffset 5}${color0}$stippled_hr$endif

Thanks! I really like the look that I have going with it.

What is that panel that you are using? I am having a hard time deciding on one. I have tried bmpanel, fbpanel, lxpanel, and I am not liking any of them.

Michael

Last edited by michaelramm (2008-11-23 04:41:51)


OpenArch = Dell Dimension 4300 with Arch Linux and Openbox3

Offline

#440 2008-11-23 13:50:37

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

Well , i am using bmpanel with transpy theme set to appear on bottom (by default its appearing on top), download the theme on the bmpanel website, then extract the archive content to /usr/share/bmpanel/themes , and launch bmpanel with the "bmpanel transpy &" command in your autostart.sh

But i'm aiming soon to use tint2 + trayer.

Offline

#441 2008-11-23 14:11:52

ninjaprawn
Member
From: Manchester, UK
Registered: 2008-01-26
Posts: 485

Re: Share your Openbox Desktop ! :)

FaN_OnLy1 wrote:

Well , i am using bmpanel with transpy theme set to appear on bottom (by default its appearing on top), download the theme on the bmpanel website, then extract the archive content to /usr/share/bmpanel/themes , and launch bmpanel with the "bmpanel transpy &" command in your autostart.sh

But i'm aiming soon to use tint2 + trayer.

im using tint2! it is very good! http://ninjaprawn.myby.co.uk/desk.jpg


2007 - Started using Arch Linux as my only/main OS
- Samsung Series 3, Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz - 8Gb DDR3 ram - 700Gb HDD
On board intel Graphics & Sound

Offline

#442 2008-11-24 17:14:29

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

finished my tint + trayer config to go with my conky smile
http://wilhearts.com/frig_sc3.png

Last edited by FaN_OnLy1 (2008-11-24 17:16:32)

Offline

#443 2008-11-24 18:12:47

oew
Member
From: Norway
Registered: 2006-11-08
Posts: 105

Re: Share your Openbox Desktop ! :)

joqueza wrote:

Can I have the .conkyrc for your clock? Looks great smile


___
oew


there's no place like ~/

Offline

#444 2008-11-25 15:48:43

michaelramm
Member
From: Northport, AL USA
Registered: 2008-09-08
Posts: 10
Website

Re: Share your Openbox Desktop ! :)

FaN_OnLy1 wrote:

finished my tint + trayer config to go with my conky smile
http://wilhearts.com/frig_sc3.png

Looks great!

I got my clock setup after yours. I will post a SS tonight when I get home.

I am still searching for a panel. I like your tint2+trayer setup, so I may try that.

Michael


OpenArch = Dell Dimension 4300 with Arch Linux and Openbox3

Offline

#445 2008-11-25 17:12:27

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

michaelramm wrote:
FaN_OnLy1 wrote:

finished my tint + trayer config to go with my conky smile
http://wilhearts.com/frig_sc3.png

Looks great!

I got my clock setup after yours. I will post a SS tonight when I get home.

I am still searching for a panel. I like your tint2+trayer setup, so I may try that.

Michael

Well you can try this :
.tintrc

#---------------------------------------------
# TINT CONFIG FILE
#---------------------------------------------

#---------------------------------------------
# PANEL
#---------------------------------------------
panel_mode = single_desktop
panel_monitor = 1
panel_position = bottom left
#put here your screen width resolution -120 px, here 1280-120 =1160px
panel_size = 1160 24
panel_margin = 0 0
panel_padding = 0 0
font_shadow = 0

#---------------------------------------------
# PANEL BACKGROUND AND BORDER
#---------------------------------------------
panel_rounded = 0
panel_border_width = 0
panel_background_color = #000000 25
panel_border_color = #ffffff 18

#---------------------------------------------
# TASKS
#---------------------------------------------
task_text_centered = 1
task_width = 160
task_margin = 2
task_padding = 6
task_icon_size = 20
task_font = nu 12
task_font_color = #ffffff 25
task_active_font_color = #E04613 100

#---------------------------------------------
# TASK BACKGROUND AND BORDER
#---------------------------------------------
task_rounded = 0
task_background_color = #1d1d1d 100
task_active_background_color = #2d2d2d 100
task_border_width = 0
task_border_color = #ffffff 0
task_active_border_color = #000000 85

#---------------------------------------------
# CLOCK
#---------------------------------------------
#time1_format = %H:%M
#time1_font = Fixed 12
#time2_format = %d/%m
#time2_font = Fixed 8
#clock_font_color = #E04613 100

#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = close
mouse_scroll_up = toggle
mouse_scroll_down = iconify

and launch trayer in your autostart.sh with this command :

trayer --transparent true --alpha 190 --edge bottom --align right --widthtype pixel --width 120 --heighttype pixel --height 24 --tint 000000 --SetDockType true &

Offline

#446 2008-11-26 00:11:21

monstermudder78
Member
Registered: 2008-05-18
Posts: 120

Re: Share your Openbox Desktop ! :)

joqueza wrote:

Would you care to share your .conkyrc?  I really like the looks of that.

Offline

#447 2008-11-26 12:40:05

michaelramm
Member
From: Northport, AL USA
Registered: 2008-09-08
Posts: 10
Website

Re: Share your Openbox Desktop ! :)

OK, Here is my first attempt at openbox desktop configuration.

I am using FaN_OnLy1 tint2, trayer, and conky config that are listed above. I have urxvt installed, but have not learned how to config it yet. (Any resources would be helpful.)

http://flickr.com/photos/1manit/3060446271/

It is a work in progress.

Michael


OpenArch = Dell Dimension 4300 with Arch Linux and Openbox3

Offline

#448 2008-11-26 13:41:13

tetonedge
Member
From: Fort Collins, CO
Registered: 2008-08-22
Posts: 71
Website

Re: Share your Openbox Desktop ! :)

#michaelramm

Looks good man, Like the arch color scheme

Offline

#449 2008-11-26 17:33:47

oew
Member
From: Norway
Registered: 2006-11-08
Posts: 105

Re: Share your Openbox Desktop ! :)

copy/paste from the November 2008 screenshots-thread:
clean_th.png
dirty_th.png
(click for large)

openbox, mpd+sonata, urxvt, conky
openbox theme is paperdelusion
gtk theme is nova-blue, recolored to fith with paperdelusion
font is dejavu sans
font in urxvt is terminus
large font in conky is dot font
wallpaper from first post in your favorite wallpaper-thread


___
oew


there's no place like ~/

Offline

#450 2008-11-27 22:40:18

FaN_OnLy1
Member
From: Montpellier, France
Registered: 2008-09-22
Posts: 126

Re: Share your Openbox Desktop ! :)

orblack_scrot_th.png

Gtk : Rezlooks Graphite
Ob : Orblack slim (http://www.box-look.org/content/show.php?content=94027)
Icons : Crashbit

Apps : Deluge, emesene, glipper-old, volwheel, Sonata, tint, trayer, netwmpager, wbar, thunar, conky

Offline

Board footer

Powered by FluxBB