You are not logged in.

#251 2009-06-07 21:59:01

hBd
Member
From: Romania - Cluj Napoca
Registered: 2008-06-08
Posts: 241
Website

Re: June 2009 Screenshots

Offline

#252 2009-06-07 22:06:05

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: June 2009 Screenshots

FreeBSD7.2+EvilWM - EEE1000H

vMXNvdQ


"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

#253 2009-06-07 22:26:41

twin
Member
From: Greece
Registered: 2008-12-23
Posts: 47

Re: June 2009 Screenshots

Daisuke_Aramaki wrote:

FreeBSD7.2+EvilWM - EEE1000H

http://omploader.org/vMXNvdQ

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

#254 2009-06-07 22:42:03

kourosh
Member
From: England
Registered: 2009-03-10
Posts: 241
Website

Re: June 2009 Screenshots

orschiro wrote:

@ 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

#255 2009-06-07 22:43:38

rakka
Member
Registered: 2009-01-05
Posts: 96

Re: June 2009 Screenshots

very nice pekwm.  mind sharing your 'menu' and your panel info (what's the panel and what's the theme) thanks! smile


Arch x86_64 - GitHub

Offline

#256 2009-06-07 22:51:17

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: June 2009 Screenshots

@twin

thanks mate.

anyway here is the bebop wall. its fullscreen.

tMXNwag


"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

#257 2009-06-07 23:07:19

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: June 2009 Screenshots

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

#258 2009-06-07 23:14:38

kourosh
Member
From: England
Registered: 2009-03-10
Posts: 241
Website

Re: June 2009 Screenshots

@ 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

#259 2009-06-07 23:49:02

Jaejae
Member
Registered: 2008-05-17
Posts: 80

Re: June 2009 Screenshots

na12 wrote:
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.

Even Stallman agrees.
vMXNweQ

Offline

#260 2009-06-08 02:04:25

kolbycrouch
Member
Registered: 2008-07-18
Posts: 218

Re: June 2009 Screenshots

@twin, i may just use that in my sig if thats ok with you? obviously i will give you credit

Offline

#261 2009-06-08 07:57:43

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: June 2009 Screenshots

@ 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

#262 2009-06-08 09:24:34

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

Re: June 2009 Screenshots

rakka wrote:

very nice pekwm.  mind sharing your 'menu' and your panel info (what's the panel and what's the theme) thanks! smile

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


Jaejae wrote:

Profont is the best (fuck opinions) and it's in the AUR.

Yes,it is,I put it in term.

2009-06-07-225019_1280x800_scrot.jpg

Offline

#263 2009-06-08 09:50:51

DawiX
Member
From: Czech Republic
Registered: 2009-04-23
Posts: 92

Re: June 2009 Screenshots

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 smile

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

#264 2009-06-08 10:50:11

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

Re: June 2009 Screenshots

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.png

Simple, usable and I like it smile

I didn't knew that Goran Bregovic is popular in Czech Republic.

Offline

#265 2009-06-08 10:51:22

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: June 2009 Screenshots

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.png

Simple, usable and I like it smile

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

#266 2009-06-08 10:59:57

DawiX
Member
From: Czech Republic
Registered: 2009-04-23
Posts: 92

Re: June 2009 Screenshots

Daisuke_Aramaki wrote:
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.png

Simple, usable and I like it smile

Good one! but inactivate the bold characters in terminal.

Thanks smile


xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz

Offline

#267 2009-06-08 11:05:34

DawiX
Member
From: Czech Republic
Registered: 2009-04-23
Posts: 92

Re: June 2009 Screenshots

na12 wrote:
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.png

Simple, usable and I like it smile

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

#268 2009-06-08 12:04:36

Lexion
Member
Registered: 2008-03-23
Posts: 510

Re: June 2009 Screenshots

@na12: Thanks!


urxvtc / wmii / zsh / configs / onebluecat.net
Arch will not hold your hand

Offline

#269 2009-06-08 12:05:16

rakka
Member
Registered: 2009-01-05
Posts: 96

Re: June 2009 Screenshots

na12 wrote:

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

my bad, thanks


Arch x86_64 - GitHub

Offline

#270 2009-06-08 12:12:44

ammon
Member
Registered: 2008-12-11
Posts: 413

Re: June 2009 Screenshots

shlemisto wrote:

openbox
pypanel
opera
rtorrent+wtorrent
mpd+ncmpc+sonata
gajim
idesk
conky

http://img189.imageshack.us/img189/3862 … 68s.th.jpg

Can you post your conky.conf?

Offline

#271 2009-06-08 12:52:24

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

Re: June 2009 Screenshots

Daisuke_Aramaki wrote:

Good one! but inactivate the bold characters in terminal.

How to do that?

Offline

#272 2009-06-08 13:08:42

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: June 2009 Screenshots

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

"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

#273 2009-06-08 13:16:36

kourosh
Member
From: England
Registered: 2009-03-10
Posts: 241
Website

Re: June 2009 Screenshots

orschiro wrote:

@ 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

#274 2009-06-08 13:51:05

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

Re: June 2009 Screenshots

Daisuke_Aramaki wrote:
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

#275 2009-06-08 14:25:34

Hrwa
Member
From: Croatia, Zagreb
Registered: 2008-10-09
Posts: 27

Re: June 2009 Screenshots

Moparx wrote:
Hrwa wrote:

What gtk theme is that?

Lemur

Very nice, thanks.

Offline

Board footer

Powered by FluxBB