You are not logged in.

#1051 2010-03-07 00:34:22

destruct
Member
Registered: 2009-12-24
Posts: 14

Re: Share your Openbox Desktop ! :)

jagardaniel wrote:

http://omploader.org/tM3I3eg
I think I found almost everything included in the screenshot here smile

Can i have the Wallpaper. Thx.

Offline

#1052 2010-03-07 12:26:59

lordmetroid
Member
Registered: 2009-09-27
Posts: 75

Re: Share your Openbox Desktop ! :)

What is the image viewing application you use?

Offline

#1053 2010-03-07 12:29:33

rent0n
Member
From: Italy
Registered: 2009-10-29
Posts: 457
Website

Re: Share your Openbox Desktop ! :)

lordmetroid wrote:

What is the image viewing application you use?

It's Gpicview, the faster GUI image viewer ever.


rent0n@deviantART | rent0n@bitbucket | rent0n@identi.ca | LRU #337812
aspire: Acer Aspire 5920 Arch Linux x86_64 | beetle: Gericom Beetle G733 Arch Linux i686

Offline

#1054 2010-03-07 12:35:04

Nagian
Member
From: Altach, Austria
Registered: 2009-08-03
Posts: 70

Re: Share your Openbox Desktop ! :)

Would you mind sharing your conky config?
I don't know how to display these bars vertically...

Offline

#1055 2010-03-07 13:04:27

jagardaniel
Member
From: Sweden
Registered: 2008-10-03
Posts: 12

Re: Share your Openbox Desktop ! :)

destruct wrote:
jagardaniel wrote:

http://omploader.org/tM3I3eg
I think I found almost everything included in the screenshot here smile

Can i have the Wallpaper. Thx.

http://omploader.org/vM251Ng

Last edited by jagardaniel (2010-03-07 13:04:46)

Offline

#1056 2010-03-07 14:27:03

wujaklija
Member
From: /Serbia/Ruma
Registered: 2009-02-14
Posts: 55

Re: Share your Openbox Desktop ! :)

06-03-201012678771461440.jpg  06-03-201012678773011440.jpg

thanks to larch and ArchBang , i made smaller copy of my desktop ...

Offline

#1057 2010-03-07 18:22:54

Sarai
Member
From: Alaska
Registered: 2010-02-20
Posts: 62

Re: Share your Openbox Desktop ! :)

Nagian wrote:

Would you mind sharing your conky config?
I don't know how to display these bars vertically...

It's a lua script, so for it to display you need conky-lua from the AUR along with all its dependencies.
Then, create this script and put it in your ~/scripts folder or wherever you keep that stuff

--[[ 
    conky vertical bar graph
    by iggykoopa mods by arpinux(2009)

       most of the credit goes to londonali1010, I stole big chunks from her ring graphs
]]

require 'cairo'

