You are not logged in.

#101 2012-10-10 17:45:35

Jristz
Member
From: America/Santiago
Registered: 2011-06-11
Posts: 1,022

Re: October 2012 Screenshots

I in my Laptop

capturadepantalla-101012-144201.php
capturadepantalla-101012-144442.php

Xfce4 and Graybird theme


Well, I suppose that this is somekind of signature, no?

Offline

#102 2012-10-10 18:39:57

kuraku
Member
From: planet Earth
Registered: 2012-01-03
Posts: 202

Re: October 2012 Screenshots

@Jristz
That looks good. Can you share with us, please, that ascii (?) cow from your terminal?

Offline

#103 2012-10-10 20:27:21

ZekeSulastin
Member
Registered: 2010-09-20
Posts: 266

Re: October 2012 Screenshots

kuraku wrote:

Can you share with us, please, that ascii (?) cow from your terminal?

It's the cow from ponysay.

Offline

#104 2012-10-10 20:36:15

Paul-S
Member
From: Wales
Registered: 2008-02-04
Posts: 353

Re: October 2012 Screenshots

gholen can you post your statusbar configs? smile

Cheers
Paul-S

Offline

#105 2012-10-11 03:23:27

ill
Member
From: US
Registered: 2011-06-22
Posts: 115

Re: October 2012 Screenshots

I am a big fan of minimalism.

-- mod edit: Twice in one day? Read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754  [jwr] --

