You are not logged in.

#301 2012-06-24 07:47:57

ObliviousGmn
Member
Registered: 2011-09-14
Posts: 49
Website

Re: June 2012 Screenshots

CGxfk8vx

I'm really liking this month's shot big_smile

Offline

#302 2012-06-24 08:05:52

JHeaton
Member
From: United Kingdom
Registered: 2009-05-16
Posts: 158

Re: June 2012 Screenshots

AHoneybun wrote:
JHeaton wrote:

http://ompldr.org/tZWdlcw

Just a clean one at the moment. Still working on getting i3 configured, but I'm quite happy with it so far. smile

Is that "No Updates Available" for the DE/WM that your using?

It's supposed to be for all packages on the system, but at the moment it's just a placeholder in Conky. I haven't worked out how to actually get it to check yet. smile

Offline

#303 2012-06-24 08:10:57

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: June 2012 Screenshots

JHeaton wrote:
AHoneybun wrote:
JHeaton wrote:

http://ompldr.org/tZWdlcw

Just a clean one at the moment. Still working on getting i3 configured, but I'm quite happy with it so far. smile

Is that "No Updates Available" for the DE/WM that your using?

It's supposed to be for all packages on the system, but at the moment it's just a placeholder in Conky. I haven't worked out how to actually get it to check yet. smile


Here you go: http://www.mail-archive.com/pacman-dev@ … 08420.html


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#304 2012-06-24 09:46:45

JHeaton
Member
From: United Kingdom
Registered: 2009-05-16
Posts: 158

Re: June 2012 Screenshots

Brilliant. Thanks! smile

Offline

#305 2012-06-24 10:44:34

Pyntux
Member
From: Serbia
Registered: 2008-12-21
Posts: 391

Re: June 2012 Screenshots

Shark wrote:

Nice, really nice. One of the best nice looking KDE. Can you please post conky configs, plasma theme and the wallpaper. Thanks.


KDE theme is Helium One. Find a wallpaper in kde settings for the wallpaper, just tipe "arch" smile




conkyrc:

# — Conky settings — #
#background yes
update_interval 1

cpu_avg_samples 2
net_avg_samples 2

override_utf8_locale yes

double_buffer yes
no_buffers yes

text_buffer_size 1024
imlib_cache_size 0

# — Window specifications — #

own_window yes
own_window_transparent yes
own_window_argb_visual yes
own_window_type normal
own_window_class conky-semi
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

border_inner_margin 0
border_outer_margin 0

#minimum_size 100 5
maximum_width 1368

alignment top_left
gap_x 1
gap_y 5

# — Graphics settings — #
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no

# — Text settings — #
use_xft yes
xftfont Sans:size=10
xftalpha 0.5 

uppercase no

default_color FFFFFF
color1 D23000

# — Lua Load — #
lua_load ~/.big_rings.lua
lua_draw_hook_pre clock_rings

TEXT
${offset 80}${voffset 70}${font Neuropolitical:size=10:style:bold}${color 3399FF}CPU
${offset 80}${color FFFFFF}${cpu cpu0}%
${offset 270}${voffset -28}${color 3399FF}RAM
${offset 270}${color FFFFFF}${memperc}%
${offset 460}${voffset -27}${font Neuropolitical:size=10:style:bold}${color 3399FF}Root
${offset 460}${color FFFFFF}${fs_used_perc /}%
${offset 650}${voffset -27}${font Neuropolitical:size=10:style:bold}${color 3399FF}Home
${offset 650}${color FFFFFF}${fs_used_perc /home}%
${offset 840}${voffset -27}${font Neuropolitical:size=10:style:bold}${color 3399FF}Fajlovi
${offset 840}${color FFFFFF}${fs_used_perc /fajlovi}%
${voffset -80}${offset 970}${color FFFFFF}${font Neuropolitical:size=80}${time 
%H:%M}${font}