settings_table = {
{
    name='cpu',
    arg='cpu1',
    max=100,
    width = 20,
    height = 125,
    x = 1450,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='acpitemp',
    arg='',
    max=100,
    width = 20,
    height = 125,
    x = 1475,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='memperc',
    arg='',
    max=100,
    width = 20,
    height = 125,
    x = 1500,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='fs_used_perc',
    arg='/',
    max=100,
    width = 20,
    height = 125,
    x = 1525,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='mpd_vol',
    arg='',
    max=100,
    width = 20,
    height = 125,
    x = 1550,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='wireless_link_qual',
    arg='wlan0',
    max=100,
    width = 20,
    height = 125,
    x = 1575,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
{
    name='battery_percent',
    arg='BAT0',
    max=100,
    width = 20,
    height = 125,
    x = 1600,
    y = 865,
    borderRed = 1,
    borderGreen = 1,
    borderBlue = 1,
    fillRed = 0.3,
    fillGreen = 0.3,
    fillBlue = 0.3
},
}

function draw_bar(pct, pt)
    local cs=cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
    cr=cairo_create(cs)
    cairo_set_source_rgb (cr, pt['borderRed'], pt['borderGreen'], pt['borderBlue'])
    cairo_set_line_width (cr, 0)
    cairo_rectangle (cr, pt['x'], pt['y'], pt['width'], pt['height'])
    cairo_stroke (cr)
    cairo_set_source_rgb (cr, pt['fillRed'], pt['fillGreen'], pt['fillBlue'])
    cairo_set_line_width (cr, pt['width'] - 2)
    cairo_move_to (cr, (pt['width'] / 2) + pt['x'], pt['height'] + pt['y'] - 1)
    cairo_line_to (cr, (pt['width'] / 2) + pt['x'], pt['height'] - (pt['height'] * pct) + pt['y'] - 1)
    cairo_stroke (cr)
    cairo_destroy(cr)
    cr = nil
end

function conky_bar_stats()
    local function setup_bars(pt)
        local str=''
        local value=0

        str=string.format('${%s %s}',pt['name'],pt['arg'])
        str=conky_parse(str)
    
        value=tonumber(str)
        pct=value/pt['max']

        draw_bar(pct,pt)
    end

    if conky_window == nil then return end
    local updates=conky_parse('${updates}')
    update_num=tonumber(updates)


    if update_num>5 then
        for i in pairs(settings_table) do
            setup_bars(settings_table[i])
        end
    end
end

Save it and give it a name with the file extension .lua

Then in your conkyrc you can call it by placing

lua_load path_to_script.lua
lua_draw_hook_pre bar_stats

anywhere above the TEXT marker.

For example:


#.CONKYRC BY SARAI

#avoid flicker

double_buffer yes



#own window to run simultanious 2 or more conkys

own_window  yes

own_window_transparent yes

own_window_type override

own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager



#borders

draw_borders no

border_inner_margin 0
border_outer_margin 0



#shades

draw_shades no



#position


gap_x 0

gap_y 0
alignment top_right



#behaviour

update_interval 2



#colour

default_color  454545
color2 80C31B
color3 1793d1



#default_shade_color 000000

own_window_colour 393939



#font

use_xft yes

xftfont Rough_Typewriter:size=25
xftalpha 1
#to prevent window from moving

use_spacer none
minimum_size 1680 1050


lua_load /home/sarai/downloads/conky_bars/vert_bars.lua
lua_draw_hook_pre bar_stats

TEXT
${alignc 695}${voffset 10}${color}${time %I}${color2}${time %M}${color}
${alignc 695}${color}${time %d}${color2}${time %m}${font sans:size=5}${color FFFFFF}
${alignc -619}${voffset 880}${cpu cpu1}
${alignc -644}${voffset -12}${acpitemp}
${alignc -669}${voffset -12}${memperc}
${alignc -691}${voffset -12}${fs_used_perc /}
${alignc -719}${voffset -12}${mpd_vol}
${alignc -744}${voffset -12}${wireless_link_qual_perc wlan0}
${alignc -769}${voffset -12}${battery_percent BAT0}${color}
${offset 1450}${voffset -7}${cpubar cpu7 1,167}
${offset 1452}${voffset -5}cpu  ctp   mem   /rt   vol   wfi   bat
${voffset 2}${alignc -691}${color2}${wireless_essid wlan0} (${addr wlan0})

Last edited by Sarai (2010-03-07 18:23:19)

Offline

#1058 2010-03-07 19:25:00

Zuo
Member
From: Poland
Registered: 2010-03-04
Posts: 3

Re: Share your Openbox Desktop ! :)

Wallpaper please? This is just gorgeous. big_smile Sorry for going 6 pages in the past.

Cheers.

Offline

#1059 2010-03-10 07:25:25

aroach31291
Member
Registered: 2010-03-10
Posts: 2

Re: Share your Openbox Desktop ! :)

Wrong thread hmm

Last edited by aroach31291 (2010-03-10 07:25:53)

Offline

#1060 2010-03-10 10:04:51

Roline
Member
From: Netherlands
Registered: 2009-12-05
Posts: 207
Website

Re: Share your Openbox Desktop ! :)

I like your desktop, what iconset are you using?


Bitbucket - DeviantART - Userstyles
*Currently Not Using Arch

Offline

#1061 2010-03-10 10:34:59

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

tM3NodQ

Offline

#1062 2010-03-11 12:48:20

kylan
Member
Registered: 2010-03-10
Posts: 3

Re: Share your Openbox Desktop ! :)

I'm kinda new to Arch and completely new to the realms of Openbox and Conky, but its a start smile. I like it so far as well, very fast.

tM3N1Yg

Offline

