You are not logged in.
Offline
JHeaton wrote:Just a clean one at the moment. Still working on getting i3 configured, but I'm quite happy with it so far.
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.
Offline
AHoneybun wrote:JHeaton wrote:Just a clean one at the moment. Still working on getting i3 configured, but I'm quite happy with it so far.
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.
Here you go: http://www.mail-archive.com/pacman-dev@ … 08420.html
Offline
Brilliant. Thanks!
Offline
Pyntux 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"
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
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
Offline
My KDE desktop:
Offline
My KDE desktop:
Wallpaper please
Offline
Wallpaper please
Offline
Offline
Offline
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. 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)
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
Offline
@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
Ehh my first post
Just got arch running on my laptop so I thought I would share it with the world-- mod edit: read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754 [jwr] --
^ sorrry
That's a really nice wallpaper. Could you post a link to it?
Offline
gnomish-beige-theme (AUR):
https://aur.archlinux.org/packages.php?ID=58973
Markku
Offline
Love those term colors
Offline
Starting to play around with Fvwm for the first time in ages.
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
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..
Hi n1x4 cool! what composite manager do you use?
Offline
I'm really liking this month's shot
That looks awesome! Can you share the colors?
Offline
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:
Archlinux :: Xmonad
dotfiles | deviantart
Offline