${color 3399FF}${voffset 30}${offset 1020}${font Neuropolitical:size=13:style:bold}Sistem${font}${color} : ${sysname} ${kernel}
${color 3399FF}${voffset 30}${offset 1020}${font Neuropolitical:size=13:style:bold}Temperatura procesora${font}${color} : ${execi 1 sensors | grep "temp1" | cut -c15-18}°C
${color 3399FF}${voffset 30}${offset 1020}${font Neuropolitical:size=13:style:bold}Laptop u radu${font}${color} : $uptime

big_rings.lua:

--[[
Clock Rings by londonali1010 (2009) , mod by arpinux

This script draws percentage meters as rings, and also draws clock hands if you want! It is fully customisable; all options are described in the script. This script is based off a combination of my clock.lua script and my rings.lua script.

IMPORTANT: if you are using the 'cpu' function, it will cause a segmentation fault if it tries to draw a ring straight away. The if statement on line 145 uses a delay to make sure that this doesn't happen. It calculates the length of the delay by the number of updates since Conky started. Generally, a value of 5s is long enough, so if you update Conky every 1s, use update_num>5 in that if statement (the default). If you only update Conky every 2s, you should change it to update_num>3; conversely if you update Conky every 0.5s, you should use update_num>10. ALSO, if you change your Conky, is it best to use "killall conky; conky" to update it, otherwise the update_num will not be reset and you will get an error.

To call this script in Conky, use the following (assuming that you save this script to ~/scripts/rings.lua):
   lua_load ~/scripts/clock_rings.lua
   lua_draw_hook_pre clock_rings
   
Changelog:
+ v1.0 -- Original release (30.09.2009)
]]

settings_table = {
{
           name='cpu',
           arg='cpu0',
           max=100,
           bg_colour=0xffffff,
           bg_alpha=0.2,
           fg_colour=0xe60000,
           fg_alpha=0.6,
           x=100, y=90,
           radius=60,
           thickness=30,
           start_angle=0,
           end_angle=355
   },
   {
           name='memperc',
           arg='',
           max=100,
           bg_colour=0xffffff,
           bg_alpha=0.2,
           fg_colour=0xffff00,
           fg_alpha=0.4,
           x=290, y=90,
           radius=60,
           thickness=30,
           start_angle=0,
           end_angle=350
   },
{
           name='fs_used_perc',
           arg='/',
           max=100,
           bg_colour=0xffffff,
           bg_alpha=0.2,
           fg_colour=0x3399cc,
           fg_alpha=0.8,
           x=480, y=90,
           radius=60,
           thickness=30,
           start_angle=0,
           end_angle=345
   },
 {
           name='fs_used_perc',
           arg='/home',
           max=100,
           bg_colour=0xffffff,
           bg_alpha=0.2,
           fg_colour=0x297497,
           fg_alpha=0.8,
           x=670, y=90,
           radius=60,
           thickness=30,
           start_angle=0,
           end_angle=340
   },
{
           name='fs_used_perc',
           arg='/fajlovi',
           max=100,
           bg_colour=0xffffff,
           bg_alpha=0.2,
           fg_colour=0x0f4964,
           fg_alpha=0.8,
           x=860, y=90,
           radius=60,
           thickness=30,
           start_angle=0,
           end_angle=335
   },
}



require 'cairo'

function rgb_to_r_g_b(colour,alpha)
    return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end

function draw_ring(cr,t,pt)
    local w,h=conky_window.width,conky_window.height
   
    local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
    local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']

    local angle_0=sa*(2*math.pi/360)-math.pi/2
    local angle_f=ea*(2*math.pi/360)-math.pi/2
    local t_arc=t*(angle_f-angle_0)

    -- Draw background ring

    cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
    cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
    cairo_set_line_width(cr,ring_w)
    cairo_stroke(cr)
   
    -- Draw indicator ring

    cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
    cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
    cairo_stroke(cr)       
end