#1063 2010-03-12 05:22:33

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

Re: Share your Openbox Desktop ! :)

kylan wrote:

I'm kinda new to Arch and completely new to the realms of Openbox and Conky, but its a start smile. I like it so far as well, very fast.

http://omploader.org/tM3N1Yg

You have much to learn, young padawan wink

Edit: Oh and welcome to the boards.

Last edited by sand_man (2010-03-12 05:23:02)


neutral

Offline

#1064 2010-03-12 07:37:27

ashunter
Member
Registered: 2007-06-16
Posts: 47

Re: Share your Openbox Desktop ! :)

Offline

#1065 2010-03-12 13:35:06

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Share your Openbox Desktop ! :)

tint2

Offline

#1066 2010-03-12 15:49:42

ftornell
Member
Registered: 2008-08-18
Posts: 277
Website

Re: Share your Openbox Desktop ! :)

na12 wrote:

tint2

want to share the tint2rc config?


[ logicspot.NET | mempad.org ]
Archlinux x64

Offline

#1067 2010-03-12 19:19:33

kylan
Member
Registered: 2010-03-10
Posts: 3

Re: Share your Openbox Desktop ! :)

sand_man wrote:
kylan wrote:

I'm kinda new to Arch and completely new to the realms of Openbox and Conky, but its a start smile. I like it so far as well, very fast.

http://omploader.org/tM3N1Yg

You have much to learn, young padawan wink

Edit: Oh and welcome to the boards.

Thanks! Indeed I do have much to learn, but I'm slowly figuring it all out. New screen too:

tM3RjMw

Last edited by kylan (2010-03-12 19:21:31)

Offline

#1068 2010-03-13 01:41:11

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

wallpaper

GTK and OB (light version)

icons - anycoloryoulike

tint2 and conky

tM3RmcA

Offline

#1069 2010-03-13 09:56:05

dregnier458
Member
Registered: 2010-03-13
Posts: 2

Re: Share your Openbox Desktop ! :)

Posted this in the stickied screenshots thread but here it is again.

tM3RqbA

WM: Openbox
GTK Theme: Dyne by lyrae (a.k.a. thrynk)t
Icon Theme: ALLGREY by aMADme
Wallpaper: Lighthouse

File Manager: Thunar
Image Viewer: Mirage
Web Browser: Firefox (unbranded)
Terminal: Xfce Terminal

This is just after a day of tinkering. I still have a lot more tweaking and installing left to do.

Offline

#1070 2010-03-13 11:59:26

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

lime and grey adapted from nale's turquoise

my lime theme

Lime_Night_Openbox_by_ta_wan.jpg

Offline

#1071 2010-03-13 17:58:22

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Share your Openbox Desktop ! :)

ftornell wrote:
na12 wrote:
ashunter wrote:

Hey,which panel are you using?Looks great! smile

tint2

want to share the tint2rc config?

here you go

#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------

#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
rounded = 0
border_width = 1
background_color = #888888 30
border_color = #000000 30

rounded = 3
border_width = 1
background_color = #888888 70
border_color = #ffffff 50

rounded = 3
border_width = 1
background_color = #888888 30
border_color = #ffffff 20

#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = bottom center
panel_size = 100% 40
panel_margin = 0 0
panel_padding = 0 0
font_shadow = 0
panel_background_id = 1

#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = single_desktop
taskbar_padding = 6 1 6
taskbar_background_id = 0

#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 0
task_width = 40
task_centered = 1
task_padding = 6 3
task_font = kroeger 06_55 6
task_font_color = #222222 100
task_active_font_color = #000000 100
task_background_id = 3
task_active_background_id = 2

#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 0 4 5
systray_background_id = 0

#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format =%I:%M %p
time1_font = snap 7
time2_format = %d %b
time2_font = snap 7
clock_font_color = #000000 100
clock_padding = 10 3
clock_background_id = 0

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

What is menu font?

Last edited by na12 (2010-03-13 18:00:46)

Offline

#1072 2010-03-13 18:55:43

Shinryuu
Member
From: /dev/urandom
Registered: 2010-02-27
Posts: 339

Re: Share your Openbox Desktop ! :)

Ah it seems this is my first post here, and yeah this thread is full of nice configs cool I use both tint2 and conky but sometimes I just stick with tint2 to get more simpler output. Feel free to ask if you are curious about something I have in my desktop (I have mostly copied and modified other people configs).

