You are not logged in.

#351 2012-02-27 17:00:30

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

Re: February 2012 Screenshots

dot|not wrote:

*snip

Use another image host mate.  Omploader, postimage, zimagez etc., are better hosts. Imagebam links adult ads randomly.

Last edited by Daisuke_Aramaki (2012-02-27 17:01:49)


"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

#352 2012-02-27 18:03:25

dot|not
Member
Registered: 2012-02-25
Posts: 9
Website

Re: February 2012 Screenshots

I was used to ompldr.org, didn't now they "moved" to their old domain - thanks for the hint.

Offline

#353 2012-02-27 19:12:53

RaisedFist
Member
From: Romania
Registered: 2007-01-30
Posts: 556
Website

Re: February 2012 Screenshots

minus.com is a also a good image upload service

Offline

#354 2012-02-27 20:22:41

desm0tes
Member
From: 127.0.0.1
Registered: 2012-02-04
Posts: 233
Website

Re: February 2012 Screenshots

Daisuke_Aramaki wrote:
dot|not wrote:

*snip

Use another image host mate.  Omploader, postimage, zimagez etc., are better hosts. Imagebam links adult ads randomly.

Don't they just feature adult ad's, when there are porn domains in your browser history? :-p

Offline

#355 2012-02-27 20:36:12

Deckard
Member
From: Munich/Germany
Registered: 2010-01-31
Posts: 14

Re: February 2012 Screenshots

xmonad + xmobar

clean:
screenFetch20120227_213127.png

dirty:
screenFetch20120227_213111.png

The wallpaper is presented by wallpaper.fm


If the only tool you have is a hammer, you tend to see every problem as a nail

Offline

#356 2012-02-27 21:08:59

kcirick
Member
Registered: 2010-06-21
Posts: 364

Re: February 2012 Screenshots

I'm more interested in your conkyrc please (especially your battery(?) script) smile

Offline

#357 2012-02-27 21:26:12

Deckard
Member
From: Munich/Germany
Registered: 2010-01-31
Posts: 14

Re: February 2012 Screenshots

The battery "widget" is a little script run by xmobar, no conky involved:

xmobarrc

Config { font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*"
       , bgColor = "black"
       , fgColor = "white"
       , position = Top
       , lowerOnStart = True
       , commands = [ Run Date "%a %b %_d, %H:%M" "date" 10
                    , Run Com "sh" ["/home/michi/bin/battery.sh"] "battery" 50
					, Run Com "sh" ["/home/michi/bin/wireless.sh"] "wifi" 50
					, Run Com "sh" ["/home/michi/bin/mpd.sh"] "mpd" 20 
					, Run StdinReader
                    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "%StdinReader% }{ <fc=#FFD308>::</fc> %mpd% <fc=#FFD308>::</fc> %wifi% <fc=#FFD308>::</fc> %battery% <fc=#FFD308>::</fc> %date%"
       }

battery.sh

#!/bin/bash

remain=`acpi | awk -F ' ' '{print $5}' | cut -d ':' -f 1-2`
perc=`acpi | awk -F ' ' '{print $4}' |  cut -d '%' -f 1`

acpi | grep -q Discharging, && sign='<fc=#ff0000>-</fc>'
acpi | grep -q Charging, && sign='<fc=#00ff00>+</fc>'

bars=`expr $perc / 20`

	case $bars in
	  0)  bar='<fc=#ff0000>['$sign$sign$sign$sign$sign']</fc>' ;;
	  1)  bar='<fc=#ff0000>[/'$sign$sign$sign$sign']</fc>' ;;
	  2)  bar='<fc=#ff8000>[//'$sign$sign$sign']</fc>' ;;
	  3)  bar='<fc=#ff8000>[///'$sign$sign']</fc>' ;;
	  4)  bar='<fc=#00ff00>[////'$sign']</fc>' ;;
	  5)  bar='<fc=#00ff00>[/////]</fc>' ;;
	  *)  bar='<fc=#888888>N/A</fc>' ;;
	esac

echo $remain $bar

wireless.sh

#!/bin/sh