function conky_clock_rings()
    local function setup_rings(cr,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_ring(cr,pct,pt)
    end
   
    -- Check that Conky has been running for at least 5s

    if conky_window==nil then return end
    local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
   
    local cr=cairo_create(cs)   
   
    local updates=conky_parse('${updates}')
    update_num=tonumber(updates)
   
    if update_num>5 then
        for i in pairs(settings_table) do
            setup_rings(cr,settings_table[i])
        end
    end
end

Last edited by Pyntux (2012-06-24 10:46:33)


I do not speak English, but I understand...

Offline

#306 2012-06-24 12:33:05

veroke12
Member
Registered: 2011-07-22
Posts: 98

Re: June 2012 Screenshots

ghost wrote:

As browser I'm using firefox with pentadactyl (config). The CSS stylesheet for webbrowsing is between line 132 to 153.

The color in xterm and qt apps is done by this xresources file.

The i3 config is pretty basic, the interesting parts:

# toggle screen of workspace
bindsym $mod+b move workspace to output right
# class                 border  backgr. text
client.focused          #b58900 #002b36 #b58900
#                         yellow base03 base0
client.focused_inactive #073642 #002b36 #839496 
#                         base02 base03  - 
client.unfocused        #333333 #002b36 #888888
#                           -   base03  -
client.urgent           #2f343a #002b36 #ffffff
#                           -   base03  -
bar {
        status_command i3status
        colors{
            background #002b36
            statusline #657b83

            focused_workspace  #b58900 #073642
            active_workspace   #657b83 #002b36
            inactive_workspace #888888 #002b36
        }
}

Edit my conky config and the parser for my todo file

thank you smile

Offline

#307 2012-06-24 13:36:12

gnumdk
Member
Registered: 2009-10-15
Posts: 175

Re: June 2012 Screenshots

Offline

#308 2012-06-24 13:56:41

theGunslinger
Member
Registered: 2011-05-20
Posts: 300

Re: June 2012 Screenshots

gnumdk wrote:

Wallpaper please smile

Offline

#309 2012-06-24 14:04:24

gnumdk
Member
Registered: 2009-10-15
Posts: 175

Re: June 2012 Screenshots

theGunslinger wrote:

Wallpaper please smile

Here http://adishatz.1s.fr/~gnumdk/sailing.jpg wink

Offline

#310 2012-06-24 18:59:29

Varg
Member
From: Belgium
Registered: 2010-07-07
Posts: 272

Re: June 2012 Screenshots

DWM
Still pretty much the same.

tZWg2OQ

Offline

#311 2012-06-24 19:11:46

simon.swe
Member
From: sverige
Registered: 2012-02-26
Posts: 148
Website

Re: June 2012 Screenshots

StumpWM. without xfce4-panel.

mog.png

Offline

#312 2012-06-24 19:22:22

stlarch
Member
From: hell
Registered: 2010-12-25
Posts: 1,265

Re: June 2012 Screenshots

A little something different. I've been playing with JWM. I kinda like it. It seems a little nicer than the last time I tried it. It's a work in progress. tongue I have pnmixer and I'm looking for a good battery system tray monitor. (tidybattery looks like it might be the one but the site is down)
tZWkxeA    tZWkyMQ    tZWkyMg

edit: I updated things a bit. I'm using slimebattery. I added the border back to the terminal and it got rid of the gap with this font. I'm on a netbook, so I made every app notitle. Everything is controllable from the taskbar. I'm really diggin it for a floater. It seems to handle icons better too now. Still have a little ways to go.

Last edited by stlarch (2012-06-25 18:17:27)

Offline

#313 2012-06-24 20:05:31

indisposed
Member
Registered: 2012-03-21
Posts: 20

Re: June 2012 Screenshots

201206250724-thumb.png

still needs so much work *sigh*

Offline

#314 2012-06-24 20:28:50

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: June 2012 Screenshots

@indisposed What do you use for transparency? Could you share the command/string you use to invoke it? And also share your colors.

Last edited by donniezazen (2012-06-24 20:29:22)

Offline

#315 2012-06-24 20:43:03

indisposed
Member
Registered: 2012-03-21
Posts: 20

Re: June 2012 Screenshots

@donniezazen
just this in .Xresources

URxvt.transparent: 			true
URxvt.shading: 				20                   

stole the colours from around here somewhere. mayve tweaked one or two, but not too sure.

!! Defaults
*background:             #262729
*foreground:             #f8f8f2
! Black
*color0:                 #262729
*color8:                 #554444
! Red
*color1:                 #f92671
*color9:                 #ff669d
! Green
*color2:                 #a6e22e
*color10:                #beed5f
! Yellow
*color3:                 #fd971f
*color11:                #e6db74
! Blue
*color4:                 #34bdef
*color12:                #66d9ef
! Magenta
*color5:                 #9e6ffe
*color13:                #df92f6
! Cyan
*color6:                 #5e7175
*color14:                #a3babf
! White
*color7:                 #ccccc6
*color15:                #f8f8f2
! Cursor
*cursorColor:            #b5d2dd     

Offline

#316 2012-06-24 21:45:24

Arpione
Member
From: Pécs, Hungary
Registered: 2010-09-13
Posts: 31

Re: June 2012 Screenshots

gnar wrote:

Ehh my first post yikes
Just got arch running on my laptop so I thought I would share it with the world big_smile

http://i.imgur.com/4Msu6.png

-- mod edit: read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754  [jwr] --
^ sorrry tongue

That's a really nice wallpaper. Could you post a link to it?

Offline

#317 2012-06-24 22:27:07

rasat
Forum Fellow
From: Finland, working in Romania
Registered: 2002-12-27
Posts: 2,293
Website

Re: June 2012 Screenshots


Markku

Offline

#318 2012-06-25 00:39:32

n1x4
Member
From: Chernobyl
Registered: 2012-02-17
Posts: 149
Website

Re: June 2012 Screenshots

My laptop... DWM of course. The only WM I'll ever put on it..Finally got around to fixing the colors and changing the wall..

Clean
t-lap1.png

Daily use
t-lap.png


||github||

Offline

#319 2012-06-25 01:56:44

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: June 2012 Screenshots

Love those term colors

Offline

#320 2012-06-25 02:08:00

woomia
Member
Registered: 2012-06-09
Posts: 111

Re: June 2012 Screenshots

Starting to play around with Fvwm for the first time in ages.
fvwm1.png

Uploaded with ImageShack.us

Full version: http://dl.dropbox.com/u/9102829/fvwm1.png

I've started with the standard config. I added the Thumbnail function (upper right) and played with the fonts. I'll be doing more as I go along.

Offline

#321 2012-06-25 02:29:29

n1x4
Member
From: Chernobyl
Registered: 2012-02-17
Posts: 149
Website

Re: June 2012 Screenshots

ninjaaron wrote:

Love those term colors


Thanks...


||github||

Offline

#322 2012-06-25 05:57:46

simon.swe
Member
From: sverige
Registered: 2012-02-26
Posts: 148
Website

Re: June 2012 Screenshots

n1x4 wrote:

My laptop... DWM of course. The only WM I'll ever put on it..Finally got around to fixing the colors and changing the wall..

Clean
http://dl.dropbox.com/u/58127896/t-lap1.png

Daily use
http://dl.dropbox.com/u/58127896/t-lap.png

Hi n1x4 cool! what composite manager do you use?

Offline

#323 2012-06-25 08:11:42

OK100
Member
From: [U==]
Registered: 2010-04-26
Posts: 455

Re: June 2012 Screenshots

ObliviousGmn wrote:

http://db.tt/CGxfk8vx

I'm really liking this month's shot big_smile

That looks awesome! Can you share the colors?

Offline

#324 2012-06-25 11:54:08

ivoarch
Member
Registered: 2011-03-31
Posts: 436

Re: June 2012 Screenshots

@simon.swe

Nice stump setups!!


I love GnuEmacs, GnuScreen, ratpoison, and conkeror.
Github )||( Weblog

Offline

#325 2012-06-25 13:04:31

kniren
Member
Registered: 2011-10-12
Posts: 40

Re: June 2012 Screenshots

I've been trying xmonad to replace awesome wm and I can say I didn't miss a thing.
It still need some work though:

june_25.jpg


Archlinux :: Xmonad
dotfiles | deviantart

Offline

Board footer

Powered by FluxBB