Here's my screenshot:
screenshotnu.th.jpg

GTK2: Aura (Done by Kocho,I haven't been able to find any links yet. I modified scrollbar size a bit)
Openbox theme: Arta-Dark
Icons: SimplyGrey
Font: Terminus

.conkyrc

#avoid flicker
double_buffer yes

#own window to run simultanious 2 or more conkys
own_window  yes
own_window_transparent no
own_window_type normal
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 2
alignment bottom_left

#behaviour
update_interval 1

#colour
default_color 707070
own_window_colour 101010

#default_shade_color 000000

#font
use_xft yes
xftfont Trebuchet MS:pixelsize=11

#to prevent window from moving
use_spacer no
minimum_size 1920 0

TEXT
${alignc}Kernel: ${color 2B92BF}$kernel${color}  Uptime: ${color 2B92BF}${uptime_short}${color}   |   Cpu: ${color 2B92BF}${font}    ${cpubar 4,50} ${color} Cpu 2: ${color 2B92BF}${font}    ${cpubar cpu2 4,50}  ${color}Ram: ${color 2B92BF}${memperc}%${color}  Swap: ${color 2B92BF}${swapperc}%${color}  Disk: ${color 2B92BF}${fs_used_perc /}%${color}   |   ${color}Root: ${color 2B92BF}${font}${fs_free /} ${color} ${color}Home: ${color 2B92BF}${font}${fs_free /home} ${color} Varasto: ${color 2B92BF}${font} ${fs_free /media/Varasto}${color} ${color} ${color}Windows XP: ${color 2B92BF}${font}${fs_free /media/Windows} ${color}  |   ${if_existing /proc/net/route wlan0}Signal: ${color 2B92BF}${wireless_link_qual wlan0}%${color}  Up: ${color 2B92BF}${upspeed wlan0} kb/s${color}  Down: ${color 2B92BF}${downspeed wlan0} kb/s${color}${else}${if_existing /proc/net/route wlan0}Up: ${color 2B92BF}${upspeed wlan0} kb/s${color}  Down: ${color 2B92BF}${downspeed wlan0} kb/s${color}${endif}${else}Network Unavailable${endif}${alignc}

tint2rc

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

#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
rounded = 0
border_width = 0
background_color = #101010 80
border_color = #212121 70

rounded = 0
border_width = 3
background_color = #2c2c2c
border_color = #2c2c2c

rounded = 0
border_width = 0
background_color = #000000 35
border_color = #ffffff 0


#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = 1
panel_position = top center
panel_size = 1920 20

panel_margin = 0 0
#panel_padding = -1 -1
font_shadow = 0
panel_background_id = 0

#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = single_desktop
taskbar_padding = 3 3
taskbar_background_id = 1

#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 0
task_text = 1
task_width = 200
task_centered = 1
task_padding = 2 2
task_font = standard 07_55 7
task_font_color = #e0e0e0 60
task_active_font_color = #2B92BF 255
task_background_id = 0
task_active_background_id = 2

#---------------------------------------------
# SYSTRAY
#---------------------------------------------
systray = 1
systray_padding = 0 0
systray_background_id = 1

#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %A %d %m %H:%M
time1_font = standard 07_55 7
#time2_format = %A %d %B
#time2_font = Segoe UI 7
clock_font_color = #CCCCCC 59
clock_padding = 6 0
clock_background_id = 1

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

Last edited by Shinryuu (2010-03-13 23:56:57)

Offline

#1073 2010-03-13 23:50:00

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

na12 wrote:

What is menu font?

URW Gothic L Demi 8

I used Jura for so long I forgot you could change font but this one is very clean and a nice change.

Offline

#1074 2010-03-14 09:02:03

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

contrast time, I was enjoying the dark and then found a very nice clean white theme

tM3R0aA
GTK - is the one I used above the lime one

tM3R0aQ
OB | GTK "Gaia"

Offline

#1075 2010-03-14 10:44:46

tawan
Member
Registered: 2010-03-02
Posts: 290
Website

Re: Share your Openbox Desktop ! :)

a couple more

tM3R1Nw

tM3R0bQ

love that dragon

Offline

Board footer

Powered by FluxBB