ifconfig eth0 2>&1 | grep -q RUNNING && {
  echo '<fc=#00ff00>wired</fc>'
  exit 0
}

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='<fc=#ff8000>[----------]</fc>' ;;
	  1)  bar='<fc=#ff8000>[/---------]</fc>' ;;
	  2)  bar='<fc=#ff8000>[//--------]</fc>' ;;
	  3)  bar='<fc=#ff8000>[///-------]</fc>' ;;
	  4)  bar='<fc=#ff8000>[////------]</fc>' ;;
	  5)  bar='<fc=#ff8000>[/////-----]</fc>' ;;
	  6)  bar='<fc=#00ff00>[//////----]</fc>' ;;
	  7)  bar='<fc=#00ff00>[///////---]</fc>' ;;
	  8)  bar='<fc=#00ff00>[////////--]</fc>' ;;
	  9)  bar='<fc=#00ff00>[/////////-]</fc>' ;;
	  10) bar='<fc=#00ff00>[//////////]</fc>' ;;
	  *)  bar='<fc=#ff0000>[----!!----]</fc>' ;;
	esac
  
echo $essid $bar

exit 0

there you go smile

Last edited by Deckard (2012-02-27 21:26:41)


If the only tool you have is a hammer, you tend to see every problem as a nail

Offline

#358 2012-02-27 22:48:53

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

Re: February 2012 Screenshots

desm0tes wrote:

Don't they just feature adult ad's, when there are porn domains in your browser history? :-p

No. There are no porn domains in my browser history. If I had, I wouldn't have said that earlier.


"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

#359 2012-02-28 00:18:39

cirnOS
Member
Registered: 2010-03-01
Posts: 107

Re: February 2012 Screenshots

Unia wrote:
cirnOS wrote:

Would you be willing to share your config.h, .conkyrc, and whatever config you use for dzen2?

Sure!
If you want the icons, tell me and I'll package them for upload wink


Thank you. I have the icons so I'm good.

Last edited by cirnOS (2012-02-28 00:18:58)

Offline

#360 2012-02-28 13:43:38

finwin
Member
Registered: 2011-04-16
Posts: 65

Re: February 2012 Screenshots

I'm sorry I have to quote this old post... what irssi theme are you using?

Offline

#361 2012-02-28 17:48:03

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

Re: February 2012 Screenshots

finwin wrote:

I'm sorry I have to quote this old post... what irssi theme are you using?


miromiro: http://beta.intuxication.org/jasonwryan … miro.theme


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#362 2012-02-28 18:00:22

lutherus
Member
From: Croatia;Varaždin
Registered: 2011-03-17
Posts: 150

Re: February 2012 Screenshots

xmonad + xmobar

2012-02-28-0943481366x76.jpg


I`m not a nerd.I`m a level 55   dwarf monk-psychic ninja ;-)

my github

Offline

#363 2012-02-28 20:15:37

pyry
Member
Registered: 2009-08-17
Posts: 3

Re: February 2012 Screenshots

Stumpwm

http://i.imgur.com/6W79Y.jpg

Last edited by pyry (2012-02-28 20:17:27)

Offline

#364 2012-02-28 20:18:01

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

Re: February 2012 Screenshots

Thumbs?

Please read the guidleines at the start of this thread, stickied in this forum and helpfully included in the Forum Etiquette...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#365 2012-02-28 21:25:52

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

Re: February 2012 Screenshots

jasonwryan wrote:
finwin wrote:

I'm sorry I have to quote this old post... what irssi theme are you using?


miromiro: http://beta.intuxication.org/jasonwryan … miro.theme


Segmentation Fault in miromiro.theme?


||github||

Offline

#366 2012-02-29 16:04:34

finwin
Member
Registered: 2011-04-16
Posts: 65

Re: February 2012 Screenshots

n1x4 wrote:
jasonwryan wrote:
finwin wrote:

I'm sorry I have to quote this old post... what irssi theme are you using?


miromiro: http://beta.intuxication.org/jasonwryan … miro.theme


Segmentation Fault in miromiro.theme?

Works fine here

Offline

#367 2012-03-01 21:17:50

prog
Member
Registered: 2012-03-01
Posts: 5

Re: February 2012 Screenshots

Fragasaurus wrote:

DWM with uselessgaps, bstack, and pango patches.
http://ompldr.org/tY2t0ZQ

Notify-OSD works awesomely with DWM.
http://ompldr.org/tY2t0ag

moetunes wrote:

Something different for the start of this month

http://ompldr.org/tY2tkaw

That's cool.  What patches do you have there?  Specifically, how did you get the greyed out windows?
Is that your own hack?  Wait, Is that even DWM?

I dont know if this is how it is done in his sshot, but urxvt has some fading options;

*fading: 
*fadeColor: 

Offline

Board footer

Powered by FluxBB