Re: mod edit: The alleged image you removed was indeed a thumbnail with the dimensions of 384x216 (http://ompldr.org/vZnUyZQ/oct2012.png) which linked to the full 1920x1080 image (http://ompldr.org/vZnUxcw/oct2012.png). Not even going to bother bbcoding it up again since you're just going to fucking delete it apparently.

Last edited by ill (2012-10-12 03:29:16)

Offline

#106 2012-10-11 03:39:59

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: October 2012 Screenshots

rockin' the 'buntu on my new folio 13.

0UHevpuxS1BXgmx501vpXG
wm=herbstluftwm
font=bitbuntufull
~/.Xresources

Last edited by ninjaaron (2012-10-11 03:40:48)

Offline

#107 2012-10-11 04:50:41

moetunes
Member
From: A comfortable couch
Registered: 2010-10-09
Posts: 1,033

Re: October 2012 Screenshots

Once you go all blue it is only downhill from there.
tZnU1bQ


You're just jealous because the voices only talk to me.

Offline

#108 2012-10-11 09:19:14

gholen
Member
From: Göteborg
Registered: 2011-07-26
Posts: 73
Website

Re: October 2012 Screenshots

Paul-S wrote:

gholen can you post your statusbar configs? smile

Cheers
Paul-S


Why sure, here you go smile

#!/usr/bin/env bash

wm=monsterwm
ff="/tmp/$RANDOM.monsterwm.fifo"

tags=(' www' ' irc' ' term' ' scrap' '')
layouts=('' '' '' '' '')

[[ -p $ff ]] || mkfifo -m 600 "$ff"

function statusbar {
    # Date
    date=$(date +"%H:%M")
    # Memory usage
    mem=$(free -m | awk '/buffers\/cache/ {print $3 MB}')
    # Battery
    #bat=$(sh /home/gholen/bin/battery.sh)
    bat=$(acpi -b|awk 'sub(/,/,"") {print $3, $5}')
    # Volume
    vol=$(amixer get PCM | tail -n1 | sed -r 's/.*\[(.*)%\].*/\1/')
    # Music status
    #music="$(mpc current -f "%artist% - %title%")"
    #if [ -z "$music" ]; then music="stopped" mstat="\ue0ae"
    #else
    #mstat="$(mpc | sed -rn '2s/\[([[:alpha:]]+)].*/\1/p')"
    #[ "$mstat" == "paused" ] && mstat="\ue059" || mstat="\ue0aa"
    #fi
    # HDD
    root=$(df -h|awk '/root/ {print $5}')
    home=$(df -h|awk '/home/ {print $5}')

    echo "\r  \f6\\fr $bat \f6\\fr $root \f6\\fr $home \f6\fr $mem \f6\\fr $vol \f6\\fr $date "
}

while read -t 1 -r wmout || true; do
    if [[ $wmout =~ ^(([[:digit:]]+:)+[[:digit:]]+ ?)+$ ]]; then
        read -ra desktops <<< "$wmout"

        tmp=
        for desktop in "${desktops[@]}"; do
            IFS=':' read -r d w m c u <<< "$desktop"
            # Tags labels
            label=${tags[$d]}
            # Current desktop color and enclosing char (yes/no)
            ((c)) && fg="9" bg="2" lc="\u4 " rc=" \ur" && layout=${layouts[$m]} || fg="1" bg="0" lc=" " rc=" "
            # Has windows ?
            ((w)) && ((! c)) && fg="6" lc="\u6 " rc=" \ur"
            # Urgent windows ?
            ((u)) && fg="9" bg="3" lc="\u4 " rc=" \ur"

            tmp+="\f$fg\b$bg$lc$label$rc\fr\br"
        done
        # Merge the clients indications and the tile mode
        tmp+=" $layout"
    fi
    echo "$tmp $(statusbar)"
done < "$ff" | bar &

#while :; do "$wm" || break; done | tee -a "$ff"
$wm > "$ff"

rm $ff

Colors and fonts:

#define BAR_FONT       "-Misc-Stlarch-Medium-R-Normal--10-100-75-75-C-80-ISO10646-1","-*-termsyn-medium-r-*-*-14-*-*-*-*-*-*-*"
/* Color palette */
#define COLOR0	0x151515 /* Background */
#define COLOR1	0xddeedd /* Foreground */
#define COLOR2	0x282830 /* Black'n'Gray */
#define COLOR3	0xcc0f16 /* Red */
#define COLOR4	0x92b03e /* Green */
#define COLOR5	0xdc7802 /* Orange */
#define COLOR6	0x007799 /* Blue */
#define COLOR7	0x7d1b66 /* Magenta */
#define COLOR8	0x426870 /* Cyan */
#define COLOR9	0xeeeeee /* White */

Offline

#109 2012-10-11 16:38:49

Paul-S
Member
From: Wales
Registered: 2008-02-04
Posts: 353

Re: October 2012 Screenshots

Thanks gholen, wouldn't mind the battery.sh too big_smile

Cheers
Paul-S

Offline

#110 2012-10-11 16:51:16

gholen
Member
From: Göteborg
Registered: 2011-07-26
Posts: 73
Website

Re: October 2012 Screenshots

Paul-S

This is NOT modified to show other then progressbars in form of "/". You can surly fix it to show other icons as well.
I have taken this from somewhere, altough I don't remember from who. So, to the author: Cheerio!

#!/bin/sh

#battery charge level in percentage
rembat=$(acpi | grep -o "[0-9]*%" | sed s/%//)
#battery percentage divided by 10, used for bars
bars=$(expr $rembat / 10)

#gets battery's current charging status
chrg=$(acpi | grep -E -o "Discharging|Charging")

case $bars in

        1)
        bar='[/---------]~'
        ;;
        2)
        bar='[//--------]~'
        ;;
        3)
        bar='[///-------]~'
        ;;
        4)
        bar='[////------]~'
        ;;
        5)
        bar='[/////-----]~'
        ;;
        6)
        bar='[//////----]~'
        ;;
        7)
        bar='[///////---]~'
        ;;
        8)
        bar='[////////--]~'
        ;;
        9)
        bar='[/////////-]~'
        ;;
        10)
        bar='[//////////]~'
        ;;
        *)
        bar='[∞∞∞∞∞∞∞∞∞∞]~'
esac
echo $rembat% $bar
done

I myself find that the current command :

 bat=$(acpi -b|awk 'sub(/,/,"") {print $3, $5}') 

gives me plenty enough information, and remaining time. However, you might like the other better.

Offline

#111 2012-10-11 19:38:47

Jristz
Member
From: America/Santiago
Registered: 2011-06-11
Posts: 1,022

Re: October 2012 Screenshots

ZekeSulastin wrote:
kuraku wrote:

Can you share with us, please, that ascii (?) cow from your terminal?

It's the cow from ponysay.

It ponysay-git from AUR
the ponysay 2.7 in comunity-staging (yep, exist staging, not recommend use it due to python 3.3 rebuild) have the cow and you can call it throw "ponysay -f cow 'message'" (or fortune | ponysay -f cow), and around +270 other ponies, and others


