You are not logged in.
@Jristz
That looks good. Can you share with us, please, that ascii (?) cow from your terminal?
Offline
Can you share with us, please, that ascii (?) cow from your terminal?
It's the cow from ponysay.
Offline
Offline
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
rockin' the 'buntu on my new folio 13.
wm=herbstluftwm
font=bitbuntufull
~/.Xresources
Last edited by ninjaaron (2012-10-11 03:40:48)
Offline
gholen can you post your statusbar configs?
Cheers
Paul-S
Why sure, here you go
#!/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
Offline
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
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
what window manager???
Offline
http://imageshack.us/photo/my-images/10/201210091921231366x768s.png/
Offline
http://imageshack.us/photo/my-images/10/201210091921231366x768s.png/
Mind posting the conky configs please? Very nice
Offline
smakked wrote:what window manager???
Looks like a *box to me, maybe openbox.
Offline
Looks like a *box to me, maybe openbox.
i bet it's fvwm
Offline
All close but no cigar
Its Enlightenment E16
Certified Android Junkie
Arch 64
Offline
Offline
brundlefly, that's awesome !
Offline
All close but no cigar
Its Enlightenment E16
ah. any reason for not using e17? I mean, I havn't tried it, have you, and is it usable?
Offline
Really nice!
Offline