You are not logged in.
using gaps on a netbook.. mate, you are doing it wrong..
agreed.
what i cannot build, i do not understand
Offline
moetunes wrote:Something different for the start of this month
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?
It's dminiwm with a bar which I call snapwm. I added an alpha value to the unfocused windows so when I run cairo-compmgr they are semi transparent. The alpha value can be changed in the rc file in the running wm and the wm gets updated with Alt+u. There's a few other things in the rc file that can be changed in the running wm.
You're just jealous because the voices only talk to me.
Offline
JokerBoy wrote:Darvid - mind sharing the name of the editor on the second monitor?
Just Kate. :>
Would you mind sharing which themes you are using?
Offline
Offline
clean http://ompldr.org/vY2tpMw wannabe busy http://ompldr.org/vY2tpNg
awesomewm, mc, ncmpcpp
Cool setup almost makes me want to install awesome again.
That wallpaper is amazing what is it?
Don't you worry about blank. Let me worry about blank
I did do the nasty in the past-y.
Pizza delivery for... I. C. Weiner. Aww... I always thought by this stage in my life I'd be the one making the crank calls.
Offline
http://www.meyithi.com/graphics/ss_clean_thumb.png
http://www.meyithi.com/graphics/ss_dirty_thumb.pngSo nice to have consistent gaps back in dwm-6.0!
font: terminus
Xresources: http://codepad.org/48pxyN9b
wall: http://browse.deviantart.com/customizat … e#/d3cnoa6
patches: -nmaster +statuscolors +uselessgaps http://codepad.org/9tVxrODt
Hey man love your shot! is it possible to get your weechatrc somehow?
Offline
donderom wrote:clean http://ompldr.org/vY2tpMw wannabe busy http://ompldr.org/vY2tpNg
awesomewm, mc, ncmpcpp
Cool setup almost makes me want to install awesome again.
That wallpaper is amazing what is it?
Thanks, it's taken from here
Offline
Offline
Clean:
http://ompldr.org/tY2w3dQDirty:
http://ompldr.org/tY2w3dgRouter:
http://ompldr.org/tY2w3dwAlso, slowly switching over to monsterwm.
I have so much stuff on dwm that I can't live without, so I'm porting them over.
That news parser is awesome. Where did you get that miku?
Offline
That news parser is awesome. Where did you get that miku?
It's fork of macopix with this mascot http://mypace75.blog92.fc2.com/blog-entry-523.html
Also conky coverart script that also makes the mascot dance whenever deadbeef is playing https://github.com/Cloudef/dotFiles/blo … b-cover.sh
I have plans to write something lighter/simpler than macopix for desktop mascots.
Last edited by Cloudef (2012-02-02 16:39:59)
Offline
That looks great, do you mind sharing your wallpapaer and your panel script?
I lol'ed because of your wallpaper
BTW, my own screenshot:
Last edited by guelfi (2012-02-02 22:19:29)
Offline
█████
Last edited by Dogzilla (2024-10-17 10:27:47)
Offline
Offline
█████
Last edited by Dogzilla (2024-10-17 10:27:25)
Offline
BTW, can anyone point me a good image viewer? I'm tired of Ristretto.
gimmage has worked pretty well for me.
I like pie. Especially with a side of Arch.
Offline
Just a tiny update on the wallpaper and an experience with Screenfetch. Still prefering Alsi.
*
*BTW, can anyone point me a good image viewer? I'm tired of Ristretto.
The host of your image is questionable.
May I suggest ompldr or imgur to host your screens for public consumption.
Last edited by echo.unity (2012-02-03 05:46:39)
Offline
Subtle WM
That wallpaper is awesome can you share it?
Offline
Dogzilla wrote:Just a tiny update on the wallpaper and an experience with Screenfetch. Still prefering Alsi.
http://t2.stooorage.com/thumbs/1080/5531563_fotografia7.png
http://t2.stooorage.com/thumbs/1080/5531564_fotografia8.png
BTW, can anyone point me a good image viewer? I'm tired of Ristretto.
The host of your image is questionable.
May I suggest ompldr or imgur to host your screens for public consumption.
Yeah, very NSFW Ads on that host...
I like gqview as an image viewer. I haven't really used it recently, nor did I put too much effort into what else is out there...
Offline
kcirick wrote:That looks great, do you mind sharing your wallpapaer and your panel script?
Thanks!
Wallpaper: http://wallbase.cc/wallpaper/392495
panel script (Note that the conky on the top right uses a separate dzen instance, not included in the below script):
#!/bin/bash
monitor=0
## dzen stuff
FG='white'
BG='#111111'
FONT="-*-fixed-medium-*-*-*-12-*-*-*-*-*-*-*"
{
herbstclient --idle
} | {
TAGS=( $(herbstclient tag_status $monitor) )
separator="^fg(#1793D0)^ro(1x16)^fg()"
windowtitle=""
while true; do
echo -n " "
for i in "${TAGS[@]}" ; do
echo -n "^ca(1,herbstclient focus_monitor $monitor && herbstclient use ${i:1})"
case ${i:0:1} in
'#')
echo -n "^pa(;+2) ^fg(#FFFFFF)${i:1} "
twidth=$(textwidth "$FONT" " ${i:1} ")
echo -n "^p(-$twidth)^pa(;_TOP)^fg(#1793D0)^ib(1)^ro(${twidth}x2)"
;;
'+')
echo -n "^pa(;+2) ^fg(#FFFFFF)${i:1} "
twidth=$(textwidth "$FONT" " ${i:1} ")
echo -n "^p(-$twidth)^pa(;_TOP)^fg(#123456)^ib(1)^ro(${twidth}x2)"
;;
':')
echo -n "^pa(;+2) ^fg(#FFFFFF)${i:1} "
;;
'!')
echo -n "^pa(;+2) ^fg(#FF0000)${i:1} "
;;
*)
echo -n "^pa(;+2) ^fg(#123456)${i:1} "
;;
esac
echo -n "^ca()"
done
echo -n " $separator "
if [[ $(echo ${TAGS[@]}) == *#* ]]; then
echo -n " ${windowtitle//^/^^} "
fi
echo
read line || break
cmd=( $line )
case "${cmd[0]}" in
tag*)
TAGS=( $(herbstclient tag_status $monitor) )
;;
focus_changed)
winid="${cmd[1]}"
windowtitle=$(xprop -id "$winid" \
| grep '_NET_WM_NAME' \
| cut -d\" -f2)
;;
esac
done
} 2> /dev/null |dzen2 -ta l -y 0 -x 0 -h 16 -w 816 -fg $FG -bg $BG -fn $FONT &
Offline