Well, I suppose that this is somekind of signature, no?

Offline

#112 2012-10-12 04:11:23

doug piston
Member
From: Seattle
Registered: 2011-09-11
Posts: 387
Website

Re: October 2012 Screenshots

Cross post from Awesome thread

tZnVtbA

tZnVtbQ

Offline

#113 2012-10-12 10:09:37

marcoscan
Member
Registered: 2009-04-07
Posts: 36

Re: October 2012 Screenshots

Clean:
tZnVvbw

Dirty:
tZnVvcg

Crosspost from Xmonad thread.

Last edited by marcoscan (2012-10-12 10:13:02)

Offline

#114 2012-10-12 12:43:40

smakked
Member
From: Gold Coast , Australia
Registered: 2008-08-14
Posts: 420

Re: October 2012 Screenshots

Clean

clean-thumb.png

Fake Doing something

dirty-thumb.png


Certified Android Junkie
Arch 64

Offline

#115 2012-10-12 13:38:33

veroke12
Member
Registered: 2011-07-22
Posts: 98

Re: October 2012 Screenshots

what window manager???

Offline

#116 2012-10-12 16:03:16

pogi
Member
Registered: 2012-10-09
Posts: 9

Re: October 2012 Screenshots

http://imageshack.us/photo/my-images/10/201210091921231366x768s.png/

Offline

#117 2012-10-12 16:32:25

FlyingHappy
Member
From: Cincinnati, OH
Registered: 2011-04-18
Posts: 192

Re: October 2012 Screenshots

pogi wrote:
http://imageshack.us/photo/my-images/10/201210091921231366x768s.png/

Mind posting the conky configs please?  Very nice smile

Offline

#118 2012-10-12 19:59:25

JLloyd13
Member
Registered: 2012-06-24
Posts: 107

Re: October 2012 Screenshots

2012_10_12_164738_1280x1024_scrot.png

2012_10_12_164831_1280x1024_scrot.png

2012_10_12_165616_1280x1024_scrot.jpg

KDE  is too heavy for me but I love KWin and Qt, so currently using Razor-Qt with KWin

Offline

#119 2012-10-12 21:56:43

JLloyd13
Member
Registered: 2012-06-24
Posts: 107

Re: October 2012 Screenshots

veroke12 wrote:

what window manager???


Looks like a *box to me, maybe openbox.

Offline

#120 2012-10-12 21:58:20

skrite
Member
Registered: 2009-09-07
Posts: 160

Re: October 2012 Screenshots

JLloyd13 wrote:

Looks like a *box to me, maybe openbox.

i bet it's fvwm

Offline

#121 2012-10-12 22:09:31

smakked
Member
From: Gold Coast , Australia
Registered: 2008-08-14
Posts: 420

Re: October 2012 Screenshots

All close but no cigar

Its Enlightenment  E16 smile


Certified Android Junkie
Arch 64

Offline

#122 2012-10-13 07:27:13

Paul-S
Member
From: Wales
Registered: 2008-02-04
Posts: 353

Re: October 2012 Screenshots

Monsterwm

tZnYyNA.jpg

Cheers
Paul-S

Offline

#123 2012-10-13 07:31:52

skrite
Member
Registered: 2009-09-07
Posts: 160

Re: October 2012 Screenshots

Paul-S wrote:

Monsterwm

http://ompldr.org/tZnYyNA.jpg

Cheers
Paul-S

brundlefly, that's awesome !

Offline

#124 2012-10-13 10:57:43

JLloyd13
Member
Registered: 2012-06-24
Posts: 107

Re: October 2012 Screenshots

smakked wrote:

All close but no cigar

Its Enlightenment  E16 smile

ah. any reason for not using e17? I mean, I havn't tried it, have you, and is it usable?

Offline

#125 2012-10-13 11:31:44

gholen
Member
From: Göteborg
Registered: 2011-07-26
Posts: 73
Website

Re: October 2012 Screenshots

Paul-S wrote:

Monsterwm

http://ompldr.org/tZnYyNA.jpg

Cheers
Paul-S

Really nice!

Offline

Board footer

Powered by FluxBB