You are not logged in.
May I see your conky configs?
Offline
ob: http://www.box-look.org/content/show.ph … tent=60195
gtk: http://izobalax.deviantart.com/art/Mire … M-92658146
wall: http://twilease.deviantart.com/art/quot … -129268140
icons: http://danrabbit.deviantart.com/art/ele … s-65437279
xlnz wrote:May I see your conky configs?
conky bottom_right
alignment bottom_right
background yes
border_margin 1
border_width 1
cpu_avg_samples 2
default_bar_size 0 2
default_color 302e30
double_buffer yes
draw_shades no
gap_x 6
gap_y 6
imlib_cache_size 0
maximum_width 180
net_avg_samples 2
no_buffers yes
short_units yes
total_run_times 0
update_interval 1
uppercase no
use_xft yes
xftfont ProFont:size=8
TEXT
$kernel$alignr$user_names@$nodename
CPU$alignr${cpu cpu0}%
${cpugraph cpu0}
CPU1$alignr${cpu cpu1}%
${cpubar cpu1}
CPU2$alignr${cpu cpu2}%
${cpubar cpu2}
RAM$alignr$mem/$memmax
$membar
SWAP$alignr$swap/$swapmax
$swapbar
${if_up wlan0}
ESSID$alignr${wireless_essid wlan0}
LAN IP$alignr${addr wlan0}
Up:$alignr${upspeedf wlan0} kb/s
Down:$alignr${downspeedf wlan0} kb/s
${endif}
${execi 1800 when y | head | tail -8 | sed s/.*2009.//}
Up $uptime_short$alignr${time %a %d %b}
${font URW Gothic L:size=48}$alignc${time %H%M}$font
conky bottom_left
alignment bottom_left
default_bar_size 0 2
color0 fafafa
default_color 302e30
double_buffer yes
draw_shades no
gap_x 20
gap_y 2
imlib_cache_size 0
mpd_host 127.0.0.1
mpd_port 6600
no_buffers yes
own_window yes
own_window_transparent yes
own_window_type desktop
update_interval 5
uppercase no
use_xft yes
xftfont Liberation Sans:size=14
TEXT
${if_match "$mpd_status" == "Playing"}\
${font Liberation Sans:size=22}$alignr$mpd_artist$font
${voffset -4}${font Liberation Sans:size=9}$alignr$mpd_album$font
${voffset -36}$color0$mpd_title$color
$mpd_bar
${endif}
conky middle_left
alignment middle_left
color0 FAFAFA
color1 787878
color2 B04020
color3 AFD700
default_color 302e30
double_buffer yes
draw_shades no
gap_x 2
gap_y 2
imlib_cache_size 0
no_buffers yes
own_window yes
own_window_transparent yes
own_window_type desktop
update_interval 3600
uppercase no
use_xft yes
xftfont URW Gothic L:size=10
TEXT
${execp ~/.config/openbox/conkycal.sh}
tacked on bash script for calendar
#!/bin/bash
TODAY=$(date +%d)
MONTH=$(date +%-m)
case "$MONTH" in
2)
DAYS=28;;
4|6|9|11)
DAYS=30;;
*)
DAYS=31;;
esac
for (( i=1 ; i<=$DAYS ; i++ )); do
DAY=$(printf "%02d" $i)
case "$i" in
$TODAY)
echo '$color0' $DAY'$color';;
*)
echo " $DAY";;
esac
done
Offline
thanks for cal script
Last edited by na12 (2009-08-21 12:37:33)
Offline
brisbin33, what's the bar in the top?
Offline
brisbin33, what's the bar in the top?
I think it's dzen2
Shell Scripter | C/C++/Python/Java Coder | ZSH
Offline
riivo, sorry i didnt see your post... i do use dzen on my xmonad desktop (as SpeedVin knows... ) but in this case it's just a one line conky (with the same colorscheme/font as my usual dzen bars). don't have access to the eeepc right now but i can post conkyrc and support scripts later if you'd like?
/edit: OK here are the relavent stuffs:
~/.conkyrc:
# Conky Config File
# Other scripts in ~/.conky
# Main options (alphabetically)
alignment tl
background yes
border_margin 0
color1 909090
default_color 606060
draw_outline no
draw_shades no
double_buffer yes
gap_x 0
gap_y 0
maximum_width 1024
minimum_size 1024 14
mpd_host 192.168.0.5
mpd_port 6600
no_buffers yes
own_window yes
own_window_colour 303030
own_window_type desktop
own_window_transparent no
override_utf8_locale yes
short_units yes
text_buffer_size 2048
total_run_times 0
update_interval 1
use_xft yes
xftalpha 0.7
xftfont tahoma:size=8
# After TEXT is formatted on screen
TEXT
CPU: ${color1}${cpu cpu1}%$color ${goto 80}MEM: ${color1}${memperc}%$color ${if_mpd_playing}${goto 220}.: Now Playing: ${color1}${mpd_title}$color by ${color1}${mpd_artist}$color :.$endif ${alignr}${color1}${execi 10 ~/.bin/battery.sh}$color :: ${color1}${execi 10 ~/.bin/wireless.sh}$color :: ${time %D} - ${color1}${time %H:%M}$color
~/.bin/battery.sh
#!/bin/sh
rembat=`acpi | grep -o "[0-9]*%" | sed s/%//`
state=`acpi | awk '{print $3}' | cut -d ',' -f 1 | tr 'A-Z' 'a-z'`
bars=`expr $rembat / 10`
case $bars in
0) bar='[----------]!' ;;
1) bar='[/---------]' ;;
2) bar='[//--------]' ;;
3) bar='[///-------]' ;;
4) bar='[////------]' ;;
5) bar='[/////-----]' ;;
6) bar='[//////----]' ;;
7) bar='[///////---]' ;;
8) bar='[////////--]' ;;
9) bar='[/////////-]' ;;
10) bar='[//////////]' ;;
*) bar='[----!!----]' ;;
esac
echo $state $bar
~/.bin/wireless.sh
#!/bin/bash
if ifconfig | grep -q wlan0 ; then
essid=`iwconfig wlan0 | awk -F '"' '/ESSID/ {print $2}'`
stngth=`iwconfig wlan0 | awk -F '=' '/Quality/ {print $2}' | cut -d '/' -f 1`
bars=`expr $stngth / 10`
case $bars in
0) bar='[----------]' ;;
1) bar='[/---------]' ;;
2) bar='[//--------]' ;;
3) bar='[///-------]' ;;
4) bar='[////------]' ;;
5) bar='[/////-----]' ;;
6) bar='[//////----]' ;;
7) bar='[///////---]' ;;
8) bar='[////////--]' ;;
9) bar='[/////////-]' ;;
10) bar='[//////////]' ;;
*) bar='[----!!----]' ;;
esac
echo ${essid:-none} $bar
elif ifconfig | grep -q eth0 ; then
echo wired
else
echo none
fi
Last edited by brisbin33 (2009-08-27 00:20:57)
//github/
Offline
Nothing much to say. Openbox, wbar, the standard fare. Home-grown wallpaper, a personal OB and matching GTK theme I threw together a few months ago. The carrier is a 1Ghz Pentium III with 512Mb of PC133, 7200rpm 60Gb hard drive, and so forth.
I like this a lot. Also lead to me discovering Scroogle.
Offline
hi, some screenshots of my openbox
Pic 1
Pic 2
Pic 3
Pic 4
Pic 5
Pic 6
My configs and programs are;
Gtk+ theme = MurrinaLoveGray (Font = Sans 10)
Icons = Elementary (gnome-look.org)
Openbox theme = Onyx-black
rxvt - unicode (terminal)
Midori (Web Browser)
Goggles Music Manager (Music Library / Player)
conky
My ~/.conky
alignment top_right
#background no
double_buffer yes
#own_window yes
#own_window_class Conky
own_window_type normal
own_window_transparent yes
color4 DEBE8D
default_color d3d3d3
use_xft yes
xftalpha 0.7
xftfont georgia:size=8
TEXT
${voffset -50}${font georgia:size=72}${alignr}${offset -110}${time %k}
${voffset -175}${goto 132}${font georgia:size=26}${offset 1040}${time : %M}
${voffset -20}${goto 132}${color4}${font georgia:size=10}${offset 1030}${time %e. %B}$font$color
${goto 132}${color4}${offset 1040}${time %A}
Last edited by ninjaprawn (2009-09-24 14:07:57)
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
Offline
http://erraticschematic.com/images/ob.png
A bit old but still nice to look at.
Last edited by Hydraulix (2009-09-26 21:19:20)
Offline
The screen shots are getting too big. Please follow the rules or don't post.
Offline
My simple arch...
[img=http://img43.imageshack.us/img43/8162/screenshotgxb.th.png]
[img=http://img17.imageshack.us/img17/9467/screenshot1uv.th.png]
http://img43.imageshack.us/img43/8162/screenshotgxb.png
http://img17.imageshack.us/img17/9467/screenshot1uv.png
I'm using default ubuntu karmic wallpaper... tint2-svn for dock... xcompmgr... humanity gtk and icon theme
Offline
Openbox, Conky & tint2. Setup inspired by #!Crunchbang.
Uzbl, Thunar, yaourt & ncmpcpp...all pytyled.
nice, wer du get the wallpaper from??
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
Raffles10 wrote:Openbox, Conky & tint2. Setup inspired by #!Crunchbang.
Uzbl, Thunar, yaourt & ncmpcpp...all pytyled.
nice, wer du get the wallpaper from??
Got it from http://www.desktopnexus.com/, but it seems to be down atm, never mind:
Offline
Not much. bmpanel2, 2 conkies.
Might be NSFW on a conservative workplace, so I will put no thumbnails:
clean: at http://omploader.org/vMmdnbg
"busy", showing the new cool feature in ncmpcpp-git: http://img148.imageshack.us/img148/4475/46285745.jpg
Wallpaper: http://omploader.org/vMWcyeA
Last edited by Renan Birck (2009-10-01 03:21:28)
Offline
Openbox on my EeePC with Tint2, Urxvt and Cit30's Wicd icon set:
Offline
Openbox, Conky & tint2. Setup inspired by #!Crunchbang.
Uzbl, Thunar, yaourt & ncmpcpp...all pytyled.
How do you get a transparent root menu ? xcompmgr only ?
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
Raffles, I need the .conkyrc that you used in the 1st ss.
The last section only tbh -> the one with the shortcuts.
ffc
Offline
Raffles10 wrote:Openbox, Conky & tint2. Setup inspired by #!Crunchbang.
Uzbl, Thunar, yaourt & ncmpcpp...all pytyled.
How do you get a transparent root menu ? xcompmgr only ?
i think its xcompmgr-dana that's got the -m flag to make the menu transparent... not 100% on that tho.
//github/
Offline