You are not logged in.

#51 2012-07-26 08:58:04

simon.swe
Member
From: sverige
Registered: 2012-02-26
Posts: 148
Website

Re: Share your monsterwm desktop!

melw wrote:
simon.swe wrote:

2 hours with monster http://ompldr.org/vZXVuaw
WIP big_smile

#fitthora? Inte det vackraste namnet på en kanal när man visar ett screenshot smile))

verkligen inte smile

Offline

#52 2012-07-26 10:55:15

kalle97
Member
Registered: 2012-07-18
Posts: 80

Re: Share your monsterwm desktop!

Haha, fan va lol.

Offline

#53 2012-07-26 12:52:30

Shinryuu
Member
From: /dev/urandom
Registered: 2010-02-27
Posts: 339

Re: Share your monsterwm desktop!

Okay, here's the finished product which I modified all day long:
tZXY4MQ

Here's the script, beware of the dirtyness!

#!/usr/bin/env bash

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

tags=(' null' ' web' ' foo' '')
layouts=('' '' '' '' '') 

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

function statusbar {
# mpd status
music="$(mpc current -f "%title% #\f8by #\f9%artist%")"
if [ -z "$music" ]; then music="[stopped]" mstat=""
else
    mstat="$(mpc | sed -rn '2s/\[([[:alpha:]]+)].*/\1/p')"
    [ "$mstat" == "paused" ] && mstat="" || mstat=""
fi

# date and time
date="$(date +"%H:%M")" dstat=""

# Print
echo "\r "\\b4 \\f1$mstat\\fr \\br" "$music" "\\b4 \\f1$dstat\\fr \\br" "$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="8" bg="1" lc="\u6 " rc=" \ur" && layout="\\b2 \\f1"${layouts[$m]}"\\fr \\br" || fg="9" bg="0" lc=" " rc=" "
            # Has windows ?
            ((w)) && ((! c)) && fg="9" lc="\u5 " rc=" \ur"
            # Urgent windows ?
            ((u)) && fg="0" bg="2" lc="\u4 " rc=" \ur"

            tmp+="\f$fg\b$bg$lc$label$rc\fr\br"
	    
        done
	
        tmp+=" $layout"
    fi
    echo "$tmp $(statusbar)"
done < "$ff" | bar &

$wm > "$ff"

rm $ff

Last edited by Shinryuu (2012-07-27 12:56:39)

Offline

#54 2012-07-26 13:12:32

kalle97
Member
Registered: 2012-07-18
Posts: 80

Re: Share your monsterwm desktop!

Nice, can you share the bar config?

Offline

#55 2012-07-26 18:43:00

stlarch
Member
From: hell
Registered: 2010-12-25
Posts: 1,265

Re: Share your monsterwm desktop!

I tweaked my monsterwm+bar setup a little bit.
tZXZuYw

Offline

#56 2012-07-26 19:28:05

Cloudef
Member
Registered: 2010-10-12
Posts: 636

Re: Share your monsterwm desktop!

Cross post from screenshots thread again:
Bought 2x 22" monitors for 80€ each, what a bargain!

Clean
tZXZvMg
Penis
tZXZvMQ

Offline

#57 2012-07-26 19:37:12

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

Re: Share your monsterwm desktop!

dnuux wrote:

Thanks, it's DejaVu.

I was referring to icons in panel. How did you do that?

Offline

#58 2012-07-26 21:06:42

DoctorSamulus
Member
Registered: 2010-11-04
Posts: 53

Re: Share your monsterwm desktop!

kuraku wrote:
dnuux wrote:

Thanks, it's DejaVu.

I was referring to icons in panel. How did you do that?

He used two fonts, one being DejaVu, the second being a font filled entirely with icons. Then when he pipes text to the statusbar it loads the specified icons when the specific unicode for the font is used. That's what I do at least tongue. There was a guide on this board to do it but I don't have the link on me atm.

Offline

#59 2012-07-26 21:38:58

dnuux
Member
Registered: 2012-07-22
Posts: 17

Re: Share your monsterwm desktop!

DoctorSamulus wrote:
kuraku wrote:
dnuux wrote:

Thanks, it's DejaVu.

I was referring to icons in panel. How did you do that?

He used two fonts, one being DejaVu, the second being a font filled entirely with icons. Then when he pipes text to the statusbar it loads the specified icons when the specific unicode for the font is used. That's what I do at least tongue. There was a guide on this board to do it but I don't have the link on me atm.

Well actually I'm using dzen2 so I just used xbm icons.

Offline

#60 2012-07-27 12:55:39

Shinryuu
Member
From: /dev/urandom
Registered: 2010-02-27
Posts: 339

Re: Share your monsterwm desktop!

kalle97 wrote:

Nice, can you share the bar config?

Check my post for the update smile

Offline

#61 2012-07-27 14:03:49

FirePhoenix
Member
From: /dev/null
Registered: 2011-04-04
Posts: 20
Website

Re: Share your monsterwm desktop!

Shinryuu wrote:

Okay, here's the finished product which I modified all day long:
http://ompldr.org/tZXY4MQ

Nice config. I am inspired by it smile.

Offline

#62 2012-07-27 15:38:16

kalle97
Member
Registered: 2012-07-18
Posts: 80

Re: Share your monsterwm desktop!

Shinryuu wrote:

Check my post for the update smile

Thanks smile

Offline

#63 2012-07-29 05:58:24

stlarch
Member
From: hell
Registered: 2010-12-25
Posts: 1,265

Re: Share your monsterwm desktop!

The first one is with bipolarbar + conky, second is bipolarbar with a simple status line and the last one is with bar. Thanks to firecat53 for helping me to get it to only show the number of open windows in monocle mode like dwm.

tZXl2MA    tZXl2OA    tZXl2YQ

edit: updated

Last edited by stlarch (2012-08-05 03:51:25)

Offline

#64 2012-08-01 19:45:55

simon.swe
Member
From: sverige
Registered: 2012-02-26
Posts: 148
Website

Re: Share your monsterwm desktop!

aLp

Dont know if you see. But I am using xflux so the screen is yellowbrowndark because its night time.
I have everything I need in the bar. The first thing after the pager and the gridlayout indicator is number of tasks running. a gmail python script, uptime, space left, local ip, mem, cpu, last irssi notification, torrent status, wifi, mpd, alsamixer and date.

Last edited by simon.swe (2012-08-01 20:04:19)

Offline

#65 2012-08-04 22:09:22

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

Re: Share your monsterwm desktop!

simon.swe wrote:

Dont know if you see. But I am using xflux so the screen is yellowbrowndark because its night time.

Nope, (x)f.lux is changing color temperature directly on monitor and it is not coloring your desktop so that is why we cant see it smile

Offline

#66 2012-08-05 02:59:22

2ManyDogs
Forum Moderator
Registered: 2012-01-15
Posts: 4,645

Re: Share your monsterwm desktop!

Am I the only person who likes the statusbar at the bottom of the screen?

2012_08_04_195024_1280x1024_scrot.jpg

Still using the same bar (used to be a sample on the github page, but it seems to be gone now) and conky through dzen2.

Last edited by 2ManyDogs (2012-08-05 03:09:13)


How to post. A sincere effort to use modest and proper language and grammar is a sign of respect toward the community.

Online

#67 2012-08-21 03:01:40

robstwd
Member
From: Brisbane
Registered: 2010-10-31
Posts: 32

Re: Share your monsterwm desktop!

just a basic setup of monsterwm (+windowtitles) + bipolarbar + conky smile

  • bipolarbar output on left via monsterwm's startup script, inspired by (plagiarised from) @stlarch & @c00kiemon5ter's gist 

  • bar output on right via conky; standard outputs plus a couple of home-grown ruby scripts (pacnew checking & git status of dotfile collection)

clean
vZjZlag

fake busy (uzbl + vim x2)
vZjZlaw

Edit: ended up backing out the windowtitles patch as my hacked-together script to populate the left-side output was causing some errors. More tinkering while I sort that out...

Last edited by robstwd (2012-08-21 07:27:50)

Offline

#68 2012-08-21 18:38:17

FirePhoenix
Member
From: /dev/null
Registered: 2011-04-04
Posts: 20
Website

Re: Share your monsterwm desktop!

Shinryuu wrote:

Okay, here's the finished product which I modified all day long:
http://ompldr.org/tZXY4MQ

Here's the script, beware of the dirtyness!

What font do you use for the bar?

Offline

#69 2012-08-22 08:58:53

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: Share your monsterwm desktop!

FirePhoenix wrote:
Shinryuu wrote:

Okay, here's the finished product which I modified all day long:
http://ompldr.org/tZXY4MQ

Here's the script, beware of the dirtyness!

What font do you use for the bar?

That's Ohsnap, made by stlarch. You can find its topic here on the boards and it's also in the AUR


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#70 2012-08-22 09:57:21

FirePhoenix
Member
From: /dev/null
Registered: 2011-04-04
Posts: 20
Website

Re: Share your monsterwm desktop!

Unia wrote:
FirePhoenix wrote:

What font do you use for the bar?

That's Ohsnap, made by stlarch. You can find its topic here on the boards and it's also in the AUR

I've thought that but ohsnap doesn't have some icons on the image. I think it's mod-ed ohsnap.
I am so lazy to modify font so I ask him. (j/k)

Offline

#71 2012-08-22 11:40:50

Shinryuu
Member
From: /dev/urandom
Registered: 2010-02-27
Posts: 339

Re: Share your monsterwm desktop!

FirePhoenix wrote:
Unia wrote:
FirePhoenix wrote:

What font do you use for the bar?

That's Ohsnap, made by stlarch. You can find its topic here on the boards and it's also in the AUR

I've thought that but ohsnap doesn't have some icons on the image. I think it's mod-ed ohsnap.
I am so lazy to modify font so I ask him. (j/k)

Wrong, icons are Stlarch and Ohsnap goes for the text wink

#define BAR_FONT       "-Misc-Stlarch-Medium-R-Normal--10-100-75-75-C-80-ISO10646-1", \
                       "-*-ohsnap.icons-medium-r-*-*-12-*-*-*-*-*-*-*"

Last edited by Shinryuu (2012-08-22 12:00:32)

Offline

#72 2012-08-22 13:12:54

FirePhoenix
Member
From: /dev/null
Registered: 2011-04-04
Posts: 20
Website

Re: Share your monsterwm desktop!

Shinryuu wrote:

Wrong, icons are Stlarch and Ohsnap goes for the text wink

#define BAR_FONT       "-Misc-Stlarch-Medium-R-Normal--10-100-75-75-C-80-ISO10646-1", \
                       "-*-ohsnap.icons-medium-r-*-*-12-*-*-*-*-*-*-*"

Thank you so much. I will try those font.
-Edit-
And here is mine. Colorful desktop LOL.
It's based on your config smile
Very clean
bjAYk.png

Web browsing
sEdv8.png

Some tasks
263UB.png

Last edited by FirePhoenix (2012-08-23 03:19:18)

Offline

#73 2012-08-24 06:14:55

kalle97
Member
Registered: 2012-07-18
Posts: 80

Re: Share your monsterwm desktop!

Shinryuu, stlarch and kuraku have the sexiest configs IMO.

Here's mine:

http://ompldr.org/vZjdwdA/screen.png

Last edited by kalle97 (2012-08-24 06:15:32)

Offline

#74 2012-08-24 10:17:23

null
Member
Registered: 2009-05-06
Posts: 398

Re: Share your monsterwm desktop!

tZjd6Zw tZjd6aA
Just migrated my dwm config to monsterwm. No more patching smile

Offline

#75 2012-08-24 10:39:10

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: Share your monsterwm desktop!

null wrote:

No more patching smile

How boring tongue


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

Board footer

Powered by FluxBB