You are not logged in.

#276 2012-01-27 21:21:19

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

c00kiemon5ter wrote:
TheLemonMan wrote:

Another patch big_smile This time its a bugfix, this patch will prevent the wm to take into account the panel size when it's disabled in the config.
Enjoy.

This breaks some things, but I'll look it over to fix this.

alright, it seems that you're trying to disable the panel by setting SHOW_PANEL to false, but instead you should set the PANEL_HEIGHT to zero/0 . SHOW_PANEL sets the default visibility state for the panel, if you use Mod1+b (by default) it gets toggled.

btw, look what I did to fib tongue tongue

c00kiemon5ter wrote:
bloom wrote:

If you just add gaps around windows, you'll end up with double gaps between windows and single gaps at the window area borders. But it's not a big deal and I think you should concentrate on your exams now.

ha, good catch, it's not visible with small borders, I'll fix this too

I fixed this, I'll push a bit later, to merge into bloat too.

Last edited by c00kiemon5ter (2012-01-27 22:16:47)


.:[ git me! ] :.

Offline

#277 2012-01-27 21:50:06

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

All updated wink


.:[ git me! ] :.

Offline

#278 2012-01-28 02:56:06

topcat-software
Member
Registered: 2011-12-17
Posts: 20
Website

Re: monsterwm! ~ yet another tiny wm

Quick note I wanted to share, monsterwm is alive & well on DragonFly BSD too:

# monsterwm under DragonFly BSD
#
# for X11 include/lib paths invoke:
# pkg-config --cflags x11
# pkg-config --libs x11

X11INC = /usr/pkg/include
X11LIB = /usr/pkg/lib

Last edited by topcat-software (2012-01-28 02:59:50)

Offline

#279 2012-01-28 18:14:43

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

anyone using a dzen bar to show in which desktop we are, care to share?

Offline

#280 2012-01-28 18:31:49

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

I've described this on page2
you can also check my configs or other's from here (cloudef, stlarch, etc)

Last edited by c00kiemon5ter (2012-01-29 01:04:47)


.:[ git me! ] :.

Offline

#281 2012-01-28 21:18:08

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

Re: monsterwm! ~ yet another tiny wm

Merged all the changes.

Offline

#282 2012-01-29 14:47:50

topcat-software
Member
Registered: 2011-12-17
Posts: 20
Website

Re: monsterwm! ~ yet another tiny wm

> monsterwm is alive & well on DragonFly BSD too

ditto FreeBSD v9.0

X11INC = /usr/local/include/X11
X11LIB = /usr/local/lib

INCS = -I. -I/usr/local/include -I${X11INC}
LIBS = -L/usr/local/lib -lc -L${X11LIB} -lX11

(sorry if this is ot, just trying to get the word out)

peace!

Offline

#283 2012-01-29 15:36:13

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

no problem wink monsterwm should work anywhere xlib works, by just tweaking the path to the lib and headers smile


.:[ git me! ] :.

Offline

#284 2012-01-29 16:28:03

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

Thank you c00kiemon5ter! Another satisfied costumer!

tY2luYQ
tY2luZA

Still one question and one issue (maybe feature tongue):
Q: how can I bind the multimedia keys (XF86AudioMute, ...) to a command (dvol) without using any modifier?
I: When a window pops-up in [M] mode, if follow-mouse is enabled, and I move the mouse to the window that gave origin to the pop-up (a save as dialog for example), it get's sent to the back. In dwm the pop-up is "always on front".

Last edited by el mariachi (2012-01-29 19:34:01)

Offline

#285 2012-01-29 18:08:18

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

Re: monsterwm! ~ yet another tiny wm

@el mariachi
Setting modifier as 0 and key as 0x1008ff12 should work.

Offline

#286 2012-01-29 19:27:07

TheLemonMan
Member
From: Italy
Registered: 2011-09-04
Posts: 214
Website

Re: monsterwm! ~ yet another tiny wm

el mariachi wrote:

Thank you c00kiemon5ter! Another satisfied costumer!

http://ompldr.org/tY2luYQ
http://ompldr.org/tY2luZA

Still one question and one issue (maybe feature tongue):
Q: how can I bind the multimedia keys (XF86AudioMute, ...) to a command (dvol) without using any modifier?
I: When a window pops-up in [M] mode, if follow-mouse is enabled, and I move the mouse to the window that gave origin to the pop-up (a save as dialog for example), it get's sent to the back. In dwm the pop-up is "always on front".

