You are not logged in.
nice nice
Offline
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
FreeBSD7.2+EvilWM - EEE1000H
I just love those colors.:rolleyes:
p.s. I second the request for Bebop pic.
see you FreeBSD cowboy.
Last edited by twin (2009-06-07 22:31:25)
Offline
@ kourosh,
may I ask for your conky?
.conkyrc:
alignment top_left
background no
border_margin 6
border_width 6
cpu_avg_samples 3
default_color white
double_buffer yes
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
gap_x 5
gap_y 5
minimum_size 715 6
maximum_width 715
#mpd_host
#mpd_port
#mpd_password
net_avg_samples 3
no_buffers yes
override_utf8_locale yes
own_window yes
own_window_colour 202020
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_transparent true
own_window_type desktop
pad_percents 0
total_run_times 0
update_interval 1
uppercase no
use_spacer none
use_xft yes
xftalpha 0.8
xftfont Sans:Regular:size=9
#xftfont cure:size=10
#Here we go...
#SYS: $sysname $kernel $machine
#CPU: ${freq_g}GHz $cpu%
#RAM: ${offset 1}${membar 6,75}
#WIN: ${offset 2}${fs_bar 6,75 /media/windows}
#DAT: ${offset 3}${fs_bar 6,75 /media/data}
#LIN: ${offset 4}${fs_bar 6,75 /}
#LAN: ${wireless_bitrate wlan0} ${wireless_link_qual_perc wlan0}%
#PKG: ${texeci 3600 ~/scripts/upds.pl}
TEXT
CPU: ${freq_g}GHz $cpu% ${hwmon 1 temp 1}°C :: MEM: ${memperc}% :: UP: ${uptime} :: WLAN: ${wireless_bitrate wlan0} ${wireless_link_qual_perc wlan0}% :: MAIL: ${execi 300 python ~/scripts/gmail.py} :: PKG: ${texeci 3600 ~/scripts/upds.pl}
.conkympd:
alignment top_right
background no
border_margin 6
border_width 6
cpu_avg_samples 3
default_color white
double_buffer yes
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
gap_x 5
gap_y 5
minimum_size 0 6
#maximum_width 440
#mpd_host
#mpd_port
#mpd_password
net_avg_samples 3
no_buffers yes
override_utf8_locale yes
own_window yes
own_window_colour 202020
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_transparent true
own_window_type desktop
pad_percents 0
total_run_times 0
update_interval 1
uppercase no
use_spacer none
use_xft yes
xftalpha 0.8
xftfont Sans:size=9
TEXT
MPD: $mpd_title - $mpd_artist
I think the .conkyrc's width is too small, should fix that...
Oh and you might need these scripts:
upds.pl
#!/usr/bin/perl
use strict;
use warnings;
my $n = ((`pacman -Qu` =~ m/^[^\s]+\s\((\d+)\):/m) ? $1 : 0);
if ($n == 0)
{
print "0 new packages"
}
elsif($n == 1)
{
print "1 new package"
}
else
{
print "$n new packages"
}
gmail.py
import os
import string
#Enter your username and password below within double quotes
# eg. username="username" and password="password"
username="username"
password="password"
com="wget -O - https://"+username+":"+password+"@mail.google.com/mail/feed/atom --no-check-certificate"
temp=os.popen(com)
msg=temp.read()
index=string.find(msg,"<fullcount>")
index2=string.find(msg,"</fullcount>")
fc=int(msg[index+11:index2])
if fc==0:
print "0 new emails"
elif fc==1:
print "1 new email"
else:
print str(fc)+" new emails"
I have no idea where I originally got them from...
I should also get a dotfiles account, this took a lot of space...
Offline
very nice pekwm. mind sharing your 'menu' and your panel info (what's the panel and what's the theme) thanks!
Arch x86_64 - GitHub
Offline
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
The gmail.py script is what I was looking for. Can I change that to use it also with google apps and a own domain?
I tried to replace mail.google.com/mail/feed/atom with mail.google.com/a/domain.td but it always ends with an import error.
Offline
@ orschiro, not sure quick google found this:
"https://mail.google.com/a/DOMAIN1.com/feed/atom"
So maybe try this sort of line in the script:
com="wget -O - https://"+username+":"+password+"@mail.google.com/a/DOMAIN1.com/feed/atom --no-check-certificate"
Oh and make sure you run the script as "python gmail.py", otherwise it'll not be run as a python script, and will try and run the import program...
I edited this far too many times...
Last edited by kourosh (2009-06-07 23:29:52)
Offline
Jaejae wrote:Why do you have nice bitmap fonts everywhere except your terminal?
Do you know some nice monospaced font for terminal?
Profont is the best (fuck opinions) and it's in the AUR.
Offline
@twin, i may just use that in my sig if thats ok with you? obviously i will give you credit
Offline
@ kourosh,
that doesn't fit. I get the following error:
Traceback (most recent call last):
File "/home/robert/.scripts/mail.py", line 15, in <module>
fc=int(msg[index+11:index2])
ValueError: invalid literal for int() with base 10: ''
Offline
very nice pekwm. mind sharing your 'menu' and your panel info (what's the panel and what's the theme) thanks!
Didn't you saw,it is openbox,panel is pypanel without theme,just .pypanelrc,and pipe menus are here
http://bbs.archlinux.org/viewtopic.php? … 43#p555343
Profont is the best (fuck opinions) and it's in the AUR.
Yes,it is,I put it in term.
Offline
I did a little bit of tweaking inspired by the content of the forum and this is the result:
http://www.abclinuxu.cz/images/screensh … -32411.png
Simple, usable and I like it
Last edited by DawiX (2009-06-08 10:09:39)
xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz
Offline
I did a little bit of tweaking inspired by the content of the forum and this is the result:
http://www.abclinuxu.cz/images/screensh … -32411.pngSimple, usable and I like it
I didn't knew that Goran Bregovic is popular in Czech Republic.
Offline
I did a little bit of tweaking inspired by the content of the forum and this is the result:
http://www.abclinuxu.cz/images/screensh … -32411.pngSimple, usable and I like it
Good one! but inactivate the bold characters in terminal.
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
DawiX wrote:I did a little bit of tweaking inspired by the content of the forum and this is the result:
http://www.abclinuxu.cz/images/screensh … -32411.pngSimple, usable and I like it
Good one! but inactivate the bold characters in terminal.
Thanks
xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz
Offline
DawiX wrote:I did a little bit of tweaking inspired by the content of the forum and this is the result:
http://www.abclinuxu.cz/images/screensh … -32411.pngSimple, usable and I like it
I didn't knew that Goran Bregovic is popular in Czech Republic.
Well I listen to a broad variety of artists and styles and Goran Bregovic is one of them. I don't know about other czechs. They usually know who Emir Kusturica is, but they do not know that the music is from Goran Bregovic...
xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz
Offline
@na12: Thanks!
urxvtc / wmii / zsh / configs / onebluecat.net
Arch will not hold your hand
Offline
Didn't you saw,it is openbox,panel is pypanel without theme,just .pypanelrc,and pipe menus are here
my bad, thanks
Arch x86_64 - GitHub
Offline
openbox
pypanel
opera
rtorrent+wtorrent
mpd+ncmpc+sonata
gajim
idesk
conky
Can you post your conky.conf?
Offline
Good one! but inactivate the bold characters in terminal.
How to do that?
Offline
Daisuke_Aramaki wrote:Good one! but inactivate the bold characters in terminal.
How to do that?
just add the same font entry for your bold font in your Xdefaults, just an example, like this
urxvt.font: xft:montecarlo:pixelsize=7
urxvt*boldFont: xft:montecarlo:pixelsize=7
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
@ kourosh,
that doesn't fit. I get the following error:
Traceback (most recent call last):
File "/home/robert/.scripts/mail.py", line 15, in <module>
fc=int(msg[index+11:index2])
ValueError: invalid literal for int() with base 10: ''
Check what temp holds, and see if you can tweak the script to fit, for example comment out all after "msg=temp.read()" and type "print msg" instead, which will give you the full xml feed.
The script essentially looks for and outputs the value between <fullcount> and </fullcount>, maybe your xml feed is different...
Offline
na12 wrote:Daisuke_Aramaki wrote:Good one! but inactivate the bold characters in terminal.
How to do that?
just add the same font entry for your bold font in your Xdefaults, just an example, like this
urxvt.font: xft:montecarlo:pixelsize=7 urxvt*boldFont: xft:montecarlo:pixelsize=7
Thanks
Offline
Hrwa wrote:Moparx wrote:What gtk theme is that?
Very nice, thanks.
Offline