Just put

#include <X11/XF86keysym.h>

at the top of your config.h and you can use the XF86XK_ defines with 0 as modifier to bind the multimedia keys smile

Offline

#287 2012-01-29 19:34:30

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

Thanks! I used the codes like Cloudef said and it works wink

Offline

#288 2012-01-30 21:39:59

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

sorry for the naggin, but is there a way of defining an app as floating without linking it to a specific desktop (in config.h)?

Offline

#289 2012-01-30 22:17:33

Army
Member
Registered: 2007-12-07
Posts: 1,784

Re: monsterwm! ~ yet another tiny wm

For the desktop, simply choose "-1" (at least I guess that this works big_smile )

Last edited by Army (2012-01-30 22:18:19)

Offline

#290 2012-01-30 22:23:48

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

Thanks! I don't know C, taking baby steps smile
it works wink

Last edited by el mariachi (2012-01-30 22:26:51)

Offline

#291 2012-01-31 01:31:36

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

If the specified desktop in the AppRules is any negative number the app will be spawned in the current desktop

also a shot tongue
tY2ptaA

Last edited by c00kiemon5ter (2012-01-31 01:39:55)


.:[ git me! ] :.

Offline

#292 2012-01-31 10:06:55

el mariachi
Member
Registered: 2007-11-30
Posts: 595

Re: monsterwm! ~ yet another tiny wm

nice vim statusbar you got there wink is it some special plugin?

Offline

#293 2012-01-31 10:12:56

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm


.:[ git me! ] :.

Offline

#294 2012-02-01 10:35:55

rich_o
Member
Registered: 2008-07-28
Posts: 49

Re: monsterwm! ~ yet another tiny wm

Hi,

there are some issues when using the monocle-layout. open two or more windows. change desktop, change back. now change to another window, iit won't get focused. you have to cycle though all windows or back and forth to gain focus. master branch (commit 155d8c4179, Jan 30, 2012), FOLLOW_MOUSE, FOLLOW_WINDOW, CLICK_TO_FOCUS all set to false. If I find the time, i'll look into it myself.

And btw, thank you very much for the showhide patch, works like a charm!

rich_o

Offline

#295 2012-02-01 14:04:57

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

I'll look into it once I'm home in a couple of hours


.:[ git me! ] :.

Offline

#296 2012-02-01 17:37:16

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

Fixed in the latest commit, thanks for reporting wink hf


-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
C                                1            103            296            646
C/C++ Header                     1              9              9             66
-------------------------------------------------------------------------------
SUM:                             2            112            305            712
-------------------------------------------------------------------------------

.:[ git me! ] :.

Offline

#297 2012-02-02 17:52:00

whooper
Member
From: Germany
Registered: 2008-12-24
Posts: 37

Re: monsterwm! ~ yet another tiny wm

I'm having an issue with st-hg. When I send a killclient function to a st-hg terminal it doesn't close it.

I tried to replicate this using dwm but it acts as expected. I think it's a monsterwm bug.

Im using st 0.1.1 and the latest monsterwm-git.

Offline

#298 2012-02-03 13:52:32

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: monsterwm! ~ yet another tiny wm

hey whooper, it seems st doesn't handle WM_DELETE atoms as it should. dwm kills that client, which means that if you spawn st from a terminal, you'll get an error message from X, saying resource is unavailable or something.
If they're not willing to fix that, I may try killing such windows too. I'll ask and see how it goes.


.:[ git me! ] :.

Offline

#299 2012-02-04 17:52:03

Army
Member
Registered: 2007-12-07
Posts: 1,784

Re: monsterwm! ~ yet another tiny wm

Feature request:

In rotate_desktop, only go to desktops which contain at least one client. If you want to go to a specific desktop, it makes more sense to go there directly with MOD?+$number. I think it's useless to rotate to empty desktops.

Opinions?

Offline

#300 2012-02-05 00:38:39

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

Re: monsterwm! ~ yet another tiny wm

Army wrote:

Feature request:

In rotate_desktop, only go to desktops which contain at least one client. If you want to go to a specific desktop, it makes more sense to go there directly with MOD?+$number. I think it's useless to rotate to empty desktops.

Opinions?

+1

Offline

Board footer

Powered by FluxBB