all repos — dwm @ 61bb8b2241d4db08bea4261c82e27cd9797099e7

my dwm build

61bb8b22
Fix x coordinate calculation in buttonpress.
Ian Remmler ian@remmler.org
Tue, 03 Mar 2020 16:23:53 -0600
bb2e7222
dwm.1: fix wrong text in man page
Hiltjo Posthuma hiltjo@codemadness.org
Wed, 08 Jul 2020 18:05:50 +0200
f04cac6d
Fix memory leaks in drw

The function drw_fontset_free in drw.c was never called.
Alex Flierl shad0w73@freenet.de
Thu, 11 Jun 2020 15:28:32 +0200
f09418bb
dwm crashes when opening 50+ clients (tile layout)

Many users new to dwm find themselves caught out by being kicked out to the login manager (dwm crashing) when they open 50+ clients for demonstration purposes. The number of clients reported varies depending on the resolution of the monitor.

The cause of this is due to how the default tile layout calculates the height of the next client based on the position of the previous client. Because clients have a minimum size the (ty) position can exceed that of the window height, resulting in (m->wh - ty) becoming negative. The negative height stored as an unsigned int results in a very large height ultimately resulting in dwm crashing.

This patch adds safeguards to prevent the ty and my positions from exceeding that of the window height.
bakkeby bakkeby@gmail.com
Thu, 23 Apr 2020 09:50:54 +0200
ed3ab6b4
drawbar: Don't shadow sw global

This jarred me a bit while reading the code, since "sw" usually refers
to the global screen geometry, but in drawbar() only it refers to
text-related geometry. Renaming it makes it more obvious that these are
not related.
Chris Down chris@chrisdown.name
Wed, 22 Apr 2020 15:48:27 +0100
f087d20e
getatomprop: Add forward declaration

No functional changes, but for every other function we have a forward
declaration here. getatomprop should be no exception.
Chris Down chris@chrisdown.name
Wed, 22 Apr 2020 15:48:08 +0100
a8e95137
setmfact: Unify bounds for compile-time and runtime mfact

There are two places that mfact can be set:

- In the mfact global, which is defined at compile time and passed
  into m->mfact during monitor setup. No bounds checks are performed,
  but the comment alongside it says that valid values are [0.05..0.95]:

      static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */

- By setmfact, which adjusts m->mfact at runtime. It also does some
  minimum and maximum bounds checks, allowing [0.1..0.9]. Values outside
  of that range are ignored, and mfact is not adjusted.

These different thresholds mean that one cannot setmfact 0.95 or 0.05,
despite the comment above that lists the legal range for mfact.

Clarify this by enforcing the same bounds in setmfact at runtime as
those listed for mfact at compile time.
Chris Down chris@chrisdown.name
Mon, 20 Apr 2020 16:41:52 +0100
c82db690
config.mk: fix POSIX_C_SOURCE macro for feature test for snprintf()

The feature test was incorrect:
_POSIX_C_SOURCE=2

"The value 2 or greater additionally exposes definitions for POSIX.2-1992."
http://man7.org/linux/man-pages/man7/feature_test_macros.7.html

A higher value is needed (atleast 1995):
https://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html

FreeBSD feature test macro:
on
https://github.com/freebsd/freebsd/blob/master/include/stdio.h line 297

This was already fixed in dmenu.

This fixes a warning on FreeBSD, reported by Plasmoduck on IRC, thanks.
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 03 Apr 2020 15:36:32 +0200
cb3f58ad
Prepare 6.2 release.
Anselm R Garbe anselm@garbe.ca
Sat, 02 Feb 2019 04:50:42 -0800
b69c870a
pledge: add rpath promise for the ugly Xft font fallback
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 02 Jun 2018 17:15:42 +0200
e78b4a92
Makefile: just show the compiler output

Don't be fancy and just show the actual output so debugging is simpler.
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 02 Jun 2018 17:04:44 +0200
3cd4023f
Do not strip at link stage

Building with debug symbols is worthless unless LDFLAGS are manually
adjusted as well.
Klemens Nanni kn@openbsd.org
Sat, 02 Jun 2018 15:12:42 +0200
f40f86fa
Pledge on OpenBSD
Klemens Nanni kn@openbsd.org
Fri, 25 May 2018 07:56:27 +0200
c3a2e016
config.def.h: ClkTagBar missing from comment

by Christopher Drelich <cd@cdrakka.com>

Patch was mangled on the ML, also adjusted the order to be the same as
the enum in dwm.c
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 25 May 2018 06:56:36 +0200
c8e94791
Function declarations in correct order.

In dwm.c function declarations are in alphabetical order except for
updategeom(). There doesn't appear to be any reason for this, so this
patch corrects that, and now all function declarations are in
alphabetical order.
Christopher Drelich cd@cdrakka.com
Wed, 02 May 2018 18:09:50 -0400
10dfa658
remove old TODO and BUGS entries

the bug in the dwm man page is an (ancient) Java issue.

Thanks David and quinq for the patches and feedback!
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 12 May 2018 19:14:19 +0200
3bd8466e
update README: remove mentioning the old dextra repo

Thanks Christopher Drelich <cd@cdrakka.com>
Hiltjo Posthuma hiltjo@codemadness.org
Wed, 14 Mar 2018 21:03:11 +0100
76c8c16d
All functions in alphabetical order except for this one.
Christopher Drelich cd@cdrakka.com
Wed, 14 Mar 2018 13:58:06 -0400
3cb34830
ColBorder has been moved to the enum with ColFg and ColBg.
Christopher Drelich cd@cdrakka.com
Wed, 14 Mar 2018 17:44:53 +0100
db223600
dont NUL terminate _NET_WM_NAME

Reported by Kernc, thanks!

"This makes a particular program that uses libwnck [1] fail after:

    Wnck-WARNING **: Property _NET_WM_NAME contained invalid UTF-8

in this code [2] because the returned string contains a '\0' and the
documentation for g_utf8_validate() [3] explicitly states that when
string length is provided, no nul bytes are allowed."

It is not entirely clear it is incorrect, other WM's seem to not
NUL terminate it either though.
Hiltjo Posthuma hiltjo@codemadness.org
Wed, 27 Dec 2017 13:36:53 +0100
3756f7f6
sync dmenu drw.{c,h} code: use Clr* (was Scm)
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 03 Nov 2017 21:20:48 +0100
99f78fa5
gettextprop: check result of XGetTextProperty (undefined behaviour for XFree)
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 03 Nov 2017 16:36:32 +0100
a9b6a312
Set class name on status bar

This is useful for configuring compositors to ignore the status bar
window.
Omar Sandoval osandov@osandov.com
Fri, 03 Nov 2017 09:58:38 -0700
6aa8e37e
simplify isfixed conditions
Daniel Cousens github@dcousens.com
Wed, 11 Oct 2017 08:10:45 +1100
ceac8c91
yet another cleanup

The previous patches introduced some unclean space-based indentation
patterns. This patch fixes them.
Anselm R Garbe garbeam@gmail.com
Mon, 08 May 2017 21:08:27 +0200
5b238c8d
Don't restrict snap in mousemove

This also fixes a bug where client windows only switch to floating mode when the
mouse is dragged in one specific direction.
Markus Teich markus.teich@stusta.mhn.de
Sat, 07 Jan 2017 17:21:30 +0100
022d0760
Button passthrough when client is not focused

Before this change it is not possible to press a button in a client on the first
click if the client is not yet focused. The first click on the button would
only focus the client and a second click on the button is needed to activate it.
This situation can occur when moving the mouse over a client (therefore focusing
it) and then moving the focus to another client with keyboard shortcuts.

After this commit the behavior is fixed and button presses on unfocused clients
are passed to the client correctly.
Markus Teich markus.teich@stusta.mhn.de
Sat, 07 Jan 2017 17:21:29 +0100
2952b68d
cleanup

- unify multi-line expression alignment style.
- unify multi-line function call alignment style.
- simplify client moving on monitor count decrease.
- clarify comment for focusin().
- remove old confusing comment about input focus fix in focusmon(). The
  explanation is already in the old commit message, so no need to keep it in the
  code.
- remove old comment describing even older state of the code in focus().
- unify comment style.
- break up some long lines.
- fix some typos and grammar.
Markus Teich markus.teich@stusta.mhn.de
Sat, 07 Jan 2017 17:21:28 +0100
bb3bd6fe
applied Markus' tagset purge of alternative view on _NET_ACTIVE_WINDOW event
Anselm R Garbe garbeam@gmail.com
Mon, 05 Dec 2016 10:16:46 +0100
e63bf229
applied Ivan Delalande's NET_SUPPORTING_WM_CHECK patch for gtk3 compatibility
Anselm R Garbe garbeam@gmail.com
Mon, 05 Dec 2016 10:09:49 +0100
53769475
applied Ian Remmler's man page adjustment suggestions
Anselm R Garbe garbeam@gmail.com
Mon, 05 Dec 2016 10:05:00 +0100
975c8983
applied Markus' decouple color-scheme patch
Anselm R Garbe garbeam@gmail.com
Mon, 05 Dec 2016 10:01:33 +0100
a137a86a
applied Markus' clarify status text padding patch
Anselm R Garbe garbeam@gmail.com
Mon, 05 Dec 2016 09:54:20 +0100
839c7f69
LICENSE: update people
Quentin Rameau quinq@fifth.space
Mon, 14 Nov 2016 11:49:17 +0100
7a59cd14
dwm.1: add keybinding for spawning dmenu
Quentin Rameau quinq@fifth.space
Mon, 14 Nov 2016 11:18:27 +0100
24849aca
die() on calloc failure

thanks Markus Teich and David!
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 05 Nov 2016 11:34:52 +0100
ab9571bb
die() consistency: always add newline
Hiltjo Posthuma hiltjo@codemadness.org
Fri, 12 Aug 2016 14:35:25 +0200
56a31dc4
config.def.h: style improvement, use color Scheme enum
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 28 Jun 2016 18:04:56 +0200
7af4d439
import new drw from libsl and minor fixes.

- better scaling for occupied tag squares.
- draw statusline first to omitt some complicated calculations.
Markus Teich markus.teich@stusta.mhn.de
Sun, 22 May 2016 22:33:56 +0200
cd2d7549
Configure geometry before applying rules

Configuring geometry before applying rules makes it possible to have
more complex constraints in applyrules that depend on the initial window
dimensions and location.
Eric Pruitt eric.pruitt@gmail.com
Wed, 25 May 2016 16:33:11 -0700
3465bed2
fix fullscreen clients not resized on X display resolution change

patch provided by Bert Münnich <ber.t_AT_posteo.de>, thanks!
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 19 Dec 2015 20:25:26 +0100
4ec3a673
Shut up glibc about _BSD_SOURCE being deprecated
Quentin Rameau quinq@fifth.space
Sat, 19 Dec 2015 20:04:19 +0100
5ed9c481
code-style consistency
Hiltjo Posthuma hiltjo@codemadness.org
Sun, 08 Nov 2015 23:11:48 +0100
3c91283e
unboolification
Hiltjo Posthuma hiltjo@codemadness.org
Sun, 08 Nov 2015 22:48:43 +0100
e941181f
sort include + whitespace fix
Hiltjo Posthuma hiltjo@codemadness.org
Sun, 08 Nov 2015 20:38:00 +0100
43e82adf
separate program-specific c99 bool and X11

True, False are X11-specific (int), make sure to use c99 stdbool for
program-specific things.
Hiltjo Posthuma hiltjo@codemadness.org
Sat, 07 Nov 2015 14:04:49 +0100
42cf1c7d
Makefile: package all files with make dist
Hiltjo Posthuma hiltjo@codemadness.org
Sun, 08 Nov 2015 16:52:53 +0100
dce4fb37
setfullscreen: don't process the property twice

Some clients try to set _NET_WM_STATE_FULLSCREEN even when the window is
already in fullscreen.
For example, c->oldstate was set two times in a raw and window would
then always be floating.
We must check that it's not the case before processing it.
(original patch modified with suggestion from Markus Teich
<markus.teich@stusta.mhn.de>)
Quentin Rameau quinq+hackers@fifth.space
Sat, 07 Nov 2015 14:09:08 +0100
646b351c
sync updated drw code from dmenu

important:
- drw_rect: didn't use w and h, change the dwm code accordingly.
- drw_text: text is NULL is not allowed, use drw_rect().
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:34:49 +0200
e3b7e1d6
dwm: use ecalloc, prevent theoretical overflow
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:30:31 +0200
04db03a4
cleanup, dont use c++ style comments

- signal: print error string.
- die: start message with lower-case (consistency).
- bump version to 2015.
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:28:30 +0200
4a4817b3
dwm: cleanup: free schemes and cursors as array
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:27:31 +0200
7e1182ce
config.h: use common default font, pass Xft font name to dmenu

dmenu uses Xft now (soon to be released).
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:10:54 +0200
40529e14
config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override (ports and *BSDs)
Hiltjo Posthuma hiltjo@codemadness.org
Tue, 20 Oct 2015 23:01:49 +0200
14343e69
Add Xft and follback-fonts support to graphics lib
Eric Pruitt eric.pruitt@gmail.com
Thu, 05 Mar 2015 20:26:11 -0800
35db6d8a
removed .hgtags, thanks Dimitris for spotting
Anselm R Garbe garbeam@gmail.com
Sun, 23 Nov 2014 15:25:35 +0100
3d1090ba
applied Hiltjo's resize/move limitation

"Limit the amount of updates when resizing or moving a window in floating
mode to 60 times per second. This makes resizing and moving alot smoother
and by limiting it it also uses alot less resources on my machine.
Anselm R Garbe garbeam@gmail.com
Mon, 11 Aug 2014 07:24:29 +0200
18248ebf
same as before with dwm.c as well
Anselm R Garbe anselm@garbe.us
Thu, 29 May 2014 18:05:17 +0200
b468873b
updated copyright notice in LICENSE file
Anselm R Garbe anselm@garbe.us
Thu, 29 May 2014 18:02:12 +0200
cdec9782
applied Lukas' focus suggestion at startup, thanks
Anselm R Garbe anselm@garbe.us
Tue, 27 Aug 2013 20:39:21 +0200
6af27377
applied improved version of Martti Kühne's dmenu/multi monitor approach from dwm, no dmenuspawn required
Anselm R Garbe anselm@garbe.us
Fri, 02 Aug 2013 22:40:20 +0200
4fb31e08
do not take our font declaration as default for st
Anselm R Garbe anselm@garbe.us
Sat, 20 Jul 2013 09:08:46 +0200
b800a1d1
applied Jochen's drw_text patch, thanks
Anselm R Garbe anselm@garbe.us
Sun, 23 Jun 2013 21:53:09 +0200
33a74489
applied Julian's enum approach,
	however renamed theme into scheme resp. Theme into ClrScheme
Anselm R Garbe anselm@garbe.us
Wed, 19 Jun 2013 19:35:33 +0200
53646979
finished libsl/drw integration
Anselm R Garbe anselm@garbe.us
Sun, 16 Jun 2013 15:20:29 +0200
7edc5963
include font argument for st by default
Anselm R Garbe anselm@garbe.us
Thu, 02 May 2013 17:31:22 +0200
68b400e9
added st to SEE ALSO section
Anselm R Garbe anselm@garbe.us
Wed, 01 May 2013 15:45:32 +0200
656882d7
use st as default terminal from now on
Anselm R Garbe anselm@garbe.us
Wed, 01 May 2013 15:41:44 +0200
1479e76f
shut up about deprecated Xlib functions
Anselm R Garbe anselm@garbe.us
Wed, 01 May 2013 15:39:06 +0200
f2544a33
renamed draw into drw
Anselm R Garbe anselm@garbe.us
Wed, 17 Apr 2013 21:21:47 +0200
aafeaf73
continued with draw.c and draw.h implementation, now the integration begins
Anselm R Garbe anselm@garbe.us
Sun, 09 Dec 2012 19:11:11 +0100
f21d46ea
continued with draw.c abstraction, also started util.{h,c} implementation, that will be used by draw.c as well
Anselm R Garbe anselm@garbe.us
Sat, 08 Dec 2012 10:13:01 +0100
c0ba635c
removed DDC, all is Draw-dependent
anselm@garbe.us unknown
Sun, 18 Nov 2012 17:52:42 +0100
0a673ad7
continued, distinction of Draw and DDC is bad, needs to be merged
anselm@garbe.us unknown
Sun, 18 Nov 2012 17:26:12 +0100
3aabc08e
reverting the xkb dependency, I don't care if this function is deprecated, it seems it breaks other stuff instead.
anselm@garbe.us unknown
Sun, 18 Nov 2012 16:39:56 +0100
d456617f
basic draw.c structure
anselm@garbe.us unknown
Sun, 18 Nov 2012 12:04:29 +0100
61fe833a
reverting to plain X11 fonts in order to implement draw.c default
anselm@garbe.us unknown
Sun, 18 Nov 2012 10:56:54 +0100
917e2816
removed obsolete bugs from BUGS file
anselm@garbe.us unknown
Sat, 17 Nov 2012 20:04:04 +0100
31451c3a
compile fix
anselm@garbe.us unknown
Sat, 17 Nov 2012 19:12:10 +0100
344f35f9
applied Neil Klopfstein's patch, slightly modified
anselm@garbe.us unknown
Sat, 17 Nov 2012 19:10:39 +0100
87adcd26
starting with initial draw.h
anselm@garbe.us unknown
Sat, 17 Nov 2012 19:01:22 +0100
fd3c19bd
incorporating Xft instead of cairo, cairo provides far too many options
anselm@garbe.us unknown
Fri, 02 Nov 2012 12:17:50 +0100
1bdb393f
keep 6.1 intact
anselm@garbe.us unknown
Sun, 08 Jul 2012 09:45:53 +0200
940feed3
reverted to old updategeom() after several complains, we need to optimize the old way
anselm@garbe.us unknown
Sun, 08 Jul 2012 09:43:11 +0200
606b4417
applied James Turner's XkbKeycodeToKeysym patch, thanks
anselm@garbe.us unknown
Sat, 23 Jun 2012 20:12:49 +0200
20f69179
drastically changed updategeom() handling, see comment in updategeom() for details
anselm@garbe.us unknown
Sat, 23 Jun 2012 10:12:46 +0200
820cbb35
reversed Andreas Amann's fullscreen fix with the approach proposed by Gary Langshaw:
- idea is not supporting movemouse/resizemouse/togglefloating for fullscreen windows
- as fullscreen windows are broken anyways, they should only be adjusted by their own means
anselm@garbe.us unknown
Sat, 23 Jun 2012 09:06:00 +0200
90f32383
added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne
anselm@garbe.us unknown
Sun, 15 Apr 2012 11:41:18 +0200
3bfc43c3
applied Andreas Amanns' netwm_client_list patch, but with some indentation fixes
anselm@garbe.us unknown
Sun, 25 Mar 2012 17:49:35 +0200
c1128417
applied Andreas Amann's netwm_active_window patch, thx
anselm@garbe.us unknown
Sun, 25 Mar 2012 17:46:03 +0200
1b62f8fa
applied Andreas Amann fullscreen fix, some minor modifications
anselm@garbe.us unknown
Sat, 17 Mar 2012 18:14:17 +0100
54c3044d
unfocus on slow sloppy monitor focus
Connor Lane Smith cls@lubutu.com
Fri, 10 Feb 2012 00:36:08 +0000
51336aa4
applied Eckehard Berns fix fix, sorry that this took so long
anselm@garbe.us unknown
Wed, 08 Feb 2012 19:54:05 +0100
c4b6ac81
added 20h's clarification
anselm@garbe.us unknown
Sun, 22 Jan 2012 20:23:49 +0100
873bcb97
applied Eckehard Berns barwin leak fix and his suggestion to deal with restack() -- the latter aspect needs further investigation.
anselm@garbe.us unknown
Thu, 12 Jan 2012 07:36:05 +0100
907db0a8
config.mk cleanup
anselm@garbe.us unknown
Wed, 04 Jan 2012 13:30:12 +0100
4e7c4698
Added tag 6.0 for changeset ec4baab78314
anselm@garbe.us unknown
Mon, 19 Dec 2011 16:09:07 +0100
26445a0d
bump version to 6.0
anselm@garbe.us unknown
Mon, 19 Dec 2011 15:38:30 +0100
b5068e32
add sloppy monitor focus
Connor Lane Smith cls@lubutu.com
Tue, 15 Nov 2011 20:16:58 +0100
f099d2d5
new default colour scheme
Connor Lane Smith cls@lubutu.com
Sun, 06 Nov 2011 20:36:23 +0100
80a9da55
calculate window/monitor intersection
Connor Lane Smith cls@lubutu.com
Sun, 06 Nov 2011 20:31:29 +0100
d21026f0
honour fullscreen hint on map
Connor Lane Smith cls@lubutu.com
Sun, 06 Nov 2011 20:30:06 +0100
e5a1e773
testing Brians multiscreen issue fix
anselm@garbe.us unknown
Fri, 04 Nov 2011 20:02:35 +0100
8262d9e6
make ewmh dialog windows float
Christoph Lohmann 20h@r-36.net
Wed, 02 Nov 2011 12:01:28 +0000
90af1ced
allow 0 nmaster
Connor Lane Smith cls@lubutu.com
Mon, 31 Oct 2011 20:09:27 +0100
5ccd42f8
fix big-border corner case
Connor Lane Smith cls@lubutu.com
Sun, 30 Oct 2011 12:14:34 +0100
1586b7a0
added keyrelease remark to TODO
garbeam@gmail.com unknown
Sat, 29 Oct 2011 10:57:27 +0200
2420071f
improve tile spacing
Connor Lane Smith cls@lubutu.com
Fri, 28 Oct 2011 23:45:12 +0100
04c26574
add nmaster binds to manpage
Connor Lane Smith cls@lubutu.com
Wed, 26 Oct 2011 12:16:25 +0100
b1a28ae1
apply nmaster patch
Connor Lane Smith cls@lubutu.com
Tue, 25 Oct 2011 20:40:46 +0100
f68a01cd
apply resize hints in floating layout
Connor Lane Smith cls@lubutu.com
Tue, 25 Oct 2011 20:08:08 +0100
2b625eb7
hide clients to the left, not the right
Connor Lane Smith cls@lubutu.com
Tue, 25 Oct 2011 20:01:18 +0100
0f1f30da
applied Connors cleanup patch of Eckehards proposed fix of applyrules(), thanks everyone involved
garbeam@gmail.com unknown
Mon, 15 Aug 2011 18:44:12 +0200
dec4850d
applied Connors and Valentins patch to improve the unmapnotify handling of broken clients
garbeam@gmail.com unknown
Mon, 08 Aug 2011 16:55:06 +0000
0de4197c
applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver
garbeam@gmail.com unknown
Fri, 29 Jul 2011 20:01:22 +0200
a372248b
applied anonymous code cleanup patch
garbeam@gmail.com unknown
Wed, 27 Jul 2011 19:59:10 +0200
69e7d7df
added a marker for the flash fullscreen issue
garbeam@gmail.com unknown
Sun, 24 Jul 2011 10:41:43 +0100
c99fe7dd
changed sleep 20 into sleep 1 in example script as suggested by Snader_LB
garbeam@gmail.com unknown
Wed, 20 Jul 2011 18:56:10 +0000
d6670a80
applied Connors aesthitic buf fix in tile(), thanks
garbeam@gmail.com unknown
Wed, 20 Jul 2011 18:45:40 +0000
6288c446
applied Peters magic float mode bugfix
garbeam@gmail.com unknown
Wed, 20 Jul 2011 18:36:15 +0000
d5c5c52b
applied lolilolicon's floating center patch, further investigation wrt his second issue reported needed
garbeam@gmail.com unknown
Wed, 20 Jul 2011 18:33:19 +0000
d0b4575b
thanks to recursions on IRC for his remark
garbeam@gmail.com unknown
Wed, 20 Jul 2011 18:30:51 +0000
03518ce4
Added tag 5.9 for changeset dd74622a4785
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:25:23 +0100
cd8bb06a
enabled release flags
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:24:17 +0100
3150a8a1
applied Peters wintoclient/wintomon optimisation in enternotify()
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:22:22 +0100
b3c5f543
removed unneeded offset recalculation, thanks Jukka, let's see if this breaks some other client
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:18:50 +0100
a692bdcf
undo the focus optimisation patch for 5.9
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:12:05 +0100
d83454f6
applied Peters two patches, please test hg tip, if nothing breaks this is 5.9
garbeam@gmail.com unknown
Sat, 09 Jul 2011 07:57:10 +0100
27b01422
applied Garys patch in a slightly modified way
garbeam@gmail.com unknown
Sat, 02 Jul 2011 11:02:22 +0200
867ba360
applied Nicolas Capit's patch as interim solution until the multiscreen support is reworked in 6.0
garbeam@gmail.com unknown
Fri, 01 Jul 2011 17:56:53 +0100
e83f36db
fixed scroll lock (thanks bogdan)
Connor Lane Smith cls@lubutu.com
Mon, 27 Jun 2011 20:12:42 +0100
212f417e
fix numlock (thanks mikhail)
Connor Lane Smith cls@lubutu.com
Mon, 27 Jun 2011 19:35:11 +0100
3a392b85
making enternotify less focus hungry
garbeam@gmail.com unknown
Sat, 25 Jun 2011 09:07:28 +0100
92fe06b5
applied Andreas Amann's patch from Oct 2010, thanks
garbeam@gmail.com unknown
Fri, 24 Jun 2011 21:02:32 +0100
6cf29bff
applied Rudys barwidth patch, thanks Rudy
garbeam@gmail.com unknown
Fri, 17 Jun 2011 20:22:54 +0100
60c06a7c
don't check for monocle layout in zoom() exit condition
garbeam@gmail.com unknown
Tue, 14 Jun 2011 22:28:16 +0100
11475461
Thanks for the pedantic review :)
garbeam@gmail.com unknown
Tue, 14 Jun 2011 05:51:21 +0100
d384cee7
fixing some minor issues, next week is dwm-5.9 release time
garbeam@gmail.com unknown
Sat, 11 Jun 2011 08:33:20 +0100
5c710cf8
rm draw.c from 5.9 branch
Connor Lane Smith cls@lubutu.com
Sat, 04 Jun 2011 23:02:00 +0100
8a111c18
fix typo
Connor Lane Smith cls@lubutu.com
Sat, 04 Jun 2011 10:18:54 +0100
2255bf46
cleaner drawing
Connor Lane Smith cls@lubutu.com
Sat, 04 Jun 2011 10:17:25 +0100
04797343
update draw.c
Connor Lane Smith cls@lubutu.com
Sat, 21 May 2011 20:26:26 +0100
e7d41cc1
added draw.h, draw.c
Connor Lane Smith cls@lubutu.com
Fri, 20 May 2011 19:10:26 +0100
22d88188
applied Evil_Bobs cleanup patch
Anselm R Garbe anselm@garbe.us
Thu, 12 May 2011 14:16:33 +0000
6784429c
applied another minor change to the README
Anselm R Garbe anselm@garbe.us
Wed, 27 Apr 2011 15:55:18 +0000
37fea84d
applied Thomas' README patch
Anselm R Garbe anselm@garbe.us
Wed, 27 Apr 2011 12:38:59 +0000
c14d293e
applied Jack's mplayer fullscreen patch
Anselm R Garbe anselm@garbe.us
Tue, 26 Apr 2011 08:13:39 +0000
79b1657a
missed declaration
Anselm R Garbe anselm@garbe.us
Fri, 15 Apr 2011 08:13:06 +0000
d24837f1
minor fix of the NetActiveWindow multi-monitor flaw, slight rearrangement
Anselm R Garbe anselm@garbe.us
Fri, 15 Apr 2011 08:12:20 +0000
3c2d303c
applied Peter/Andreas NetActiveWindow patch in a slightly modified version
Anselm R Garbe anselm@garbe.us
Thu, 14 Apr 2011 13:46:25 +0000
1e20a0f7
applied Brendan MacDonell's WM_TAKE_FOCUS patch, thanks Brendan!
Anselm R Garbe anselm@garbe.us
Tue, 12 Apr 2011 20:19:32 +0000
96f98552
applied another patch of Hiltjo, thanks
Anselm R Garbe anselm@garbe.us
Fri, 25 Mar 2011 14:06:46 +0000
3c48858f
applied Hiltjos' BUGS patch from 23 Mar, sorry took a while :)
Anselm R Garbe anselm@garbe.us
Fri, 25 Mar 2011 13:57:54 +0000
dd46d5b5
applied Hiltjo's multimon mouse-based resize fix
Anselm R Garbe anselm@garbe.us
Wed, 23 Mar 2011 08:58:57 +0000
0bc4e41e
applied anonymous patch, I don't think the reversed array access has semantic side-effects
Anselm R Garbe anselm@garbe.us
Fri, 07 Jan 2011 16:05:22 +0000
703c4dd2
added a todo
Anselm R Garbe anselm@garbe.us
Thu, 02 Dec 2010 10:16:47 +0000
b68528d8
applied Hiltjo's cleanup patch
Anselm R Garbe anselm@garbe.us
Fri, 19 Nov 2010 11:53:59 +0000
a644baf6
applied Hiltjo's tiny cleanup fix
Anselm R Garbe anselm@garbe.us
Mon, 27 Sep 2010 07:53:44 +0000
c1f8688b
applied Hiltjo's tiny cleanup patch, thanks!
Anselm R Garbe anselm@garbe.us
Sat, 25 Sep 2010 13:39:08 +0000
bea4dd24
does this make a difference?
Anselm R Garbe anselm@garbe.us
Sat, 11 Sep 2010 19:00:18 +0000
83d10be1
added TODO and bumped version to 5.9
anselm@garbe.us unknown
Tue, 24 Aug 2010 13:13:20 +0100
1529058f
applied Hiltjo Posthuma's line saver patch
anselm@garbe.us unknown
Mon, 23 Aug 2010 17:25:53 +0100
36311d88
applied Hiltjo Posthuma's double-XineramaQueryScreens() patch, thanks Hiltjo!
Anselm R Garbe anselm@garbe.us
Sun, 25 Jul 2010 09:58:25 +0100
f1a2a3c8
Added tag 5.8.2 for changeset a043f0800805
anselm@garbe.us unknown
Fri, 04 Jun 2010 11:41:16 +0100
ee734fae
increased version
Anselm R Garbe anselm@garbe.us
Sun, 30 May 2010 10:03:09 +0100
62d3caa9
implemented better fullscreen handling, please test
Anselm R Garbe anselm@garbe.us
Sun, 30 May 2010 10:02:56 +0100
4c9b397f
Added tag 5.8.1 for changeset 1ed1e75c9c2e
Anselm R Garbe anselm@garbe.us
Sat, 29 May 2010 12:48:18 +0100
5c6545ad
removing Sylvain's patch because it breaks more than it fixes unfortunately, re-issuing a bugfix release 5.8.1
Anselm R Garbe anselm@garbe.us
Sat, 29 May 2010 12:48:11 +0100
a704b1ee
Added tag 5.8 for changeset 60ea8fed13ab
Anselm R Garbe anselm@garbe.us
Fri, 28 May 2010 11:43:44 +0100
f83d61df
removed DEBUG code and added 2010 to the copyright list
anselm@garbe.us unknown
Thu, 27 May 2010 08:20:42 +0100
c6180949
applied Sylvain Laurent's EWMH fullscreen state patch, simplified his patch a bit
anselm@garbe.us unknown
Thu, 27 May 2010 08:19:08 +0100
1973ab06
added the related bug reported by voltaic
Anselm R Garbe anselm@garbe.us
Sun, 11 Apr 2010 18:42:32 +0100
427053f8
pretty printing bugs a bit
Anselm R Garbe anselm@garbe.us
Thu, 01 Apr 2010 22:34:46 +0100
a88e0373
selmon optimisation is needed
Anselm R Garbe anselm@garbe.us
Thu, 01 Apr 2010 19:39:24 +0100
aa9f2be2
more debug output, experimental focus optimisation
Anselm R Garbe anselm@garbe.us
Thu, 01 Apr 2010 00:14:15 +0100
c53b29e6
quick typo fix
Anselm R Garbe anselm@garbe.us
Wed, 31 Mar 2010 23:27:30 +0100
d6bdd03d
it's debug season for upcoming dwm 5.8, so only use this if you really want to run experimental code or debug code
Anselm R Garbe anselm@garbe.us
Wed, 31 Mar 2010 23:24:22 +0100
1144e983
another bug report
Anselm R Garbe garbeam@gmail.com
Wed, 25 Nov 2009 13:56:17 +0000
7671d03a
removed misleading comment, thanks Romain Bertrand
Anselm R Garbe garbeam@gmail.com
Tue, 24 Nov 2009 09:31:17 +0000
bc554d45
added nsz's last bug corner case
Anselm R Garbe garbeam@gmail.com
Mon, 23 Nov 2009 08:13:18 +0000
ac4caea9
added BUGS, next version is 5.8
Anselm R Garbe anselm@garbe.us
Sat, 31 Oct 2009 11:45:56 +0000
161f2d92
Added tag 5.7.2 for changeset 15761ac5e2f1
Anselm R Garbe anselm@garbe.us
Sun, 27 Sep 2009 20:20:14 +0100
210378f1
applied Ryan Zheng's patch and re-releasing 5.7.2
Anselm R Garbe anselm@garbe.us
Sun, 27 Sep 2009 20:20:10 +0100
7879616a
Added tag 5.7.1 for changeset 48c3f87c335d
Anselm R Garbe anselm@garbe.us
Sun, 27 Sep 2009 10:31:20 +0100
9e8dd347
fixed the layout symbol bug reported by Nibble (but using a different approach as he suggested)
- optimised drawbar() and arrange() handling for multiple monitors, arrange only arranges the relevant monitors when applicable, same with drawbar
- need to release 5.7.1
Anselm R Garbe anselm@garbe.us
Sun, 27 Sep 2009 10:31:14 +0100
0b72be92
Added tag 5.7 for changeset 257403d4cd96
Anselm R Garbe anselm@garbe.us
Sat, 26 Sep 2009 19:52:04 +0100
91e902f7
switching to release flags
Anselm R Garbe anselm@garbe.us
Tue, 22 Sep 2009 20:34:03 +0100
30fed9a2
implemented nn < n case, k-zed please recheck
Anselm R Garbe anselm@garbe.us
Tue, 22 Sep 2009 20:33:42 +0100
c45d46ad
use buffer instead of pointer for mon->ltsymbol
Anselm R Garbe garbeam@gmail.com
Tue, 22 Sep 2009 09:53:11 +0100
6f55de83
added missing scan
Anselm R Garbe garbeam@gmail.com
Tue, 22 Sep 2009 09:16:48 +0100
07ad2981
implemented different version of updategeom
Anselm R Garbe anselm@garbe.us
Mon, 21 Sep 2009 19:51:17 +0100
f0a4845e
added TODO to updategeom in order to implement a decent version of it soon
Anselm R Garbe anselm@garbe.us
Sat, 19 Sep 2009 11:52:16 +0100
82ec7a7e
new experimental updategeom() additions that should avoid several problems with Xinerama, this is EXPERIMENTAL and might break something, the algorithms in use are quite complex and cumbersome, patches and comments welcome
Anselm R Garbe anselm@garbe.us
Fri, 18 Sep 2009 21:18:00 +0100
e7300e0f
implemented dynamic layout symbol stuff
Anselm R Garbe garbeam@gmail.com
Wed, 16 Sep 2009 15:59:54 +0100
c3feffa1
applied Tony Lainson's config.def.h patch
Anselm R Garbe garbeam@gmail.com
Tue, 15 Sep 2009 13:50:41 +0100
956a4300
update
Anselm R Garbe garbeam@gmail.com
Tue, 08 Sep 2009 13:33:58 +0100
01056b66
hard-core destruction
Anselm R Garbe garbeam@gmail.com
Tue, 08 Sep 2009 13:30:18 +0100
eb260b1a
renaming isdestroyed into destroyed
Anselm R Garbe garbeam@gmail.com
Tue, 08 Sep 2009 13:18:05 +0100
7fe81359
sync when a client is being killed
Anselm R Garbe garbeam@gmail.com
Tue, 08 Sep 2009 13:16:54 +0100
a3a859b4
added isdestroyed flag to unmanage
Anselm R Garbe garbeam@gmail.com
Tue, 08 Sep 2009 13:13:03 +0100
9c066c24
always updategeom when root is configured
nsz@tpx unknown
Mon, 07 Sep 2009 11:46:02 +0200
0a668922
another small optimisation
Anselm R Garbe garbeam@gmail.com
Tue, 18 Aug 2009 15:59:38 +0100
57629642
also update title if the client is on an unfocused monitor
Anselm R Garbe garbeam@gmail.com
Tue, 18 Aug 2009 15:42:55 +0100
cba6b211
applied nsz's dwm.1 patch, also added wmname
Anselm R Garbe anselm@garbe.us
Sun, 16 Aug 2009 21:39:24 +0100
42750a62
applied Jukka's cosmetic patch
Anselm R Garbe anselm@garbe.us
Sun, 16 Aug 2009 08:18:54 +0100
8ef465d5
applied Jukka's sigchld patch
Anselm R Garbe anselm@garbe.us
Sun, 16 Aug 2009 08:18:25 +0100
33fe200b
added merged patch of anydot and Neale
Anselm R Garbe garbeam@gmail.com
Thu, 13 Aug 2009 10:45:59 +0100
91fffb3f
fixed nn declaration
Anselm R Garbe garbeam@gmail.com
Mon, 27 Jul 2009 12:01:58 +0100
1fa31efe
Added tag 5.6.1 for changeset e47a47bd3ed4
Anselm R Garbe anselm@garbe.us
Sun, 26 Jul 2009 14:02:28 +0100
244addb3
applied nsz patch
Anselm R Garbe garbeam@gmail.com
Tue, 21 Jul 2009 10:57:54 +0100
c13be8d6
updategeom fix for same geom screens
Anselm R Garbe garbeam@gmail.com
Tue, 21 Jul 2009 08:57:04 +0100
dc39ae85
applied nsz' man page comment, thanks!
Anselm R Garbe garbeam@gmail.com
Mon, 20 Jul 2009 17:08:34 +0100
966d76a4
merge
Anselm R Garbe garbeam@gmail.com
Mon, 20 Jul 2009 16:40:32 +0100
7151bf83
removed Standard input hint
Anselm R Garbe garbeam@gmail.com
Mon, 20 Jul 2009 16:39:42 +0100
999d6e79
removed misleading comment
Anselm R Garbe garbeam@gmail.com
Fri, 17 Jul 2009 15:28:07 +0100
63607529
merge
Anselm R Garbe garbeam@gmail.com
Fri, 17 Jul 2009 13:35:44 +0100
6877a000
it's all nsz's hard investigation effort, hail nsz! ;)
Anselm R Garbe garbeam@gmail.com
Fri, 17 Jul 2009 13:35:17 +0100
450b08dd
final style fixes
Anselm R Garbe garbeam@gmail.com
Tue, 14 Jul 2009 16:26:04 +0100
da80487c
removed int cast in TAGMASK as suggested by nsz
Anselm R Garbe garbeam@gmail.com
Tue, 14 Jul 2009 16:04:07 +0100
d9779c06
some stylistic changes
Anselm R Garbe garbeam@gmail.com
Tue, 14 Jul 2009 16:01:14 +0100
20996c6c
removed obsolete BUG
Anselm R Garbe garbeam@gmail.com
Mon, 13 Jul 2009 12:51:00 +0100
8dc9fcf1
mark broken clients as broken
anselm@x200s.config unknown
Sun, 12 Jul 2009 22:49:06 +0100
fc21dd4b
fixing updatetitle
anselm@x200s.config unknown
Sun, 12 Jul 2009 22:34:29 +0100
758b100d
extended rule to apply monitors if set up accordingly
Anselm R Garbe anselm@garbe.us
Thu, 09 Jul 2009 21:52:17 +0100
8420fb1c
reverting to optimised compiler options, current state seems stable
Anselm R Garbe anselm@garbe.us
Thu, 09 Jul 2009 20:49:48 +0100
f6128a16
extended man page to mention number of visible windows
Anselm R Garbe anselm@garbe.us
Thu, 09 Jul 2009 20:11:33 +0100
87526be6
added client number printing right of layout symbol
Anselm R Garbe anselm@garbe.us
Thu, 09 Jul 2009 19:58:58 +0100
565050ac
removed monsyms, useless
Anselm R Garbe garbeam@gmail.com
Thu, 09 Jul 2009 11:29:01 +0100
5e408d8f
restricting number of mons by length of monsyms
Anselm R Garbe garbeam@gmail.com
Thu, 09 Jul 2009 11:21:06 +0100
1724f7fa
introducing const where it might make some sense
Anselm R Garbe anselm@garbe.us
Wed, 08 Jul 2009 18:59:20 +0100
3e6fe6b5
no that's definately better
Anselm R Garbe garbeam@gmail.com
Wed, 08 Jul 2009 17:24:39 +0100
6620615a
some minor changes
Anselm R Garbe garbeam@gmail.com
Wed, 08 Jul 2009 17:05:20 +0100
61c3095f
die if malloc sizeof(Monitor) fails
Anselm R Garbe garbeam@gmail.com
Wed, 08 Jul 2009 16:05:36 +0100
a72dc2fe
applied Mate's patch, added Mate to LICENSE
Anselm R Garbe anselm@garbe.us
Mon, 06 Jul 2009 20:12:47 +0100
8b17f551
some cleanups
Anselm R Garbe anselm@garbe.us
Thu, 02 Jul 2009 20:56:23 +0100
cd96232f
hotfix
Anselm R Garbe anselm@garbe.us
Thu, 02 Jul 2009 20:38:56 +0100
a9e145fe
changed focusmon/tagmon to work on prev/next instead (-1/+1), changed shortcuts to Mod1-, Mod1-. and Mod1-Shift-, Mod1-Shift-.
Anselm R Garbe anselm@garbe.us
Thu, 02 Jul 2009 20:37:26 +0100
5dd92c76
removed some empty lines
Anselm R Garbe anselm@garbe.us
Thu, 02 Jul 2009 18:40:04 +0100
52bd69c2
interactive resizals allow display dimensions again
Anselm R Garbe anselm@garbe.us
Thu, 02 Jul 2009 18:30:01 +0100
ca376970
more sensible
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 16:48:54 +0100
8352f2b3
hmm, can't decide on the default monitor symbol set
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 16:47:00 +0100
d4bfde79
update
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 16:44:57 +0100
7ac8c1d4
introduced monitor symbols
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 16:41:52 +0100
16e1ef5d
minor fix
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 14:42:06 +0100
1d729384
several bugfixes
Anselm R Garbe anselm@garbe.us
Wed, 01 Jul 2009 19:15:20 +0100
25c1eb28
some minor fix if xinerama is disabled, still some odd behavior in there
Anselm R Garbe garbeam@gmail.com
Wed, 01 Jul 2009 17:08:10 +0100
d719cc9a
updated year ranges
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 20:20:33 +0100
9cde6570
fixed usage of sx, sy, sw, sh
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 20:15:31 +0100
e408ca97
don't draw monitor number, if there is just one monitor
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 20:00:11 +0100
183dc670
fixed order of transient monitor applicaion and rule application
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 19:56:19 +0100
25947bcf
hotfix
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 19:45:25 +0100
1ddfc571
several simplifications
Anselm R Garbe anselm@garbe.us
Tue, 30 Jun 2009 19:39:59 +0100
21cd59a6
play safe
Anselm R Garbe garbeam@gmail.com
Tue, 30 Jun 2009 15:56:32 +0100
6cbe47d4
applied a collection of Christof Musik patches, and fixed an issue reported by waistcoats on IRC
Anselm R Garbe garbeam@gmail.com
Tue, 30 Jun 2009 15:51:09 +0100
029655bb
some cleanup handling for index based mon search
Anselm R Garbe anselm@garbe.us
Sat, 27 Jun 2009 18:50:50 +0100
27db9d44
using mon in function names for consistency reasons
Anselm R Garbe anselm@garbe.us
Sat, 27 Jun 2009 18:42:10 +0100
176408af
fixed several issues with focus handling via mouse, also added sending clients to the right monitor they belong to after mouse moves/resizals
Anselm R Garbe anselm@garbe.us
Sat, 27 Jun 2009 18:39:03 +0100
64674c39
fixed focusmon brokeness
Anselm R Garbe anselm@garbe.us
Sat, 27 Jun 2009 17:38:18 +0100
b9dee2c6
tag fix
Anselm R Garbe garbeam@gmail.com
Fri, 26 Jun 2009 16:41:27 +0100
a73ff905
typo fix
Anselm R Garbe garbeam@gmail.com
Thu, 25 Jun 2009 11:17:42 +0100
e3f0445d
assign selected tags of target monitor to client when tagmon is performed (less obtrusive imho)
Anselm R Garbe garbeam@gmail.com
Thu, 25 Jun 2009 11:10:19 +0100
ab06f744
added some TODOs, some other focus fixes
Anselm R Garbe anselm@garbe.us
Wed, 24 Jun 2009 20:04:18 +0100
a2a35909
disabled XINULATOR code for now
Anselm R Garbe anselm@garbe.us
Wed, 24 Jun 2009 19:52:09 +0100
e8aafb8e
made bar based monitor switching working
Anselm R Garbe anselm@garbe.us
Wed, 24 Jun 2009 19:51:41 +0100
18b13124
several other focus fixes, introduced unfocus()
Anselm R Garbe anselm@garbe.us
Wed, 24 Jun 2009 19:45:47 +0100
80ee9547
some focus fixes
Anselm R Garbe garbeam@gmail.com
Wed, 24 Jun 2009 15:37:32 +0100
454a04ac
fixed title rendering on non-active screen
Anselm R Garbe garbeam@gmail.com
Wed, 24 Jun 2009 13:51:45 +0100
891831fe
fixed getclient brokeness
Anselm R Garbe garbeam@gmail.com
Wed, 24 Jun 2009 12:48:01 +0100
cdb8e274
some hotfix cleanup related to wild selmon-> destruction
Anselm R Garbe garbeam@gmail.com
Wed, 24 Jun 2009 11:14:51 +0100
5c4913e9
some restack fixes, still odd behavior if n>1 on unmanaging clients
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 19:09:30 +0100
fa5ae54b
added some dual head simulator code
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 19:00:32 +0100
7de53419
simplified left over re-assignment
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 17:39:42 +0100
54dc0d54
fixed tagmon, re-using detach/detachstack and attach/attachstack
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 17:34:20 +0100
913333f5
simplified ISVISBLE and nexttiled
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 17:20:33 +0100
d702f392
moved clients/stack/sel to Monitor, that's a per monitor structure from now on
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 17:17:25 +0100
0d8671a5
declare buf only if XINERAMA support is used
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 16:29:32 +0100
38e9b670
if compiled without XINERAMA support assume 1 monitor by default (n = 1)
Anselm R Garbe anselm@garbe.us
Tue, 23 Jun 2009 16:28:37 +0100
a3bbdb1b
some more refactoring, bar toggle fixes
Anselm R Garbe anselm@garbe.us
Mon, 22 Jun 2009 20:29:59 +0100
d53ceee6
hotfixes
Anselm R Garbe anselm@garbe.us
Mon, 22 Jun 2009 18:13:05 +0100
78f56672
changes monitor structure to be a list
Anselm R Garbe garbeam@gmail.com
Mon, 22 Jun 2009 14:58:08 +0100
c2fff604
we need a tagset per monitor, removed tagset declaration from config.h
Anselm R Garbe anselm@garbe.us
Sat, 20 Jun 2009 17:02:55 +0100
6644a6aa
some minor fixes regarding the new xinerama support
Anselm R Garbe anselm@garbe.us
Sat, 20 Jun 2009 16:18:02 +0100
3da24539
several fixes through ISVISIBLE change (takes Monitor into account)
Anselm R Garbe anselm@garbe.us
Sat, 20 Jun 2009 15:51:34 +0100
2ce37bc6
experimental xinerama support, two new actions, Mod1-w/e and Mod1-Shift-w/e
Anselm R Garbe anselm@garbe.us
Sat, 20 Jun 2009 15:10:04 +0100
f27ccc5c
introduction of Monitor for better Xinerama support, work in progress
Anselm R Garbe anselm@garbe.us
Fri, 19 Jun 2009 20:15:15 +0100
2dbfda72
removed MAXTAGLEN
Anselm R Garbe garbeam@gmail.com
Fri, 29 May 2009 09:29:22 +0100
7df39f3f
next version will be 5.6, shortened some very long lines
Anselm R Garbe garbeam@gmail.com
Mon, 20 Apr 2009 11:03:33 +0100
0b45199c
Added tag 5.5 for changeset deaa276abac1
Anselm R Garbe garbeam@gmail.com
Sat, 18 Apr 2009 12:49:34 +0100
3632d713
applied Marc Andre Tanners showhide patch, the removal of ntiled
Anselm R Garbe garbeam@gmail.com
Thu, 19 Mar 2009 13:06:15 +0000
56569708
applied Gottox' patches, and also removed usegrab
Anselm R Garbe garbeam@gmail.com
Tue, 17 Mar 2009 19:53:00 +0000
ea0008cb
applied the patch I missed from Gottox, thanks mate!
arg@garbe.us unknown
Tue, 03 Mar 2009 11:22:16 +0000
af508c2e
applied Gottox' resizehints patch, thanks Gottox!
Anselm R Garbe garbeam@gmail.com
Mon, 02 Mar 2009 10:43:48 +0000
f0d1d520
some NULL fixes
Anselm R Garbe garbeam@gmail.com
Sat, 21 Feb 2009 19:20:11 +0000
1c80c055
override_redirect is Bool
Anselm R Garbe garbeam@gmail.com
Sat, 21 Feb 2009 19:15:30 +0000
1e350be2
applied Gottox' adjustborder removal patch (thanks!)
Anselm R Garbe garbeam@gmail.com
Sat, 21 Feb 2009 19:12:46 +0000
1a26389e
applied nsz' remark
a@null unknown
Sat, 14 Feb 2009 11:21:24 +0000
bf9da23f
fix of typo, thx to Enno Gottox Boland
Premysl Hruby dfenze@gmail.com
Thu, 12 Feb 2009 17:26:12 +0100
23739402
Added tag 5.4.1 for changeset 85a78d8afa0f
a@null unknown
Sun, 08 Feb 2009 12:11:35 +0000
90687482
fixed an issue reported by Nibble, also fixed s/2008/2009/
a@null unknown
Sun, 08 Feb 2009 12:11:22 +0000
5ab627c0
Added tag 5.4 for changeset 8b7836a471f8
a@null unknown
Sun, 08 Feb 2009 09:47:02 +0000
76d7e80f
avoid reverting the border if it's not necessary (avoids some flashing on view())
a@null unknown
Sun, 08 Feb 2009 09:46:23 +0000
af8049bc
spotted missing spaces
a@null unknown
Sat, 20 Dec 2008 12:02:14 +0000
2bb51b32
reverting some border patches
a@null unknown
Sat, 20 Dec 2008 00:02:56 +0000
b16d8282
changed adjustborder to be a macro
a@null unknown
Fri, 19 Dec 2008 23:56:00 +0000
fef46147
applied yiyus applyrules() patch
a@null unknown
Fri, 19 Dec 2008 23:41:31 +0000
be39dddc
implemented noborder for 1 client in the view
a@null unknown
Wed, 17 Dec 2008 21:25:32 +0000
6d209b9b
made status script example of .xinitrc more useful
a@null unknown
Sat, 13 Dec 2008 20:20:26 +0000
57a0788b
ok, using signal.h for portability reasons
a@null unknown
Sat, 13 Dec 2008 17:44:29 +0000
3ad906ee
removed unnecessary closure of stdin reported by Frederic Chardon, thx
a@null unknown
Sat, 13 Dec 2008 17:27:48 +0000
0be9fb87
added sys/signal.h inclusion for BSD compliance
a@null unknown
Sat, 13 Dec 2008 16:35:34 +0000
62a491e3
re-applied Neale's spawn patch, credited Neale in LICENSE
a@null unknown
Fri, 12 Dec 2008 19:55:03 +0000
0b5dcf22
applied Neale Pickett's xprop status reading patch, updated README and dwm.1 accordingly
a@null unknown
Fri, 12 Dec 2008 19:49:06 +0000
fda92f46
applied yiyus fix
arg@localhost.localdomain unknown
Sat, 06 Dec 2008 16:20:14 +0000
a62ea406
fix
Anselm R Garbe garbeam@gmail.com
Sat, 06 Dec 2008 11:22:30 +0000
7dc28d13
Added tag 5.3.1 for changeset 335301ed102f
Anselm R Garbe garbeam@gmail.com
Sat, 06 Dec 2008 09:33:58 +0000
fbce7335
integrated yiyus clearurgent refactoring
Anselm R Garbe garbeam@gmail.com
Sat, 06 Dec 2008 09:32:32 +0000
e7572804
reverted spawn
arg@localhost.localdomain unknown
Sat, 06 Dec 2008 09:16:48 +0000
ed1bef12
Added tag 5.3 for changeset 4004d6116035
Anselm R Garbe garbeam@gmail.com
Thu, 04 Dec 2008 20:23:08 +0000
2b047e46
added Neale Pickett's spawn patch, thanks Neale
Anselm R Garbe garbeam@gmail.com
Thu, 04 Dec 2008 20:15:00 +0000
5f74dc5e
applied Gottox' comment fix (thanks)
Anselm R Garbe garbeam@gmail.com
Sun, 16 Nov 2008 13:22:24 +0000
ea8a4ca4
several changes towards 5.3, XINERAMA is disabled by default, introduced usegrab Bool for grabbing the server during mouse-based resizals/movements (disabled by default), continued debugging tile() with resizehints == True and a lot of terminals supporting resizehints, still no optimal solution, I need to think about it, considering recursive algorithm for the space optimization
Anselm R Garbe garbeam@gmail.com
Sun, 19 Oct 2008 12:59:18 +0100
4883a062
removed NOBORDER(broken and badly used), introduce WIDTH/HEIGHT macros for computing client size with border added, fixes bug announced by sergey_m
Premysl Hruby dfenze@gmail.com
Wed, 15 Oct 2008 18:08:24 +0200
4dea5324
Added tag 5.2 for changeset e4bcaca8e6ef
Anselm R Garbe garbeam@gmail.com
Tue, 09 Sep 2008 20:47:01 +0100
53cac176
using malloc() instead of calloc() and sticking to static initializer and struct assignment, not using *c = (Client){}; right now to avoid some ugly gcc warning, possibly a gcc bug since we are using -std=c99
Anselm R Garbe garbeam@gmail.com
Mon, 08 Sep 2008 22:24:05 +0100
83abfc05
applied XGetWMNormalHints fix
Anselm R Garbe garbeam@gmail.com
Sun, 07 Sep 2008 09:53:59 +0100
862b0d54
I prefer doing the check in showhide
Anselm R Garbe garbeam@gmail.com
Sat, 06 Sep 2008 09:34:49 +0100
c1c6fdc5
applied Donald Chai's showhide patch in slightly modified ways
Anselm R Garbe garbeam@gmail.com
Sat, 06 Sep 2008 09:21:32 +0100
9a4d07d9
applied Martin Hurton's checkotherwm simplification
Anselm R Garbe garbeam@gmail.com
Sat, 06 Sep 2008 08:59:51 +0100
30410108
applied Peter Hartlichs aspect revert fix
Anselm R Garbe garbeam@gmail.com
Tue, 02 Sep 2008 22:36:06 +0100
753e0e04
applied Gottox' grabkey patch
Anselm R Garbe garbeam@gmail.com
Tue, 02 Sep 2008 18:47:01 +0100
d15d4ba4
applied yiyus tagbar patch
Anselm R Garbe garbeam@gmail.com
Mon, 01 Sep 2008 22:18:50 +0100
815f9c05
merged merge
arg@localhost.localdomain unknown
Mon, 01 Sep 2008 08:22:11 +0000
ec11a347
introduced NOBORDER macro to hide the nasty - 2 * c->bw in various calculations, moved tagset to config.def.h
Anselm R Garbe garbeam@gmail.com
Wed, 27 Aug 2008 12:52:44 +0100
288cf78b
grabbuttons() and grabkeys() are now independent from prior numlockmask initialization
Anselm R Garbe garbeam@gmail.com
Mon, 25 Aug 2008 09:44:23 +0100
6411aa92
reverted some resize() changes, reverted setlocale removal
Anselm R Garbe garbeam@gmail.com
Mon, 25 Aug 2008 09:37:39 +0100
db5db880
applied Peter Hartlich's patch regarding aspect calculation with slight modifications
Anselm R Garbe garbeam@gmail.com
Sat, 23 Aug 2008 09:54:55 +0100
258c3380
removed artifact from wmii
Anselm R Garbe garbeam@gmail.com
Sat, 23 Aug 2008 09:33:05 +0100
85da5378
changed grabkeys, removed initmodmap
Anselm R Garbe garbeam@gmail.com
Sat, 23 Aug 2008 09:31:28 +0100
2b4157ec
applied Peter Hartlich's initmodmap patch
Anselm R Garbe garbeam@gmail.com
Sat, 23 Aug 2008 09:26:11 +0100
0f26de99
applied fix of toggletag by Jan Kaliszewski
Premysl Hruby dfenze@gmail.com
Fri, 22 Aug 2008 15:26:30 +0200
840f937a
Martin Hurtons typo fix
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 19:28:57 +0100
6975a7e3
fixed error I did when applying Martin Hurton's drawtext patch
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 19:23:03 +0100
47f63dce
applied Martin Hurtons resizemouse patch
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 19:19:15 +0100
02a8ca95
applied Martin Hurton's movemouse() patch
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 18:23:39 +0100
2ce50a9c
using None instead of 0 for trans
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:22:46 +0100
bfa5869d
abc...
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:21:24 +0100
087a55f8
removed the i = textnw... as remarked by Martin Hurton
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:16:36 +0100
6d7285fd
applied Martin Hurton's scan() patch with slight modifications
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:14:51 +0100
69c7b4b0
changed order of variables in drawtext
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:00:10 +0100
97699e5b
applied Martin Hurton's drawtext() patch
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:55:36 +0100
2dc7f42f
applied Martin Hurton's view() simplification, not checking arg
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:49:44 +0100
9f3a5cb7
making a comment more explicit
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:39:52 +0100
b48fa3f1
removed setlocale() stuff, not necessary if Xmb in use
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:31:55 +0100
051a404b
added a comment about FAQ regarding mfact meaning
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:11:15 +0100
d8d733c3
added some comments regarding FAQ about s{x,y,w,h}, w{x,y,w,h}, b{y,h,lw}
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 09:10:21 +0100
bb01e5a1
initialize trans with 0
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 08:57:34 +0100
06f7eed1
fix of XGetTransientForHint in manage()
Premysl Hruby dfenze@gmail.com
Thu, 14 Aug 2008 22:35:52 +0200
0ffa6d13
applied cleanup from M. Hurton and S. Nagy
Premysl Hruby dfenze@gmail.com
Thu, 14 Aug 2008 12:36:49 +0200
15ce1436
fixes using arg->i instead of arg->ui
Premysl Hruby dfenze@gmail.com
Tue, 12 Aug 2008 21:24:40 +0200
63d71902
applied Johannes Hofmann's patch, please test
anselm@anselm1 unknown
Mon, 04 Aug 2008 17:39:36 +0100
b279cef6
made readin a config.h variable
Anselm R Garbe garbeam@gmail.com
Sat, 02 Aug 2008 19:12:15 +0100
6254ef9d
Added tag 5.1 for changeset ce355cea9bb8
Anselm R Garbe garbeam@gmail.com
Tue, 29 Jul 2008 19:19:00 +0100
4a2902ef
forcing fullscreen windows to bw=0, though most fullscreen apps are broken anyways
Anselm R Garbe garbeam@gmail.com
Tue, 29 Jul 2008 11:32:22 +0100
6fad4c49
potential crash fix if xinerama behaves broken, though I doubt it
Anselm R Garbe garbeam@gmail.com
Fri, 18 Jul 2008 20:18:45 +0100
78f0f859
make hg tip compilable with default config
Premysl Hruby dfenze@gmail.com
Fri, 18 Jul 2008 10:57:32 +0200
7ecadcee
local use of xidx is useless, got rid of it, falling back to screen 0 if pointer query fails for whatever reason
Anselm R Garbe garbeam@gmail.com
Wed, 16 Jul 2008 18:39:48 +0100
c86ed46a
got rid of compile time xidx configuration, querying mouse pointer instead
Anselm R Garbe garbeam@gmail.com
Wed, 16 Jul 2008 18:33:51 +0100
9086f980
reverted uint redefinition
Anselm R Garbe garbeam@gmail.com
Wed, 16 Jul 2008 18:17:42 +0100
9aa4a904
applied anydot's urgency hint patch, thanks!
anselm@aab unknown
Sun, 13 Jul 2008 18:08:55 +0100
d5893f55
renamed eprint die
Anselm R Garbe garbeam@gmail.com
Thu, 03 Jul 2008 17:05:56 +0100
f529d41c
simplified detach()
Anselm R Garbe garbeam@gmail.com
Thu, 03 Jul 2008 10:58:35 +0100
45768ee0
removed aux* stuff from Client
Anselm R Garbe garbeam@gmail.com
Wed, 02 Jul 2008 11:54:36 +0100
a6d23fb6
removed useless comment
Anselm R Garbe garbeam@gmail.com
Wed, 02 Jul 2008 11:19:02 +0100
bf76cefe
minor fix to view()
Anselm R Garbe garbeam@gmail.com
Wed, 02 Jul 2008 11:06:46 +0100
9bb0f205
applied Frederik Ternerot's grabbuttons patch with slight modifications
Anselm R Garbe garbeam@gmail.com
Tue, 01 Jul 2008 19:26:17 +0100
2431ae7d
locale update
Anselm R Garbe garbeam@gmail.com
Mon, 30 Jun 2008 09:57:45 +0100
829b6b57
removed useless characters
Anselm R Garbe garbeam@gmail.com
Tue, 24 Jun 2008 12:40:48 +0100
7b4c512e
applied James Turner's dwm.1 patch, thanks James!
Anselm R Garbe garbeam@gmail.com
Mon, 23 Jun 2008 08:59:19 +0100
7f7c3140
fix of monocle
Anselm R Garbe garbeam@gmail.com
Sun, 22 Jun 2008 09:33:49 +0100
277155cf
another merge
Anselm R Garbe garbeam@gmail.com
Sun, 22 Jun 2008 09:29:35 +0100
0c38ec7c
does this fix anything?
Anselm R Garbe garbeam@gmail.com
Sun, 22 Jun 2008 09:29:06 +0100
b86c8185
applied Gottox' ClkTagBar patch
Anselm R Garbe garbeam@gmail.com
Fri, 20 Jun 2008 16:52:07 +0100
c2a916bf
made arrange again like it was once
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 14:58:19 +0100
2bd46d1c
fix
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 14:13:07 +0100
6e0ce463
use sel instead of seeking the list
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 14:07:55 +0100
c853d5e9
resize should apply if !banned
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 14:01:40 +0100
31da0b75
applied Gottox patch
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 12:28:56 +0100
12ea9250
untested monocle
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 11:38:53 +0100
79ecbeca
non-zero
Anselm R Garbe garbeam@gmail.com
Thu, 19 Jun 2008 09:11:11 +0100
cf98ea2a
Added tag 5.0 for changeset 06eb9644e2da
Anselm R Garbe garbeam@gmail.com
Wed, 18 Jun 2008 18:22:54 +0100
d8fad9bf
branch merge
Anselm R Garbe garbeam@gmail.com
Tue, 17 Jun 2008 11:20:18 +0100
f25cc567
tiled layout resizehints should be respected by default
Anselm R Garbe garbeam@gmail.com
Tue, 17 Jun 2008 11:19:17 +0100
5a92420f
restored y-coordinate fixing of client windows
Anselm R Garbe garbeam@gmail.com
Tue, 17 Jun 2008 09:57:13 +0100
1ce17340
updated man page regarding Mod1-m
Anselm R Garbe garbeam@gmail.com
Sun, 15 Jun 2008 18:59:52 +0100
a06b9193
minor fixes towards 5.0
Anselm R Garbe garbeam@gmail.com
Sun, 15 Jun 2008 10:52:57 +0100
43bb77a5
removed explicit warp in movemouse
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 15:15:15 +0100
e3da222c
removed scroll-wheel based focussing on window title clicks
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 11:25:42 +0100
66608a60
fix of swapped focusstack mouse buttons
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 11:23:16 +0100
b6aa84e5
removed the ButtonPressMask for root windows as well
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 11:22:22 +0100
9ff5143a
removed root window click handling
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 11:21:50 +0100
1edf6a78
removed font and color definitions
Anselm R Garbe garbeam@gmail.com
Sat, 14 Jun 2008 10:38:18 +0100
4db2f442
minor fix
Anselm R Garbe garbeam@gmail.com
Fri, 13 Jun 2008 17:37:43 +0100
1f1a1327
fixed tag click handling, however ClkRootWin doesn't work for me
Anselm R Garbe garbeam@gmail.com
Thu, 12 Jun 2008 23:04:55 +0100
512541bf
update
Anselm R Garbe garbeam@gmail.com
Thu, 12 Jun 2008 16:37:03 +0100
709da0b8
some bugfixes of the patch application yesterday
Anselm R Garbe garbeam@gmail.com
Thu, 12 Jun 2008 13:10:14 +0100
5cd65f8c
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 20:41:28 +0100
e3838e85
made Xinerama screen index customizable
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 19:55:07 +0100
016dca4f
removed trailing spaces reported by Soleen
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 19:47:20 +0100
8f052596
crash fix
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 19:42:24 +0100
9463d535
made lt visible again in config.def.h
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 17:01:30 +0100
d662f98d
added nsz' patch
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 14:10:18 +0100
e5a965a2
added SHCMD support for pipe-based commands due the new spawn() versio
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 13:20:17 +0100
5d422bb1
using foo layout during cleanup (suggested by Gottox), add Arg->v handling for togglelayout() suggested by anydot
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 10:26:57 +0100
38a43c2d
lt will point to a foo-layout during cleanup now (Gottox' suggestion), and togglelayout respects Arg->v
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 10:25:02 +0100
c5653361
integrated Peter Hartlich's patch, removed const char *c from union, simplified togglelayout
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 09:34:00 +0100
a8e0772c
applied anydot's patchset.diff
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 09:12:06 +0100
98e7950b
final version -- Gottox verified it using the test driver
arg@suckless.org unknown
Mon, 09 Jun 2008 11:24:33 +0200
88e6eb4a
revert of introduced problem
arg@suckless.org unknown
Mon, 09 Jun 2008 11:05:20 +0200
0840c136
applied nsz' textnw patch thank you
arg@suckless.org unknown
Mon, 09 Jun 2008 10:26:01 +0200
077d3e43
updated the for-loop with Gottox' proposal
arg@suckless.org unknown
Mon, 09 Jun 2008 10:05:40 +0200
d26b60b4
minor change
arg@suckless.org unknown
Fri, 06 Jun 2008 11:49:31 +0200
32f36ab2
applied nsz's patches (many thanks!)
arg@suckless.org unknown
Wed, 04 Jun 2008 11:49:46 +0200
08bcf721
small change to drawtext
arg@suckless.org unknown
Mon, 02 Jun 2008 12:19:02 +0200
fc578c57
fixed the tile() issue with xpdf
Anselm R Garbe garbeam@gmail.com
Sun, 01 Jun 2008 17:51:22 +0100
c8eaab21
using anydot's memcpy-approach in drawtext, however it still looks awkward to me
Anselm R Garbe garbeam@gmail.com
Sun, 01 Jun 2008 17:41:15 +0100
c26e22cc
Gottox' drawtext simplification
Anselm R Garbe garbeam@gmail.com
Sun, 01 Jun 2008 11:58:19 +0100
c2784e4a
applied noviewprev.diff, fix.diff and unusedflags.diff
Anselm R Garbe garbeam@gmail.com
Sun, 01 Jun 2008 10:54:02 +0100
6e938779
fix
Anselm R Garbe garbeam@gmail.com
Sat, 31 May 2008 17:37:13 +0100
92f3c181
lt->arrange in mfact
Anselm R Garbe garbeam@gmail.com
Sat, 31 May 2008 17:05:28 +0100
d589f767
isfixed implies isfloating
Anselm R Garbe garbeam@gmail.com
Fri, 30 May 2008 23:03:03 +0100
75690c80
applied nibbles fixes, slightly modified
Anselm R Garbe garbeam@gmail.com
Thu, 29 May 2008 18:42:53 +0100
fde58d5e
applied yiyus tip patch from tue
Anselm R Garbe garbeam@gmail.com
Thu, 29 May 2008 18:22:51 +0100
e1002745
core dump fix in cleanup
Anselm R Garbe garbeam@gmail.com
Wed, 28 May 2008 10:45:18 +0100
940a4cc6
updated the initial comment to reflect the use of bit arrays
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 11:43:51 +0100
64243ab0
slight changes
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 11:42:02 +0100
32c50466
removed bx and bw, unnecessary
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 10:28:18 +0100
6c8618f5
renamed domax into ismax
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 10:13:51 +0100
9189f7a1
simplified tile()
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 10:10:33 +0100
2d4faae5
removed Layout->updategeom, unnecessary
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 09:54:34 +0100
5d2385b6
removed TEXTW
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 09:45:34 +0100
0fe2e783
applied yiyus domax patch with slight modifications
Anselm R Garbe garbeam@gmail.com
Mon, 26 May 2008 09:39:57 +0100
cd3d83f5
replaced isvisible with a macro
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 14:15:30 +0100
0a9ef560
removed emallocz
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 14:10:00 +0100
0528a37c
s/int/uint/ in config.h
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 14:02:31 +0100
56b2fece
removed debug output, sanitized tag limit check
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 13:35:45 +0100
9f569fac
setmfact argument was wrong
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 12:00:50 +0100
48d0c56e
Key.mod is uint, Client.[old]bw is int
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:50:18 +0100
825d6cb9
s/unsigned long/ulong/
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:16:23 +0100
f8525040
s/nextunfloating/nexttiled/, changed zoom() behavior
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:12:22 +0100
c3fa9e87
s/unsigned int/uint/
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:10:08 +0100
8e05f6c5
s/void */const void */
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:08:07 +0100
39d1ecd5
applied Gottox bitmask + void *arg patch
Anselm R Garbe garbeam@gmail.com
Thu, 22 May 2008 11:04:19 +0100
103fb58a
some minor fixes
anselm@anselm1 unknown
Mon, 19 May 2008 20:29:57 +0100
5f55af40
simplification
anselm@anselm1 unknown
Mon, 19 May 2008 20:13:24 +0100
f806a176
reverted dist target in Makefile
anselm@anselm1 unknown
Mon, 19 May 2008 20:08:31 +0100
822101dd
merged tile.c again into dwm.c
anselm@anselm1 unknown
Mon, 19 May 2008 20:07:12 +0100
6bdef73a
take bar into account
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 17:27:30 +0100
234b12eb
be more polite to clients which like to appear outside the window area, but still on the screen
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 17:23:49 +0100
bd4deaeb
fixed comment
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 15:36:45 +0100
499315c2
fix
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 15:09:16 +0100
f22d047d
make it easier for the user, if Xinerama support is given, always use the screen 0 as window area/bar area, everything else can be used for floating clients
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 15:05:46 +0100
4a5c8d84
improving space usage if master is left of stack (default)
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 14:44:53 +0100
71365a52
only snap within window area
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 13:41:58 +0100
3afca3e6
s/DEFGEOM/CUSTOMGEOM/
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 13:37:46 +0100
bdc80bda
update
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 13:32:43 +0100
64707da9
updatetilegeom should be fine for setmfact
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 12:42:26 +0100
54972686
recent changes, introduced togglebar, changed some defines into variable declarations where possible
Anselm R Garbe garbeam@gmail.com
Mon, 19 May 2008 12:34:54 +0100
42cb2bd3
new stuff
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:51:12 +0100
585294ce
removed the <M> togglelayout call
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:50:37 +0100
a864a82b
s/tilegeom/updatetilegeom/
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:48:04 +0100
bd67a82f
removed monocle for now
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:46:06 +0100
14d8d828
removed the exact focus mechanism of next/prev window
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:41:41 +0100
4246affc
moved all tile()-related stuff into tile.c which is included from config.def.h, the default dwm is now nearly independent from the arrange() algorithm in use
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:38:22 +0100
42c4b310
removed tileh, renamed tilev into tile again, removed counttiles, tilemaster
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:23:05 +0100
a785a0d7
removed Layout->isfloating
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:17:18 +0100
489ac07e
removed reapply() -- unnecessary
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:06:41 +0100
349d768b
renamed setlayout into togglelayout
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:04:27 +0100
6dfa7cac
removed temporary wildcard handling
Anselm R Garbe garbeam@gmail.com
Thu, 15 May 2008 10:51:37 +0100
71681c21
added wild-card handling for tags
Anselm R Garbe garbeam@gmail.com
Thu, 15 May 2008 10:47:26 +0100
70478187
applied nsz's another style patch
Anselm R Garbe garbeam@gmail.com
Wed, 14 May 2008 11:24:35 +0100
d7cc0f64
applied nsz's style.diff patch
Anselm R Garbe garbeam@gmail.com
Tue, 13 May 2008 14:33:02 +0100
6b79f3f3
just added a comment
Anselm R Garbe garbeam@gmail.com
Tue, 13 May 2008 11:27:20 +0100
446fa8c6
minor fixes
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 20:27:01 +0100
fa244aa7
having monocle on Mod1-m
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 20:25:24 +0100
7ac4f8a4
hotfix
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 20:22:20 +0100
7eb26288
removed Geom stuff, introduced updategeom() again, still view is somewhat broken?
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 20:20:53 +0100
93a4fe10
cleaned up config.def.h
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 14:54:45 +0100
5602f44b
implemented exact focus next, if arg != NULL to focus{next,prev}
Anselm R Garbe garbeam@gmail.com
Sun, 11 May 2008 14:40:37 +0100
b848f4bd
applied the proposal by nsz
Anselm R Garbe garbeam@gmail.com
Tue, 06 May 2008 15:52:44 +0100
86c4797f
applied JUCE patch
Anselm R Garbe garbeam@gmail.com
Tue, 06 May 2008 15:13:36 +0100
c094ed24
simplification of view() as proposed by anydot
Anselm R Garbe garbeam@gmail.com
Sun, 27 Apr 2008 18:36:11 +0100
bfd6079a
applied yiyus tagset patch
Anselm R Garbe garbeam@gmail.com
Sun, 27 Apr 2008 18:33:31 +0100
7f70d902
applied yiyus fgeom patch
Anselm R Garbe garbeam@gmail.com
Sun, 27 Apr 2008 18:22:52 +0100
858251de
applied dfenze drawtext simplifications
Anselm R Garbe garbeam@gmail.com
Sun, 27 Apr 2008 18:00:45 +0100
d26c28c1
this is the correct way
anselm@anselm1 unknown
Sun, 20 Apr 2008 19:09:30 +0100
b6335776
copyright notice is in LICENSE
anselm@anselm1 unknown
Sun, 20 Apr 2008 19:09:00 +0100
c0596251
applied Ph's seltags-simplification with some modifications
anselm@anselm1 unknown
Sun, 20 Apr 2008 18:35:11 +0100
874837f6
applied Ph's MIN/MAX patch, nice work!
anselm@anselm1 unknown
Sun, 20 Apr 2008 18:28:21 +0100
5fa559db
applied Ph's patch regarding geom and lt initialization
anselm@anselm1 unknown
Sun, 20 Apr 2008 18:23:59 +0100
146ff227
applied Gottox' applyrules() fix
anselm@anselm1 unknown
Sun, 20 Apr 2008 18:17:33 +0100
bb0a3289
geometry fix proposed by Jukka
Anselm R Garbe garbeam@gmail.com
Tue, 08 Apr 2008 11:49:35 +0100
721b2084
applied applyrules-fix by Jukka, thank you Jukka!
Anselm R Garbe garbeam@gmail.com
Mon, 07 Apr 2008 09:05:41 +0100
6229ed20
fix
Anselm R Garbe garbeam@gmail.com
Sat, 05 Apr 2008 19:04:53 +0100
940240e5
applied the proposed monocle patch from the mailinglist
Anselm R Garbe garbeam@gmail.com
Sat, 05 Apr 2008 18:23:31 +0100
08c596ed
next version is 5.0
Anselm R Garbe garbeam@gmail.com
Fri, 04 Apr 2008 11:15:37 +0100
9ce6abb9
Added tag 4.9 for changeset 22c669b2dd36
anselm@anselm1 unknown
Thu, 03 Apr 2008 21:57:32 +0100
0e21794e
yet another cleanup
Anselm R Garbe garbeam@gmail.com
Thu, 03 Apr 2008 14:39:19 +0100
d477fb69
some cleanup changes
Anselm R Garbe garbeam@gmail.com
Thu, 03 Apr 2008 14:38:58 +0100
3d6630b7
uncommented dual layout in preparation of dwm 4.9
anselm@anselm1 unknown
Wed, 02 Apr 2008 22:18:09 +0100
c982bb13
applied Peter Hartlich's simplification patch of setmfact and his revival of MFACT, appliead Janness Hofmann's simplification of grabbuttons() -- thanks guys!
anselm@anselm1 unknown
Wed, 02 Apr 2008 22:10:55 +0100
6cf73e70
aspects hints seem broken for fullscreen apps
Anselm R Garbe garbeam@gmail.com
Tue, 01 Apr 2008 15:46:00 +0100
a520ba3c
removed uneccessary line
Anselm R Garbe garbeam@gmail.com
Mon, 31 Mar 2008 10:09:48 +0100
0c71b16b
bugfix
Anselm R Garbe garbeam@gmail.com
Tue, 25 Mar 2008 09:41:14 +0000
00c28a7e
setmfact should not have any effect if in floating layout
Anselm R Garbe garbeam@gmail.com
Mon, 24 Mar 2008 14:31:02 +0000
5a3a2d6b
minor fix
Anselm R Garbe garbeam@gmail.com
Mon, 24 Mar 2008 14:24:57 +0000
a355782a
revival of mfact and setmfact
Anselm R Garbe garbeam@gmail.com
Mon, 24 Mar 2008 14:23:28 +0000
20cd3360
setlayout and setgeom are now togglable again
Anselm R Garbe garbeam@gmail.com
Mon, 24 Mar 2008 13:49:19 +0000
a6a216f2
geom indicator and layout indicator is only displayed if there are several geoms/layouts
Anselm R Garbe garbeam@gmail.com
Mon, 24 Mar 2008 13:33:32 +0000
2c2063bc
hotfix of idxoftag
anselm@anselm1 unknown
Sat, 22 Mar 2008 16:53:37 +0000
e6ede461
blw/bgw calculation bugfix
anselm@anselm1 unknown
Sat, 22 Mar 2008 12:47:12 +0000
6877205e
updated configurenotify
Anselm R Garbe garbeam@gmail.com
Wed, 19 Mar 2008 09:27:17 +0000
fb5f99d9
minor bugfix in applyrules
anselm@anselm1 unknown
Mon, 17 Mar 2008 23:45:46 +0000
7ebab753
added sample of {grow,shrink}master to config.def.h
Anselm R Garbe garbeam@gmail.com
Mon, 17 Mar 2008 17:33:25 +0000
9fa5ca35
renamed c->border into c->bw, fixed monocle to subtract c->bw from each h/w value
Anselm R Garbe garbeam@gmail.com
Mon, 17 Mar 2008 16:29:50 +0000
fe6b0c0f
geoms are now drawed in the status bar
Anselm R Garbe garbeam@gmail.com
Mon, 17 Mar 2008 16:26:06 +0000
aa2395b6
removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe garbeam@gmail.com
Mon, 17 Mar 2008 14:56:11 +0000
dba22848
made the string-based setgeom working
Anselm R Garbe garbeam@gmail.com
Sat, 15 Mar 2008 14:17:42 +0000
33b19602
some experimental state DO NOT USE THIS, I plan to have a nicer interface to change geometries
Anselm R Garbe garbeam@gmail.com
Fri, 14 Mar 2008 17:17:08 +0000
e237b2a7
some changes towards 4.9
Anselm R Garbe garbeam@gmail.com
Fri, 14 Mar 2008 14:35:45 +0000
dd9ee6d2
Added tag 4.8 for changeset 607015ddb091
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 16:56:11 +0000
13805691
removed the comment again
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 16:30:29 +0000
831428b0
some polishing in tileh/tilev
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 13:59:40 +0000
69439715
minor bugfix
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 13:01:42 +0000
f2e98f48
added a new comment
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 12:47:41 +0000
c19d4b29
some cleanup
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 12:45:30 +0000
f77a3d0a
updated my geoms function
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:25:50 +0000
8aa15338
update
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:24:02 +0000
2fc9cffd
set layout already here
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:22:10 +0000
3c5b6f03
well I use a different default tile
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:21:03 +0000
02673538
added updatebarpos()
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:19:05 +0000
95eae7b9
removed all defines of geoms, implemented setgeoms() instead, added config.anselm.h to show how I'd like to see that people edit their geoms
Anselm R Garbe garbeam@gmail.com
Thu, 13 Mar 2008 10:11:02 +0000
59107755
some polishing
Anselm R Garbe garbeam@gmail.com
Wed, 12 Mar 2008 16:04:06 +0000
d05d09b2
updated dwm(1)
Anselm R Garbe garbeam@gmail.com
Wed, 12 Mar 2008 15:34:36 +0000
47b19744
added bx, by, bw, wx, wy, ww, wh, mx, my, mw, mh, mox, moy, mow, moh, tx, ty, tw, th, wx, wy, ww, wh ad variables
anselm@anselm1 unknown
Tue, 11 Mar 2008 21:52:10 +0000
247ba66c
changed config.def.h
Anselm R Garbe garbeam@gmail.com
Thu, 06 Mar 2008 19:22:00 +0000
d7b074fc
new stuff
Anselm R Garbe garbeam@gmail.com
Thu, 06 Mar 2008 19:20:14 +0000
c9170189
implemented setlayout in the way proposed on the ml, split tile() into two functions, a third will follow soon
Anselm R Garbe garbeam@gmail.com
Thu, 06 Mar 2008 18:53:15 +0000
f7a45ff2
allow for vstack
Anselm R Garbe garbeam@gmail.com
Thu, 06 Mar 2008 11:56:43 +0000
add7df6e
added some comments what the TODOs are for 4.8
Anselm R Garbe garbeam@gmail.com
Thu, 06 Mar 2008 11:56:00 +0000
3a79b827
changed config.def.h
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 21:14:57 +0000
b31b4305
integrated the new -x -y -w toggles of dmenu into my setup
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 19:03:45 +0000
88c8ead3
removed some more useless clunk
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 18:48:33 +0000
2e958372
implemented the stuff as I discussed on dwm@
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 18:31:08 +0000
5d9ae3f3
fixed urgent hint handling
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 13:13:13 +0000
2e38296e
renamed maximise to monocle again.
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 10:31:37 +0000
59aa02a0
fixed urgency hint, though Xinerama integration is still ongoing
Anselm R Garbe garbeam@gmail.com
Wed, 05 Mar 2008 10:22:21 +0000
e3c2d327
next on TODO
anselm@anselm1 unknown
Wed, 05 Mar 2008 00:11:44 +0000
295ad210
renamed MAXLEN into MAXTAGLEN (backward compliance)
anselm@anselm1 unknown
Tue, 04 Mar 2008 21:41:36 +0000
39af3c26
renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1 unknown
Tue, 04 Mar 2008 21:40:49 +0000
96ee9d88
monocle goes mainstream
Anselm R Garbe garbeam@gmail.com
Tue, 04 Mar 2008 18:58:23 +0000
a82cba27
fixed applyrules bug
Anselm R Garbe garbeam@gmail.com
Tue, 04 Mar 2008 18:13:07 +0000
f7c097e8
removed View cruft, now back to the roots
anselm@anselm1 unknown
Mon, 03 Mar 2008 21:40:37 +0000
da1b3fa4
made tag names snappier
Anselm R Garbe garbeam@gmail.com
Fri, 29 Feb 2008 11:59:28 +0000
ad0a2fa0
fixed some issues nsz reported in IRC log
anselm@anselm1 unknown
Thu, 28 Feb 2008 21:44:52 +0000
9804726c
well, AIM_XINERAMA should not be enabled
anselm@anselm1 unknown
Thu, 28 Feb 2008 21:39:45 +0000
7bc272a4
made the basics of the tagging concept working -- if people want dynamic tags, that's even possible with this concept, the vtags[] array needs to be modified during runtime for this -- the new code is quite experimental, ugly and needs polishing
anselm@anselm1 unknown
Thu, 28 Feb 2008 21:38:53 +0000
f1719ac2
removed initags -- we autoselect the first tag in each view instead
anselm@anselm1 unknown
Thu, 28 Feb 2008 20:02:57 +0000
d99ec614
a small fix to buttonpress
Anselm R Garbe garbeam@gmail.com
Thu, 28 Feb 2008 17:13:13 +0000
2f70a14e
some more changes towards a better dwm
Anselm R Garbe garbeam@gmail.com
Thu, 28 Feb 2008 17:07:30 +0000
00ca643b
	proceeded, though we still miss a real Tag struct
anselm@anselm1 unknown
Wed, 27 Feb 2008 21:50:50 +0000
0271ac0e
disabled AIM_XINERAMA
anselm@anselm1 unknown
Tue, 26 Feb 2008 22:57:23 +0000
d5178292
simplified dwm
anselm@anselm1 unknown
Tue, 26 Feb 2008 22:51:23 +0000
2bfd3fff
certain fixes, though still a lot of the mutex stuff missing
anselm@anselm1 unknown
Mon, 25 Feb 2008 22:19:17 +0000
a3d8c05a
pushing my changes of tonight upstream (hg tip is NOW very UNSTABLE -- but those changes are necessary to get a decent multihead support) -- I renamed Monitor into View, to reflect in a better way the dwm terminology of the past
anselm@anselm1 unknown
Sat, 23 Feb 2008 23:11:27 +0000
fd01413f
fixed Gottox' mail address
anselm@anselm1 unknown
Fri, 22 Feb 2008 19:32:53 +0000
d6e24f71
well typo fix
Anselm R Garbe garbeam@gmail.com
Fri, 22 Feb 2008 15:27:50 +0000
c43d7b75
added Gottox to Copyright holders after all his contributions, applied his last patch
Anselm R Garbe garbeam@gmail.com
Fri, 22 Feb 2008 15:26:27 +0000
de5b294e
some other fixes, resize contains a minor bug
Anselm R Garbe garbeam@gmail.com
Fri, 22 Feb 2008 10:34:12 +0000
8e0f8ffc
crash fix
Anselm R Garbe garbeam@gmail.com
Fri, 22 Feb 2008 10:15:59 +0000
dd218235
made arrange() Monitor-dependent as well, fixed the movemouse/resizemouse issues
Anselm R Garbe garbeam@gmail.com
Fri, 22 Feb 2008 10:03:42 +0000
9cb9c32e
minor
Anselm R Garbe garbeam@gmail.com
Thu, 21 Feb 2008 19:19:46 +0000
4076e2ff
applied Gottox' monitor.diff patch (thanks btw)
Anselm R Garbe garbeam@gmail.com
Thu, 21 Feb 2008 14:33:59 +0000
55edd2d6
made restack, drawbar also Monitor-related only
Anselm R Garbe garbeam@gmail.com
Thu, 21 Feb 2008 10:31:06 +0000
2e8e5509
changed arrange functions to contain the Monitor as first argument
Anselm R Garbe garbeam@gmail.com
Thu, 21 Feb 2008 10:14:42 +0000
44260324
applied Jukka's zoom-patch
Anselm R Garbe garbeam@gmail.com
Wed, 20 Feb 2008 13:48:52 +0000
e0f03978
resize handles offscreen issues
Anselm R Garbe garbeam@gmail.com
Wed, 20 Feb 2008 08:13:41 +0000
ca3e847e
applied some necessary changes
Anselm R Garbe garbeam@gmail.com
Wed, 20 Feb 2008 08:09:26 +0000
c2737b7b
removed Monitor->dc, unnecessary
Anselm R Garbe garbeam@gmail.com
Mon, 18 Feb 2008 17:08:22 +0000
191cb9ce
removed Monitor->root, since we do not support classical multihead
Anselm R Garbe garbeam@gmail.com
Mon, 18 Feb 2008 16:47:16 +0000
6ab163c6
some drawbar() polishing, and certain related fixes
Anselm R Garbe garbeam@gmail.com
Fri, 15 Feb 2008 16:00:02 +0000
e8244395
urgency hook handling needs also to invert the square if present
Anselm R Garbe garbeam@gmail.com
Wed, 13 Feb 2008 20:34:17 +0000
954db46b
Chris pointed me to the fact, that the window geoms calculation can be done once for each monitor, so I applied this remark
Anselm R Garbe garbeam@gmail.com
Mon, 11 Feb 2008 20:57:56 +0000
508922b9
fixed missing else branch
Anselm R Garbe garbeam@gmail.com
Mon, 11 Feb 2008 20:51:04 +0000
4adfdc9d
applied dme's patch to prevent changing prevtags if nothing actually changed
Anselm R Garbe garbeam@gmail.com
Mon, 11 Feb 2008 20:48:22 +0000
c619363d
applied dwm-4.8-snaptileds.diff
Anselm R Garbe garbeam@gmail.com
Mon, 11 Feb 2008 20:43:41 +0000
012710a3
implemented urgent hint handling (with multihead support)
anselm@aab unknown
Mon, 11 Feb 2008 20:34:17 +0000
c2c54cc0
got initial Xinerama support working, though there is a lot work todo
anselm@aab unknown
Mon, 11 Feb 2008 15:55:42 +0000
a62630ae
some more polishing/consistency changes
anselm@anselm1 unknown
Sat, 22 Dec 2007 14:40:44 +0000
62b18fb9
proceeded with multihead/Xinerama support
anselm@anselm1 unknown
Sat, 22 Dec 2007 14:30:47 +0000
e0d64510
removed maximize, there will be monocle soon
anselm@anselm1 unknown
Sat, 22 Dec 2007 12:52:14 +0000
7a496e97
fixed wrong tagging stuff
anselm@anselm1 unknown
Sat, 22 Dec 2007 12:49:04 +0000
308f95ae
added dmenu_run to config.h
anselm@anselm1 unknown
Sat, 22 Dec 2007 12:26:24 +0000
40a734bc
root window and screen have to be in Monitor struct, we want side-by-side Xinerama and Multihead support (only Xinerama when enabled and present)
anselm@anselm1 unknown
Fri, 21 Dec 2007 20:45:46 +0000
985e3305
merged Christof Musik's Xinerama support patches, though this needs some polishing!
anselm@anselm1 unknown
Fri, 21 Dec 2007 12:54:45 +0000
5f19423c
simplified Mod-m
Anselm R. Garbe garbeam@gmail.com
Sun, 09 Dec 2007 13:39:29 +0100
d66ad145
implemented reapply for re-applying the tagging rules during runtime, Mod-r
Anselm R. Garbe garbeam@gmail.com
Sat, 08 Dec 2007 20:11:56 +0100
8497f9f7
next version will be 4.8
Anselm R. Garbe garbeam@gmail.com
Sat, 08 Dec 2007 19:59:51 +0100
91bb749e
Added tag 4.7 for changeset d6d3085307d8
Anselm R. Garbe garbeam@gmail.com
Wed, 21 Nov 2007 21:19:03 +0100
68ff1338
fixed focus steeling bug done by clients like opera
Anselm R. Garbe garbeam@gmail.com
Sat, 17 Nov 2007 19:59:13 +0100
4380db46
removed support for the NetSupportingWmCheck stuff, netbeans, argouml and others also don't work with compiz, so it is Suns problem to provide a fix
Anselm R. Garbe garbeam@gmail.com
Sat, 17 Nov 2007 18:59:51 +0100
123a565b
yeah compiz didn't did the trick, but identifying dwm as LookingGlass (LG3D)
Anselm R. Garbe garbeam@gmail.com
Thu, 15 Nov 2007 20:38:25 +0100
d0e05053
foo
Anselm R. Garbe garbeam@gmail.com
Thu, 15 Nov 2007 19:26:44 +0100
762b66ae
hack that adds NET_SUPPORTING_WM_CHECK handling, dwm identifies itself as compiz, hence I believe this might workaround the JDK 1.6+ XToolkit bug
Anselm R. Garbe garbeam@gmail.com
Thu, 15 Nov 2007 18:57:31 +0100
cb4951dd
applied Ritesh's patch to stext handling with some minor modifications
Anselm R. Garbe garbeam@gmail.com
Sat, 10 Nov 2007 20:21:22 +0100
667da18b
initialize prevtags in setup, now users can setup which seltags should be selectedin config.h
Anselm R. Garbe garbeam@gmail.com
Sat, 10 Nov 2007 19:31:01 +0100
e9a07335
Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe garbeam@gmail.com
Sat, 10 Nov 2007 19:16:11 +0100
198502f4
moved LENGTH to dwm.c, moved prevtags to dwm.c
arg@suckless.org unknown
Wed, 07 Nov 2007 09:49:53 +0100
35efafe8
we check variable == value, and not the other way - the other way is for beginner programmers.
Anselm R. Garbe garbeam@gmail.com
Sun, 04 Nov 2007 17:49:56 +0100
951d022d
removed a misleading comment about client title windows, which don't exist anymore
Anselm R. Garbe garbeam@gmail.com
Sun, 04 Nov 2007 12:17:06 +0100
54bde0f9
full names in -v output of dwm
Anselm R. Garbe garbeam@gmail.com
Sun, 04 Nov 2007 12:12:52 +0100
260a55ef
doing it in a shorter way
Anselm R. Garbe garbeam@gmail.com
Sat, 03 Nov 2007 21:14:04 +0100
0e98090d
removed fgets usage, increment offset until a line is read, dwm will drop all lines read in one call, except the first!!! one (previously it preferred the last) - but the current approach is simplier and works better for general purpose in conjunction with the offset handling
Anselm R. Garbe garbeam@gmail.com
Sat, 03 Nov 2007 20:43:12 +0100
af4667a8
simplified
Anselm R. Garbe garbeam@gmail.com
Fri, 02 Nov 2007 17:07:14 +0100
a98b5e59
made error handling more proper
Anselm R. Garbe garbeam@gmail.com
Fri, 02 Nov 2007 17:04:40 +0100
b8985dc7
replaced low-level stext reading with an fgets call
Anselm R. Garbe garbeam@gmail.com
Fri, 02 Nov 2007 16:57:52 +0100
6f60b2e1
revival of RESIZEHINTS
Anselm R. Garbe garbeam@gmail.com
Fri, 02 Nov 2007 10:43:39 +0100
3033d45d
sanders patch for b2 toggle
arg@suckless.org unknown
Mon, 29 Oct 2007 12:42:58 +0100
34e7872c
replaced Nmacros with LENGTH(x) macro
Anselm R. Garbe garbeam@gmail.com
Sun, 28 Oct 2007 12:52:16 +0100
c36f7c3c
replaced ISTILE with domwfact/dozoom bools, removed nrules, nlayouts and ltidx, added NRULES, NLAYOUTS and Layout *layout as alternatives, removed isarrange(), checking against layout->arrange instead.
Anselm R. Garbe garbeam@gmail.com
Sun, 28 Oct 2007 12:41:14 +0100
3fd39feb
some sanity changes
Anselm R. Garbe garbeam@gmail.com
Sat, 27 Oct 2007 18:21:02 +0200
93eee247
going toward 4.7
Anselm R. Garbe garbeam@gmail.com
Sat, 27 Oct 2007 18:12:54 +0200
d5e8edcb
Added tag 4.6 for changeset bcd7e18e196a
Anselm R. Garbe garbeam@gmail.com
Thu, 25 Oct 2007 20:24:59 +0200
13577b15
fixed a comment
arg@suckless.org unknown
Thu, 25 Oct 2007 10:42:55 +0200
5473e763
also consider width for tile fallback enforcing
Anselm R. Garbe garbeam@gmail.com
Wed, 24 Oct 2007 20:34:08 +0200
cdd6c3e8
removed RESIZEHINTS and enhanced tile for fixed or aspect-ratio'ed clients
arg@suckless.org unknown
Wed, 24 Oct 2007 16:26:59 +0200
29f2b15d
some cleanup, removed ntags variable, defined NTAGS macro, simplified tag(), view() and idxoftag(), fixed some NULL comparisions
arg@suckless.org unknown
Wed, 24 Oct 2007 16:07:43 +0200
7b65b763
parenthized use of ISTILE macro in dwm.c
arg@suckless.org unknown
Tue, 23 Oct 2007 09:38:47 +0200
e94774dd
thx to Toni Lainson
arg@suckless.org unknown
Fri, 19 Oct 2007 09:56:51 +0200
af0034f3
fixed two comments
arg@suckless.org unknown
Thu, 18 Oct 2007 17:02:19 +0200
cd7ebaad
removed dwm.h, just include C-files in config.h if you extend dwm, that's simplier and most flexible than all other possibilities
arg@suckless.org unknown
Thu, 18 Oct 2007 10:28:41 +0200
8dc03d6e
small cosmetic fix
arg@suckless.org unknown
Wed, 17 Oct 2007 14:35:21 +0200
1dcb18c1
uncommented DEBUG CFLGAS/LDFLAGS
arg@suckless.org unknown
Wed, 17 Oct 2007 12:28:34 +0200
206eb344
just making dwm.h saner
arg@suckless.org unknown
Wed, 17 Oct 2007 11:19:14 +0200
04de5720
applied Eric Mertens patch to mainstream dwm, however this needs testing
Anselm R. Garbe garbeam@gmail.com
Tue, 16 Oct 2007 19:07:51 +0200
5a04edec
cleaned up dwm.c/dwm.h somewhat that it allows easier integration of patches
Anselm R. Garbe garbeam@gmail.com
Tue, 16 Oct 2007 19:04:49 +0200
24c125cc
small comment
Anselm R. Garbe garbeam@gmail.com
Thu, 11 Oct 2007 20:50:01 +0200
0453c1d1
recreated dwm.h
Anselm R. Garbe garbeam@gmail.com
Thu, 11 Oct 2007 20:47:34 +0200
0b5c14cf
added Mod1-Tab description to dwm.1
Anselm R. Garbe garbeam@gmail.com
Wed, 10 Oct 2007 18:51:03 +0200
a73de0cf
added antoszka's viewprev patch with some minor modifications, restored Client->tags as Bool *, however kept the static initialization of ntags and seltags (prevtags) - this seems to be the best compromise
Anselm R. Garbe garbeam@gmail.com
Wed, 10 Oct 2007 18:39:28 +0200
eeea4ef5
applied Brandon MacDone's static initialization patch for seltags and Client->tags
Anselm R. Garbe garbeam@gmail.com
Sat, 06 Oct 2007 19:43:15 +0200
883e09b2
removing NULL-terminating **tags definition in config.h
Anselm R. Garbe garbeam@gmail.com
Fri, 05 Oct 2007 18:30:01 +0200
7e25897f
removed two spaces reported by Soleen
Anselm R. Garbe garbeam@gmail.com
Wed, 03 Oct 2007 16:25:25 +0200
95091dca
reverted Peters patch to tile, I will discuss the reasons at dwm@
Anselm R. Garbe garbeam@gmail.com
Mon, 01 Oct 2007 21:25:15 +0200
57676994
s/xterm/uxterm/
Anselm R. Garbe garbeam@gmail.com
Mon, 01 Oct 2007 15:39:37 +0200
60adbab7
added hint for downloading dextra
Anselm R. Garbe garbeam@gmail.com
Mon, 01 Oct 2007 14:40:53 +0200
c3eca4d1
fixed font definition
Anselm R. Garbe garbeam@gmail.com
Mon, 01 Oct 2007 11:43:53 +0200
d1f4fbb4
fixed man page
Anselm R. Garbe garbeam@gmail.com
Sun, 30 Sep 2007 19:20:05 +0200
635b6438
fixed an issue in Peter's patch (it is no good idea to restack() all clients on enternotify()
Anselm R. Garbe garbeam@gmail.com
Sun, 30 Sep 2007 18:33:05 +0200
bedbe59a
applied Peter Hartlich's border collapse patch
Anselm R. Garbe garbeam@gmail.com
Sun, 30 Sep 2007 12:47:08 +0200
3f3086f8
improved tile() for the RESIZEHINTS == True case, now more space is consumed by the clients (esp. if those clients use increment handling heavily)
Anselm R. Garbe garbeam@gmail.com
Thu, 27 Sep 2007 20:08:21 +0200
f92a4e45
fixed colors
Anselm R. Garbe garbeam@gmail.com
Thu, 27 Sep 2007 18:59:47 +0200
2fc8a135
fixed inclusion order
arg@suckless.org unknown
Thu, 27 Sep 2007 09:14:32 +0200
63725004
updated with my favorite colorscheme
Anselm R. Garbe garbeam@gmail.com
Wed, 26 Sep 2007 19:14:22 +0200
e9348dca
applied colors depend from lavishs proposal
Anselm R. Garbe garbeam@gmail.com
Tue, 25 Sep 2007 20:43:29 +0200
fa857b28
switching to white normal bg, renaming tag 9 into www, for static use in conjunction with ff
Anselm R. Garbe garbeam@gmail.com
Sun, 23 Sep 2007 18:50:04 +0200
c77663fc
btw 4.6 will be the next release
Anselm R. Garbe garbeam@gmail.com
Sun, 23 Sep 2007 11:24:42 +0200
17d39ee0
renamed config.h into config.def.h, config.h will be created if not present, this seems less annoying after all
Anselm R. Garbe garbeam@gmail.com
Sun, 23 Sep 2007 11:24:12 +0200
8d1810c8
introduced ISTILE, which can be easily extended with other layout functions to allow reuse of setmwfact() and zoom()
Anselm R. Garbe garbeam@gmail.com
Sat, 22 Sep 2007 21:55:19 +0200
60444daa
setmwfact and zoom check isarrange(floating) now, not !isarrange(tile) - this makes it easier to play well with bstack and nmtile patches
Anselm R. Garbe garbeam@gmail.com
Sat, 22 Sep 2007 21:34:06 +0200
b0477c30
Added tag 4.5 for changeset 2acc60d6dfe2
Anselm R. Garbe garbeam@gmail.com
Sat, 22 Sep 2007 09:13:03 +0200
24dae7d7
cosmetic fix
Anselm R. Garbe garbeam@gmail.com
Sat, 22 Sep 2007 08:57:24 +0200
fa1ce22b
fixed a comment
Anselm R. Garbe garbeam@gmail.com
Thu, 20 Sep 2007 21:45:27 +0200
1fafcb18
applied Peters patch, applied yiyus hint to initfont
arg@suckless.org unknown
Wed, 19 Sep 2007 17:32:28 +0200
08c2d924
applied Peter Hartlich's togglemax patch to allow toggling tiled clients to maximum
Anselm R. Garbe garbeam@gmail.com
Tue, 18 Sep 2007 19:04:50 +0200
fe2775a1
made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
arg@suckless.org unknown
Mon, 17 Sep 2007 16:42:37 +0200
01022b95
there might be envs which need Xlib.h
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 20:02:42 +0200
b2f276b0
Mod1-Button2 on a floating but not-fixed client will make it tiled again
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 13:42:37 +0200
d1ce3eac
now tiled windows can be resized/moved, their floating state will be toggled implicitely
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 13:27:33 +0200
9449ea3e
some more rearrangements
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 12:34:08 +0200
49197fe4
ordered all functions alphabetically
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 11:53:14 +0200
11cfff2d
corrected a misleading comment
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 10:24:35 +0200
a026617c
macros which have been defined in config.h can only be used at function level, however you can nest code into config.h now for implementing a different layout (just for example), eg. #include "supertile.c"
Anselm R. Garbe garbeam@gmail.com
Sun, 16 Sep 2007 10:23:53 +0200
a6df995b
ordered function forward definitions
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 22:45:18 +0200
e041ff70
backporting my intro-comment of old dwm.h
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 22:33:46 +0200
2d7bb8d7
removed grabkeys, not necessary
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 22:31:24 +0200
0235a84e
micromizing dwm step 1
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 22:25:27 +0200
2091200c
new colorscheme (16-bit compliant)
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 20:39:31 +0200
7e476fb8
moved bar-related stuff to bar.c (merged draw.c into that)
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 13:16:54 +0200
9800518a
renamed drawstatus into drawbar
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 12:36:42 +0200
5d831eaa
renamed config.default.h into config.h
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 10:35:18 +0200
e0a6dee3
dist target only needs to add config.default.h
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 10:31:28 +0200
73e2aba3
removed config.arg.h, only 1 config.h necessary
Anselm R. Garbe garbeam@gmail.com
Sat, 15 Sep 2007 10:30:45 +0200
9f88fd09
small changes of the colors
Anselm R. Garbe garbeam@gmail.com
Fri, 14 Sep 2007 20:32:12 +0200
0e515a06
other color
Anselm R. Garbe garbeam@gmail.com
Tue, 11 Sep 2007 21:30:27 +0200
c4b3c0d9
using light colorscheme, preparing merge of config.arg.h with config.default.h
Anselm R. Garbe garbeam@gmail.com
Tue, 11 Sep 2007 20:16:16 +0200
f3a51162
I work with enabled RESIZEHINTS, simply because I force myself to continue the st development ;)
Anselm R. Garbe garbeam@gmail.com
Sun, 09 Sep 2007 18:31:19 +0200
ae760f3f
introduced new define RESIZEHINTS, which allows to enable/disable size hint handling in tiled resizals
Anselm R. Garbe garbeam@gmail.com
Sun, 09 Sep 2007 18:28:39 +0200
169d96ae
14px fonts drives me nuts
Anselm R. Garbe garbeam@gmail.com
Fri, 07 Sep 2007 21:22:49 +0200
f6514350
Added tag 4.4.1 for changeset 7c117df5d202
Anselm R. Garbe garbeam@gmail.com
Sun, 26 Aug 2007 12:54:20 +0200
a92cf496
prepared 4.4.1 bugfix and minor feature enhancement release
Anselm R. Garbe garbeam@gmail.com
Sun, 26 Aug 2007 12:53:40 +0200
cc797001
Added tag 4.4 for changeset 408014d21261
Anselm R. Garbe garbeam@gmail.com
Thu, 23 Aug 2007 18:15:13 +0200
67a1141f
removed unnecessary include, prepared dwm-4.4
Anselm R. Garbe garbeam@gmail.com
Thu, 23 Aug 2007 18:11:24 +0200
8be3f3ec
setlayout should perform strcmp's if arg != NULL, because Layout is local to screen.o
Anselm R. Garbe garbeam@gmail.com
Wed, 22 Aug 2007 19:06:35 +0200
5762e929
reverted release CFLAGs
Anselm R. Garbe garbeam@gmail.com
Wed, 22 Aug 2007 19:02:17 +0200
36672d04
removed the _DWM_PROPERTIES handling, reverted ban/unban to XMoveWindow(), and changed argument of setlayout to layout[N].symbol check
Anselm R. Garbe garbeam@gmail.com
Wed, 22 Aug 2007 19:01:05 +0200
b18e6840
renamed char prop[] into buf[]
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 18:50:47 +0200
fc109ea8
fixed misappearance of iconified windows on SIGKILL
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 18:39:54 +0200
b975c472
moved updatebarpos to screen
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 11:00:47 +0200
47765f72
added screen.c, removed layout.c and tag.c
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 10:57:02 +0200
96d7fe16
prepared merging layout.c and tag.c into screen.c
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 10:40:07 +0200
78d1a22d
small fix
Anselm R. Garbe garbeam@gmail.com
Sun, 19 Aug 2007 10:13:24 +0200
0c606204
hmm I doubt the usefulness of storing this information...
Anselm R. Garbe garbeam@gmail.com
Sat, 18 Aug 2007 14:20:56 +0200
50be6c8b
cleaned up settags-handling
Anselm R. Garbe garbeam@gmail.com
Sat, 18 Aug 2007 13:48:05 +0200
7d156dee
applied Gottox mwfact patch
Anselm R. Garbe garbeam@gmail.com
Sat, 18 Aug 2007 11:40:25 +0200
55d8dda9
replaced static Layout *lt with static unsigned int sellayout... (will be adapted later when _DWM_CONFIG is serialized as root window property)
Anselm R. Garbe garbeam@gmail.com
Fri, 17 Aug 2007 21:19:07 +0200
86953bd6
renamed seltag into seltags
Anselm R. Garbe garbeam@gmail.com
Fri, 17 Aug 2007 21:12:55 +0200
a923298d
applied Jukka Salmi's setmwfact patch
Anselm R. Garbe garbeam@gmail.com
Fri, 17 Aug 2007 21:10:50 +0200
04dec4c9
made plural arrays
Anselm R. Garbe garbeam@gmail.com
Thu, 16 Aug 2007 18:41:22 +0200
e40448fd
fixed the issue observed by various people, that clients appeared on empty tags
Anselm R. Garbe garbeam@gmail.com
Thu, 16 Aug 2007 18:30:25 +0200
10bc0ce9
made tag/view/toggle{tag,view} work on pointer to tags-array, there was the need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
Anselm R. Garbe garbeam@gmail.com
Thu, 16 Aug 2007 17:55:55 +0200
e8792d95
applied Jukka's patch
Anselm R. Garbe garbeam@gmail.com
Thu, 16 Aug 2007 08:05:30 +0200
feec92df
fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts
Anselm R. Garbe garbeam@gmail.com
Wed, 15 Aug 2007 19:31:41 +0200
10d13f01
fififi
Anselm R. Garbe garbeam@gmail.com
Wed, 15 Aug 2007 19:27:32 +0200
8fcc4ff0
fix of resize (thanks Sander for the hint!)
Anselm R. Garbe garbeam@gmail.com
Tue, 14 Aug 2007 19:38:10 +0200
f2512243
fixed a typo
Anselm R. Garbe garbeam@gmail.com
Tue, 14 Aug 2007 07:54:51 +0200
b32cd445
small bugfix
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 20:10:44 +0200
9e56e1de
tags should be persistent now during X server run
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 20:06:00 +0200
e4ad3205
small bugfix
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 19:22:51 +0200
a200c396
made tile simplier
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 19:19:38 +0200
77044e87
made Layout a static struct in layout.c, added some convenience getters in layout.c, now lt->arrange accesses are not possible anymore, arrange() is the super-arrange function which sets up all layouts
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 19:13:54 +0200
2feb3afe
made resize more precise
Anselm R. Garbe garbeam@gmail.com
Mon, 13 Aug 2007 18:24:15 +0200
0937cc78
moved floating to layout.c, kept tile.c outside
Anselm R. Garbe garbeam@gmail.com
Sun, 12 Aug 2007 13:10:21 +0200
f6e41b0b
renamed MASTER into MWFACT, master into mwfact, and incmaster into addtomwfact
Anselm R. Garbe garbeam@gmail.com
Sun, 12 Aug 2007 12:46:08 +0200
2c6087e3
fixed a comment
Anselm R. Garbe garbeam@gmail.com
Sat, 11 Aug 2007 14:44:11 +0200
2d81b78b
separated layout-specific stuff into separate .h and .c files which are included in config.h resp. config.mk - this allows writing layouts for dwm without any need to patch existing code
Anselm R. Garbe garbeam@gmail.com
Sat, 11 Aug 2007 12:11:50 +0200
b5eea45a
let not overlap the borders
Anselm R. Garbe garbeam@gmail.com
Fri, 10 Aug 2007 18:27:25 +0200
aa53e39e
removed VRATIO, NMASTER, inc*(), renamed HRATIO into MASTER, see mailinglist for details
Anselm R. Garbe garbeam@gmail.com
Fri, 10 Aug 2007 18:16:05 +0200
4216bf80
slight change of my color scheme
Anselm R. Garbe garbeam@gmail.com
Sun, 05 Aug 2007 17:37:40 +0200
2cd16097
removed spow(x, 0); calls, I did them for consistency's sake, but it should be rather obvious how the scaling works anyways
Anselm R. Garbe garbeam@gmail.com
Sun, 05 Aug 2007 16:00:08 +0200
85c9ebf2
applied Jukka's dwm.1 patch
Anselm R. Garbe garbeam@gmail.com
Sun, 05 Aug 2007 15:58:07 +0200
79692508
changed shortcuts as described on the mailinglist, added sanity checks for ratios during tile (fallback to wah if clients would get too small), documented that new stuff/shortcuts in dwm(1)
Anselm R. Garbe garbeam@gmail.com
Sun, 05 Aug 2007 12:47:52 +0200
da91dfc9
small fix of static function order
Anselm R. Garbe garbeam@gmail.com
Sat, 04 Aug 2007 10:57:56 +0200
4135e34d
I introduced {H,V}RATIO and inc{h,v,}ratio() functions - the default behaves like in dwm-4.3, config.arg.h shows how I prefer the ratio being handled (for the future I plan to change const char *arg into ..., and renaming Client into Win.)
Anselm R. Garbe garbeam@gmail.com
Sat, 04 Aug 2007 10:51:39 +0200
846128a4
removed a C++ style comment
Anselm R. Garbe garbeam@gmail.com
Fri, 03 Aug 2007 19:29:58 +0200
e461e609
implemented ratio tile as described on the mailinglist
Anselm R. Garbe garbeam@gmail.com
Fri, 03 Aug 2007 19:23:30 +0200
28c10330
changed the fix of yesterday, the resize should only be necessary at manage() time, not on any unban()
Anselm R. Garbe garbeam@gmail.com
Tue, 31 Jul 2007 18:22:13 +0200
0d40590c
foo
Anselm R. Garbe garbeam@gmail.com
Mon, 30 Jul 2007 21:03:08 +0200
8fda28be
set client state to iconic on maprequest
Anselm R. Garbe garbeam@gmail.com
Sat, 28 Jul 2007 17:25:44 +0200
a54cf2ec
changed ban/unban implementation to not move the windows anymore, but map/unmap them instead - PLEASE TEST THIS
Anselm R. Garbe garbeam@gmail.com
Sat, 28 Jul 2007 17:18:45 +0200
4b9337a0
removed shiftview(), if you scroll the views in the tag area, you can also use Button1 instead
removed focusclient([-]1) bound to scroll wheel - if you slightly move the mouse you will focus the first client anways which is in the way
Anselm R. Garbe garbeam@gmail.com
Sat, 28 Jul 2007 12:58:56 +0200
15449754
applied Jeroen's {clean,spell}.diff patches, thanks Jeroen!
Anselm R. Garbe garbeam@gmail.com
Thu, 26 Jul 2007 20:15:02 +0200
e0cfe076
applied Jeroen Schot's shiftview patch
Anselm R. Garbe garbeam@gmail.com
Tue, 24 Jul 2007 18:29:29 +0200
82be2899
applied dwm-windowscrolling patch
arg@f00b4r unknown
Tue, 24 Jul 2007 18:25:01 +0200
f2190c8f
Added tag 4.3 for changeset e0ec0d5d8b1e
arg@f00b4r unknown
Sat, 14 Jul 2007 21:14:15 +0200
c31648d1
restoring tip to be a working dwm again (switching FONT to terminus in config.arg.h)
arg@f00b4r unknown
Thu, 12 Jul 2007 19:45:28 +0200
52250e7c
please recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug
Anselm R. Garbe arg@suckless.org
Tue, 19 Jun 2007 09:08:15 +0200
51a94a2f
removed crappy createnotify handler
Anselm R. Garbe arg@suckless.org
Tue, 19 Jun 2007 09:04:21 +0200
c95bf3db
applied restack patch of anydot, with slight changes
Anselm R. Garbe arg@suckless.org
Wed, 06 Jun 2007 11:43:14 +0200
4bf3b019
I change the style of init somewhat, init as early as possible.
Anselm R. Garbe arg@suckless.org
Wed, 06 Jun 2007 11:17:56 +0200
ff957d1e
uncommented creatnotify
Anselm R. Garbe arg@suckless.org
Mon, 04 Jun 2007 14:38:24 +0200
83aa110c
added an creatnotify event handler
Anselm R. Garbe arg@suckless.org
Mon, 04 Jun 2007 11:50:48 +0200
5a1a2edf
applied anudots [un]ban repair patch
Anselm R. Garbe arg@suckless.org
Mon, 04 Jun 2007 11:37:33 +0200
b3419f49
making variable declarations in dwm.h extern, this seems to be more ansi compliant
Anselm R. Garbe arg@suckless.org
Fri, 01 Jun 2007 12:11:25 +0200
141beb27
replaced BORDERPX with sel->border in togglemax(), in other places this is not possible.
Anselm R. Garbe arg@suckless.org
Wed, 30 May 2007 20:49:38 +0200
4e49d5a0
Added tag 4.2 for changeset c13cb8c6b7a5
Anselm R. Garbe arg@suckless.org
Wed, 30 May 2007 12:22:29 +0200
2c6be723
referred to LICENSE file
Anselm R. Garbe arg@suckless.org
Wed, 30 May 2007 12:19:28 +0200
d9342964
Jukka also belongs to Copyright holders after all he has contributed and done for dwm, updated -v as well
Anselm R. Garbe arg@suckless.org
Wed, 30 May 2007 12:10:01 +0200
39ae2868
applied Jukkas patch
Anselm R. Garbe arg@suckless.org
Wed, 30 May 2007 08:57:44 +0200
59e65d17
changed -v output (now also anydot and nsz are contained in this output)
Anselm R. Garbe arg@suckless.org
Tue, 29 May 2007 13:53:08 +0200
9fdd2cd1
added nsz to copyright holders as well, because he did a lot recently
Anselm R. Garbe arg@suckless.org
Tue, 29 May 2007 11:57:08 +0200
e1deda9e
added anydot to Copyright holders, because he contributed a lot recently
Anselm R. Garbe arg@suckless.org
Tue, 29 May 2007 11:47:55 +0200
199a6016
applied anydot's 3 minor patches, thank you anydot
Anselm R. Garbe arg@suckless.org
Tue, 29 May 2007 11:35:20 +0200
492c6f10
applied Sanders patch
Anselm R. Garbe arg@suckless.org
Mon, 28 May 2007 15:05:47 +0200
caa7ab53
applied anydots proposal to let togglefloating restore fixed windows
Anselm R. Garbe arg@suckless.org
Fri, 25 May 2007 15:28:10 +0200
f3e672ef
fix if n < nmaster of remainer calculation for master windows
Anselm R. Garbe arg@suckless.org
Thu, 24 May 2007 16:25:09 +0200
02d5dddc
rev 900, cool
Anselm R. Garbe arg@suckless.org
Thu, 24 May 2007 15:55:28 +0200
c789941b
fo
Anselm R. Garbe arg@suckless.org
Thu, 24 May 2007 15:53:48 +0200
e45b3ced
calculating the remainder for master and stack area correctly
Anselm R. Garbe arg@suckless.org
Thu, 24 May 2007 15:40:07 +0200
5a9af492
fixed issue reported by Christian Garbs
Anselm R. Garbe arg@suckless.org
Thu, 24 May 2007 11:35:32 +0200
32563abe
removed the only one and superfloues strncmp
Anselm R. Garbe arg@suckless.org
Wed, 23 May 2007 22:33:46 +0200
70c7b432
foo
Anselm R. Garbe arg@suckless.org
Wed, 23 May 2007 14:51:51 +0200
69dfcaa3
reverted last change after Sander pointed out the original decision
Anselm R. Garbe arg@suckless.org
Wed, 23 May 2007 07:49:05 +0200
6ee8e3e9
applied anydots remark of togglefloating()
Anselm R. Garbe arg@suckless.org
Wed, 23 May 2007 07:47:20 +0200
8439369d
applied Szabolcs proposal for zoom() as well
Anselm R. Garbe arg@suckless.org
Tue, 22 May 2007 11:29:59 +0200
81658eaa
applied Szabolcs proposal to simplify setlayout()
Anselm R. Garbe arg@suckless.org
Tue, 22 May 2007 11:29:04 +0200
81aebf8c
Added tag 4.1 for changeset 00f4180df72b
Anselm R. Garbe arg@suckless.org
Mon, 21 May 2007 14:37:26 +0200
fa32f02a
no that change breaks fullscreen apps
Anselm R. Garbe arg@suckless.org
Wed, 16 May 2007 22:05:02 +0200
598e2290
raise barwin in restack, that's the most elegant solution I think
Anselm R. Garbe arg@suckless.org
Wed, 16 May 2007 21:59:53 +0200
1e826ddd
simplification
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 14:06:18 +0200
a967d7f6
raising the barwin has no effect becasue of restack
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:58:29 +0200
ce450c5b
fix
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:56:47 +0200
8f5f7a5b
barwindow raising
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:56:06 +0200
5ad2828c
using BarTop as fallback if BARPOS is set to BarOff as default for toggling
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:49:43 +0200
b896b58d
removed strip, added -s to LDFLAGS
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:44:04 +0200
fef6c5c6
added new Mod1-b functionality to dwm(1)
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:42:07 +0200
37e062b0
another fix, call lt->arrange() in togglebar only
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:36:04 +0200
cf580917
fixed bpos init
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:23:51 +0200
2aef8b9b
made bar togglalble
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 12:09:18 +0200
d96307cb
thanks to Jukka
Anselm R. Garbe arg@suckless.org
Mon, 14 May 2007 16:24:01 +0200
124866e2
added the GTK Save-As bug report to BUGS section of dwm(1)
Anselm R. Garbe arg@suckless.org
Mon, 14 May 2007 13:42:00 +0200
ab3d6a7d
applied dfenze cleanups, fixed some comments in dwm.h
Anselm R. Garbe arg@suckless.org
Mon, 14 May 2007 11:54:30 +0200
c67dbb28
small fix of fix
Anselm R. Garbe arg@suckless.org
Thu, 10 May 2007 13:49:17 +0200
b8bccb4a
fixed a potential security flaw
Anselm R. Garbe arg@suckless.org
Thu, 10 May 2007 13:47:44 +0200
b6b2f584
applied Maarten Maathuis recenter-patch for floating clients only requesting new width and height exceeding the screen space
Anselm R. Garbe arg@suckless.org
Wed, 09 May 2007 11:31:14 +0200
f7bdb39d
s/remain/remainder/
Anselm R. Garbe arg@suckless.org
Wed, 09 May 2007 10:12:55 +0200
ecd9c3e2
fixing remaining space calculation
Anselm R. Garbe arg@suckless.org
Wed, 09 May 2007 10:11:34 +0200
216099d0
thanks to Juka to check -Wall ;)
Anselm R. Garbe arg@suckless.org
Tue, 08 May 2007 08:52:34 +0200
fc2e3eae
next version is 4.1
Anselm R. Garbe arg@suckless.org
Mon, 07 May 2007 13:14:55 +0200
f9e7a330
applied patch of Paul Liu to allow onthefly resizing due to xrandr changes
Anselm R. Garbe arg@suckless.org
Mon, 07 May 2007 13:12:41 +0200
7c9fa256
Added tag 4.0 for changeset 018c38468422
Anselm R. Garbe arg@suckless.org
Thu, 19 Apr 2007 09:26:44 +0200
22399a3b
fixed the border issue for mplayer, ff is definately broken when using F11 (fullscreen mode)
Anselm R. Garbe arg@suckless.org
Thu, 19 Apr 2007 09:24:25 +0200
ad2508f9
touch border
Anselm R. Garbe arg@suckless.org
Thu, 19 Apr 2007 08:53:40 +0200
b0785998
set border at manage time
Anselm R. Garbe arg@suckless.org
Wed, 18 Apr 2007 21:11:46 +0200
1e802078
using pixelcarnage-monospace (proggyclean), because this is better to the eyes
Anselm R. Garbe arg@suckless.org
Wed, 18 Apr 2007 17:29:38 +0200
464fc2cd
changed border handling
Anselm R. Garbe arg@suckless.org
Tue, 17 Apr 2007 14:56:46 +0200
be8d6d40
changing order of c->border restorage
Anselm R. Garbe arg@suckless.org
Fri, 13 Apr 2007 12:22:00 +0200
f0c23533
I used 2006 in other places as well
Anselm R. Garbe arg@suckless.org
Fri, 13 Apr 2007 11:41:39 +0200
a730213c
yet another fix of copyright compactisition
Anselm R. Garbe arg@suckless.org
Fri, 13 Apr 2007 11:40:09 +0200
399993c6
making Copyright notices more compact
Anselm R. Garbe arg@suckless.org
Fri, 13 Apr 2007 11:32:38 +0200
4d318060
next version will be 4.0, so don't expect it within the next days
Anselm R. Garbe arg@suckless.org
Wed, 11 Apr 2007 15:18:16 +0200
540d5eed
make also transients floating when we do not know the main window
Anselm R. Garbe arg@suckless.org
Wed, 11 Apr 2007 15:17:29 +0200
7d071ce2
Added tag 3.9 for changeset 55478328b242
Anselm R. Garbe arg@suckless.org
Mon, 02 Apr 2007 11:11:47 +0200
93aeaa53
next version will be 3.9, but don't expect it this week
Anselm R. Garbe arg@suckless.org
Thu, 29 Mar 2007 15:18:30 +0200
06f9f346
add an additional check in resize() to prevent a crash of dwm
Anselm R. Garbe arg@suckless.org
Thu, 29 Mar 2007 15:17:57 +0200
5c48012a
Added tag 3.8 for changeset 2ea201354cf0
Anselm R. Garbe arg@suckless.org
Mon, 05 Mar 2007 11:54:59 +0100
a686c9cc
we don't need to set the font all the time
Anselm R. Garbe arg@suckless.org
Fri, 02 Mar 2007 15:14:40 +0100
9ca5c3b1
some changes to updatesizehints, I don't change the aspect ratio algorithm now - I can't think, it is a mess
Anselm R. Garbe arg@suckless.org
Thu, 01 Mar 2007 12:33:45 +0100
bab5b117
removed sendevent
Anselm R. Garbe arg@suckless.org
Mon, 26 Feb 2007 16:24:51 +0100
ee8fb0c6
Escape -s in dwm.1
Anselm R. Garbe arg@suckless.org
Mon, 26 Feb 2007 10:47:11 +0100
0d9d3e79
Added tag 3.7 for changeset baee494346e5
Anselm R. Garbe arg@suckless.org
Sat, 24 Feb 2007 15:41:05 +0100
12280f02
prepared 3.7, ready to rambo
Anselm R. Garbe arg@suckless.org
Sat, 24 Feb 2007 15:40:50 +0100
a58731e8
removed an unnecessary newline
Anselm R. Garbe arg@suckless.org
Sat, 24 Feb 2007 14:08:27 +0100
1df45593
removed superfluous externs (except for tags, because tags is defined in the source)
Anselm R. Garbe arg@suckless.org
Sat, 24 Feb 2007 14:06:35 +0100
2122e39c
replacing Mod1-i with Mod1-Shift-j, Mod1-d with Mod1-Shift-k
Anselm R. Garbe arg@suckless.org
Fri, 23 Feb 2007 13:37:55 +0100
e7013942
oops, small bugfix in my config
Anselm R. Garbe arg@suckless.org
Fri, 23 Feb 2007 11:17:07 +0100
3d1d75a2
default masterwidth should also be at 600
Anselm R. Garbe arg@suckless.org
Fri, 23 Feb 2007 11:13:57 +0100
35f08f42
changed order if h/l
Anselm R. Garbe arg@suckless.org
Fri, 23 Feb 2007 11:09:18 +0100
0ea0343a
well I agree to several people claiming h/j/k/l is the better default than Tab/S-Tab/g/s for focus and master resizing
Anselm R. Garbe arg@suckless.org
Fri, 23 Feb 2007 10:40:32 +0100
338c0838
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 22:10:16 +0100
671442e8
hahaha, untiled and non-untiled sounded really cumbersome
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 18:22:51 +0100
8d111632
made Fnt an anonymous inner struct
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 18:17:07 +0100
fe5acb93
made Fnt an anonymous inner struct
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 18:08:31 +0100
cac492b0
nah, I don't want 640 as MASTERWIDTH
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 17:58:45 +0100
ef9b3e17
using MASTERWIDTH=640 and 32px steps by default (incmasterw())
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 17:52:45 +0100
5a13632a
simplified focusclient()
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 17:51:34 +0100
58710087
renamed versatile into untiled
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 17:43:41 +0100
27b0595a
merged focus{prev.next} into focusclient(1/-1)
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 15:25:19 +0100
12d5a26f
made dwm.h more tidy (thx Jukka for the zoom() hint)
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 15:06:56 +0100
89b7f150
oops
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 12:16:58 +0100
57116092
small bugfix
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 12:15:48 +0100
825b7c3e
fixed some issues due to the Arg->const char * transition
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 12:00:02 +0100
ba96131a
restoring default keybindings as Sander complained
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 11:45:03 +0100
2c477cf6
replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 11:42:08 +0100
986ca730
re-added xterm to config.default.h
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 11:15:31 +0100
28809889
removed button4/5-bindings for incnmaster on mode label - that is misleading
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 11:09:44 +0100
cb9607c2
fixed order of key bindings described in dwm.1
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 11:06:37 +0100
4bd4f421
status needs update even in togglemax() - since we got an indicator for this
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 10:59:42 +0100
84432e6b
reusing drawsquare for client title, empty square before title means versatile window, filled square before title means versatile maximized window.
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 10:57:19 +0100
1a25414a
dwm draws a small caret before the client title if it's a versatile client
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 10:52:57 +0100
31713714
nah grouped keybindings by context
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 09:29:38 +0100
92105e78
fixed exit condition in togglemax()
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 08:08:36 +0100
6ee9f134
fixing missing extern declars in dwm.h for {de,at}tach()
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 08:02:04 +0100
352cae43
several changes, made togglemax extern and separated it from zoom() - moved zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
Anselm R. Garbe arg@suckless.org
Thu, 22 Feb 2007 07:59:13 +0100
b3b58c08
just ignore the FD_ISSET check in main.c of xfd, just call XPending (which does the same afair)
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 21:36:54 +0100
204f0a34
optimizing background color of terminals
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 17:00:06 +0100
78666b99
using 333 as background, hey proggyclean is really good
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 16:57:21 +0100
0bdcf75e
switching to 13pt proggyclean (this fits better my 1920x1200 resolution than 12pt terminus which is too small or 14pt terminus which is too fat)
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 16:53:25 +0100
f1009285
using smaller font
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 16:47:53 +0100
f76b3a46
using a green selborder
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 15:47:52 +0100
84ae6e12
reverting to bg 555
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 13:31:04 +0100
78465956
s/555/357/ for SELCOLOR
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 13:29:02 +0100
7ae0c198
switching to urxvtcd for the moment (the uxterm flicker makes me headaches, st is really highest prio now)
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 13:24:37 +0100
dc662372
Added tag 3.6.1 for changeset 20ec6976cee1
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 12:09:10 +0100
7541f1ad
creating 3.6.1
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 12:08:18 +0100
74cbbe5f
reverted accidental removal of sx, sy
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:49:06 +0100
52f0b9e2
removed some global vars which should be static instead
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:45:51 +0100
29c26b88
moved focus{next,prev} and nexttiled from client.c to layout.c (because those are not client-specific), moved toggleversatile() from layout.c to client.c (because those are client-specific)
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:39:57 +0100
f196b71e
cleaned up and commented the config.*.h
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:30:52 +0100
ab838721
Added tag 3.6 for changeset 75b1b25fe0d7e29400baf30568153f668324928b
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:05:27 +0100
ad4962c7
fixed quoting and a comment
Anselm R. Garbe arg@suckless.org
Wed, 21 Feb 2007 11:04:33 +0100
d180ba41
renamed setfont to initfont, getcolor to initcolor
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 13:56:21 +0100
138b7fbd
fixed order
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 13:48:02 +0100
e7508783
added draw.c again (except getcolor and setfont which are helpers in main.c)
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 13:46:21 +0100
f4d15b1f
separating drawsquare from drawtext, made drawtext extern
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 13:40:31 +0100
355beb53
rechecked with OpenBSD
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 11:26:16 +0100
8012fcf3
split screen.c into layout.c and tag.c (because the view is an implicit mixture of both)
Anselm R. Garbe arg@suckless.org
Tue, 20 Feb 2007 10:49:53 +0100
6bc4556e
using eprint instead of fputs
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 21:17:54 +0100
879241c0
replaced togglelayout with setlayout
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 18:33:15 +0100
3794c629
changed some odering in config*.h
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 18:19:43 +0100
5a03daf4
renamed Client->versatile and Rule->versatile into Client->isversatile resp. Rule->isversatile
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 17:18:24 +0100
6d5f67a0
renames swim[ming] into versatile
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 17:12:26 +0100
cee56d38
renamed floating into swimming (this does not clash with C naming conventions and fits better the fish symbol) - also in man page
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 17:00:32 +0100
7c4da244
removed debug compile flags
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 16:41:47 +0100
cdbc84b9
introduced Layout struct
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 16:40:36 +0100
b2f89516
some more code polishing
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 16:07:22 +0100
ebe68f65
forgot an extern declaration
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 16:04:38 +0100
df9fd28f
bugfix of transient handling
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 15:57:08 +0100
e9c49ddd
removed procevent, more refactoring
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 15:23:35 +0100
f8415019
draw.c is useless (belongs to main.c now)
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 15:17:31 +0100
238dd5d2
renamed view.c into screen.c
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 15:05:29 +0100
64871a70
renamed manage.c to view.c
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 14:57:32 +0100
2e95bc04
renamed Rule members, renamed RReg into Regexps
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 14:52:19 +0100
4cdbd523
merged tag.c, view.c and tile.c to manage.c
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 14:44:05 +0100
b3d7e07f
some more refactoring
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 13:53:40 +0100
30af19d4
added some new convenience functions
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 13:42:39 +0100
5d9146ff
some more refactoring
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 13:17:49 +0100
5cc27f1b
introduced tile.c, some refactoring of functions
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 13:00:29 +0100
39ed54a4
simplified configurerequest to a bare minimum, removed wrong ban() calls
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 11:34:12 +0100
b61f9136
fixed configurerequest according to Jukkas complains
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 11:22:47 +0100
31673735
fixed configurerequest according to the problem Jukka reported
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 11:03:27 +0100
4cff7444
don't resize master if not in tiled mode
Anselm R. Garbe arg@suckless.org
Mon, 19 Feb 2007 10:51:11 +0100
c3527bea
removed useless space
Anselm R. Garbe arg@suckless.org
Fri, 16 Feb 2007 16:51:27 +0100
de669579
well, resize should be called in dofloat anyways ;)
Anselm R. Garbe arg@suckless.org
Fri, 16 Feb 2007 16:41:22 +0100
6e22ccf7
removed ugly ban(), extended resize() that it only resets the size if necessary, added border_width commit to manage()
Anselm R. Garbe arg@suckless.org
Fri, 16 Feb 2007 16:38:40 +0100
8a5f002c
removed getnext/getprev, redundant
Anselm R. Garbe arg@suckless.org
Fri, 16 Feb 2007 10:20:34 +0100
3ce8c9f3
added ban() which takes care than a banned window is not banned again... (this reduces the overall ConfigureNotify's to clients)
Anselm R. Garbe arg@suckless.org
Wed, 14 Feb 2007 14:01:12 +0100
0d095ae2
Added tag 3.5 for changeset 63ad05e7f9e1
Anselm R. Garbe arg@suckless.org
Wed, 14 Feb 2007 09:35:48 +0100
2d7f5942
simplifying regexps in config samples
Anselm R. Garbe arg@suckless.org
Wed, 14 Feb 2007 09:31:23 +0100
e256afe3
made for/if/else constructs more consistent, some code polishing
Anselm R. Garbe arg@suckless.org
Wed, 14 Feb 2007 09:09:18 +0100
64cfebc5
made configurerequest more tidy
Anselm R. Garbe arg@suckless.org
Wed, 14 Feb 2007 08:14:41 +0100
7a095d0c
I didn't knew of c->isfixed, that should fix Jukkas issue with gkrellm ;)
Anselm R. Garbe arg@suckless.org
Tue, 13 Feb 2007 22:53:58 +0100
5052c538
making it more sure that transient checks will work in any case
Anselm R. Garbe arg@suckless.org
Tue, 13 Feb 2007 22:24:27 +0100
22d8c6fd
stupid me, one needs to set c->{x,y,w,h} in configurerequest obviously ;)
Anselm R. Garbe arg@suckless.org
Tue, 13 Feb 2007 14:59:58 +0100
71857b87
simplified configurerequest
Anselm R. Garbe arg@suckless.org
Tue, 13 Feb 2007 13:39:33 +0100
6ba400ee
yet another consistency fix of dwm
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 17:20:51 +0100
35e65ea6
I don't see any reason why we should select for input on override-redirect windows?
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 16:41:46 +0100
d0d986dd
bugfix of bugfix (thx to Sander)
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 14:20:47 +0100
9685e7db
fixed a bug
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 13:04:29 +0100
37f39afb
during writing 2wm.1 I noticed some bugs in dwm.1
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 11:42:32 +0100
dc9f62f3
removing all EnterNotifys after resize
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 10:21:26 +0100
70553157
added pointer warp on drop in resize
Anselm R. Garbe arg@suckless.org
Mon, 12 Feb 2007 10:19:52 +0100
fd995dac
pneubeck pointed out an obvious thing, that a second p = stext + strlen(stext) - 1 is unnecessary
Anselm R. Garbe arg@suckless.org
Fri, 09 Feb 2007 14:56:19 +0100
e5765cdd
treating acroread and mplayer floating by default
Anselm R. Garbe arg@suckless.org
Fri, 09 Feb 2007 11:58:37 +0100
8d0e58f8
adapting John Grahor's patch to dwm-3.5
Anselm R. Garbe arg@suckless.org
Fri, 09 Feb 2007 09:54:08 +0100
8fcd1bfd
fixed copyright notice in Makefile
Anselm R. Garbe arg@suckless.org
Thu, 08 Feb 2007 14:09:52 +0100
e39e6979
fixed order of Bool declarations
Anselm R. Garbe arg@suckless.org
Thu, 08 Feb 2007 13:39:33 +0100
d2dd58ea
added TOPBAR option for making the bar appear what the user likes
Anselm R. Garbe arg@suckless.org
Thu, 08 Feb 2007 11:48:01 +0100
c6fc6b17
next version is 3.5
Anselm R. Garbe arg@suckless.org
Thu, 08 Feb 2007 11:11:15 +0100
4590d787
making the  bar appear at bottom
Anselm R. Garbe arg@suckless.org
Thu, 08 Feb 2007 11:08:40 +0100
f577fe4e
Added tag 3.4 for changeset 9ede7b2d2450
Anselm R. Garbe arg@suckless.org
Wed, 07 Feb 2007 12:42:35 +0100
9ed5de00
removed debug flags
Anselm R. Garbe arg@suckless.org
Wed, 07 Feb 2007 12:37:21 +0100
28ffff80
replaced getproto with a saner function, now old-school artifacts of WM times in the early 90s completely disappeared, no punned pointer warning anymore ;)
Anselm R. Garbe arg@suckless.org
Wed, 07 Feb 2007 12:37:06 +0100
44ef3f5a
yet another fix
Anselm R. Garbe arg@suckless.org
Tue, 06 Feb 2007 15:29:19 +0100
dafbd0dc
simplification
Anselm R. Garbe arg@suckless.org
Tue, 06 Feb 2007 15:28:25 +0100
2ddc7872
implemented aspect ratio support of windows
Anselm R. Garbe arg@suckless.org
Tue, 06 Feb 2007 15:22:13 +0100
7ece30eb
made some changes more concistent
Anselm R. Garbe arg@suckless.org
Mon, 05 Feb 2007 11:19:46 +0100
3d48f330
got rid of LD (inspired by JGs patch to wmii)
Anselm R. Garbe arg@suckless.org
Mon, 05 Feb 2007 11:09:53 +0100
19fd903d
applied apm's patch proposal, getting rid of XDrawLines
Anselm R. Garbe arg@suckless.org
Mon, 05 Feb 2007 11:05:16 +0100
5732e471
Added tag 3.3 for changeset 0f91934037b0
Anselm R. Garbe arg@suckless.org
Thu, 01 Feb 2007 08:23:00 +0100
042297b2
applied Sander's drop_bh patch
Anselm R. Garbe arg@suckless.org
Wed, 31 Jan 2007 20:08:55 +0100
a5cb80b8
handling WM_STATE seems to make DnD in gtk/qt apps working, well let's handle this in dwm as well
Anselm R. Garbe arg@suckless.org
Sun, 28 Jan 2007 20:29:41 +0100
7e98db25
regarding to http://plan9.bell-labs.com/sources/contrib/rsc/man.ps the BUGS section should appear after SEE ALSO section.
Anselm R. Garbe arg@suckless.org
Fri, 26 Jan 2007 12:41:15 +0100
bced9077
renamed CAVEATS into BUGS
Anselm R. Garbe arg@suckless.org
Fri, 26 Jan 2007 12:31:57 +0100
82fed986
Added tag 3.2.2 for changeset d3876aa79292
Anselm R. Garbe arg@suckless.org
Thu, 25 Jan 2007 10:05:02 +0100
2c1db7ed
prepared yet another hotfix release
Anselm R. Garbe arg@suckless.org
Thu, 25 Jan 2007 09:59:48 +0100
ea4827a5
Added tag 3.2.1 for changeset f2cabc83a18f
Anselm R. Garbe arg@suckless.org
Wed, 24 Jan 2007 17:25:37 +0100
55be4d61
hotfix release 3.2.1
Anselm R. Garbe arg@suckless.org
Wed, 24 Jan 2007 17:25:30 +0100
1f184664
applied offscreen appearance hotfix
Anselm R. Garbe arg@suckless.org
Wed, 24 Jan 2007 17:24:55 +0100
b65a1e33
Added tag 3.2 for changeset 4ce65f61f01b
Anselm R. Garbe arg@suckless.org
Wed, 24 Jan 2007 12:12:29 +0100
87836d79
renamed activescreen into selscreen
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 17:12:15 +0100
c8a12a08
implemented Sanders remarks
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 13:10:35 +0100
71b84c21
small changes
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 12:29:17 +0100
edb2660a
removed a blank line
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 12:04:22 +0100
17ec726b
this version should also work with cornercases (like unmanage during !issel, etc.)
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 12:00:49 +0100
373b11de
I think this is the best solution of multihead support
Anselm R. Garbe arg@suckless.org
Tue, 23 Jan 2007 11:49:16 +0100
04a2b745
darker border
Anselm R. Garbe arg@suckless.org
Mon, 22 Jan 2007 16:02:37 +0100
fcd98308
this variant is known to work, but focus() is ugly - we need in general a better way to handle multihead, this issel-stuff looks awkward (maybe it might be a good idea to set sel to NULL but to introduce a Client *revert which is set if a screen is unfocused, have to think about it further).
Anselm R. Garbe arg@suckless.org
Mon, 22 Jan 2007 10:35:58 +0100
b2330898
applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe arg@suckless.org
Mon, 22 Jan 2007 10:22:58 +0100
201c56f6
leavenotify also don't needs the check
Anselm R. Garbe arg@suckless.org
Fri, 19 Jan 2007 15:05:07 +0100
1e051d71
deciding for focus(NULL);
Anselm R. Garbe arg@suckless.org
Fri, 19 Jan 2007 15:01:51 +0100
ddc79603
replaced XSetBorder.../focus()
Anselm R. Garbe arg@suckless.org
Fri, 19 Jan 2007 14:38:09 +0100
dee5ea23
yet another multihead fix by Christof Musik
Anselm R. Garbe arg@suckless.org
Fri, 19 Jan 2007 14:36:25 +0100
b1c9f5f1
I prefer BORDERPX=1
Anselm R. Garbe arg@suckless.org
Fri, 19 Jan 2007 08:05:39 +0100
a542bdf6
personally I prefer 2px borders
Anselm R. Garbe arg@suckless.org
Thu, 18 Jan 2007 11:46:39 +0100
96e1b25c
applied a modified version of Christof Musik's multihead patch (though this is not sure if it works in all cases, have to wait for an ACK by Christof)
Anselm R. Garbe arg@suckless.org
Thu, 18 Jan 2007 11:11:40 +0100
caf5a162
moved BORDERPX to config.*.h
Anselm R. Garbe arg@suckless.org
Wed, 17 Jan 2007 12:36:29 +0100
936e11fd
Added tag 3.1 for changeset e1c8bef05e6e
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:41:56 +0100
9715ba82
removed erealloc (not used)
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:35:56 +0100
3c35b90d
removed unnecessary bx, by, bw variables
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:33:42 +0100
1d630306
s/444/555/g - enlightened selected background
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:28:17 +0100
6a5b4120
removed firefox rule from default.h
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:26:15 +0100
fbd31097
applied new default colors
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:25:10 +0100
3059c9c5
applied sanders patch of my config
Anselm R. Garbe arg@suckless.org
Tue, 16 Jan 2007 11:12:34 +0100
3b18f17d
Jukka, thanks for being faster than me!
Anselm R. Garbe arg@suckless.org
Mon, 15 Jan 2007 19:01:57 +0100
72faa191
changed restack, to fix undrawed tag indicators
Anselm R. Garbe arg@suckless.org
Mon, 15 Jan 2007 12:07:18 +0100
f8181f64
removed drawclient and drawall (they performed useless operations/consumed useless cpu cycles)
Anselm R. Garbe arg@suckless.org
Mon, 15 Jan 2007 12:04:25 +0100
0045ad87
implemented new color scheme accordingly to Sanders proposal
Anselm R. Garbe arg@suckless.org
Sun, 14 Jan 2007 22:37:34 +0100
ceea528e
removed mode label stuff
Anselm R. Garbe arg@suckless.org
Sun, 14 Jan 2007 22:32:26 +0100
6c5dc701
removed client title bar
Anselm R. Garbe arg@suckless.org
Sun, 14 Jan 2007 22:27:29 +0100
ae0b4fdd
added missing space
Anselm R. Garbe arg@suckless.org
Fri, 12 Jan 2007 21:56:01 +0100
b3cea4d3
nah the last change feels bad
Anselm R. Garbe arg@suckless.org
Fri, 12 Jan 2007 13:06:15 +0100
d2960813
changed incnmaster shortcuts in config.arg.h
Anselm R. Garbe arg@suckless.org
Fri, 12 Jan 2007 12:48:51 +0100
177ed7e5
Added tag 3.0 for changeset 76b58d21ea98
Anselm R. Garbe arg@suckless.org
Fri, 12 Jan 2007 12:37:12 +0100
f6791252
removing to allow nmaster=0
Anselm R. Garbe arg@suckless.org
Fri, 12 Jan 2007 12:15:06 +0100
58beead1
this looks better now ;)
Anselm R. Garbe arg@suckless.org
Thu, 11 Jan 2007 16:38:45 +0100
e1811c37
switching to arabic tags
Anselm R. Garbe arg@suckless.org
Thu, 11 Jan 2007 16:03:06 +0100
a24a6701
small fix of initial numlockmask value
Anselm R. Garbe arg@suckless.org
Thu, 11 Jan 2007 15:51:15 +0100
d108cfa7
allowing nmaster=0 (I think that's a straight idea)
Anselm R. Garbe arg@suckless.org
Thu, 11 Jan 2007 13:43:38 +0100
92cb5ebb
added Button{4,5} description to dwm.1
Anselm R. Garbe arg@suckless.org
Wed, 10 Jan 2007 12:56:49 +0100
65382657
added comment to %u in config.default.h, added Button{4.5} support on mode label
Anselm R. Garbe arg@suckless.org
Wed, 10 Jan 2007 12:54:23 +0100
5a5851ba
reorganized
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 17:36:56 +0100
1d4a24da
implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 17:33:24 +0100
a768ea93
Added tag 2.9 for changeset 3a5910fac3cc
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 13:01:37 +0100
c95fe6e2
I received Sander's complain just in time ;)
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 12:56:35 +0100
c7516818
changed status fg
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 12:43:10 +0100
3a96c9a8
fofofo
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 12:18:49 +0100
1617b955
extended default tags to 1-9
Anselm R. Garbe arg@suckless.org
Mon, 08 Jan 2007 12:12:02 +0100
726ae5bf
small grammar fix of dwm.1
Anselm R. Garbe arg@suckless.org
Sun, 07 Jan 2007 19:24:21 +0100
3e11b383
changed a term in dwm.1
Anselm R. Garbe arg@suckless.org
Sun, 07 Jan 2007 14:38:41 +0100
16ed8795
using shorter tags, using mon instead of cert
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 22:27:26 +0100
20d7b5d0
roman numerals suck badly, reverting
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 22:22:18 +0100
11a08b9c
switching to roman tags, I need more tags
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 22:13:44 +0100
c2b753d9
I inc/decrease on the fly, feels better
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 22:03:09 +0100
6c767072
allowing swap() for first master client
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 22:00:15 +0100
e9cfae7a
prevent pop() if first sel == nexttiled(clients)
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 21:56:57 +0100
7ac0de83
removed swap(), implemented pop for everything
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 21:55:43 +0100
0b7c0f10
preserving c1->snext and c2->snext in swap() as well.
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 21:52:17 +0100
51f6405b
fixing some minor issues
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 16:35:45 +0100
6096f8a1
removed the term clients from dwm.1
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 15:37:10 +0100
d939f301
adding some prevention that master clients get smaller than bh
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 15:16:39 +0100
8c4623da
changed shortcuts to M-i and M-d
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 15:11:01 +0100
0faaba04
allowing zoom within master area as well
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 15:08:25 +0100
ec7a5fff
changed plus key to MODKEY-Shift-plus (US-layout restrictions ;)
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 15:04:49 +0100
98afb7b9
I prefer two master windows by default
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 14:49:18 +0100
06bae9df
added MODKEY-{plus,minus} shortcuts (increasing/decreasing master clients)
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 14:48:16 +0100
0b80d184
experimental version which allows master clients being increased/decreased
Anselm R. Garbe arg@suckless.org
Fri, 05 Jan 2007 12:50:39 +0100
d7ec23a5
fixed comment of drawclient()
Anselm R. Garbe arg@suckless.org
Thu, 04 Jan 2007 16:45:28 +0100
2cf8ef95
switching bakc to my previous color favorit
Anselm R. Garbe arg@suckless.org
Thu, 04 Jan 2007 14:51:43 +0100
184471b4
renamed drawtitle into drawclient
Anselm R. Garbe arg@suckless.org
Thu, 04 Jan 2007 14:17:25 +0100
21898c60
using more thinkpad compliant colors
arg@mig29 unknown
Tue, 02 Jan 2007 16:29:01 +0100
6a9300e8
changed arg's color scheme
arg@mig29 unknown
Tue, 02 Jan 2007 16:25:01 +0100
ac24f132
corrections
arg@mig29 unknown
Tue, 02 Jan 2007 15:44:19 +0100
cb4aa5bc
next version will contain updated copyright notice
arg@mig29 unknown
Tue, 02 Jan 2007 15:37:58 +0100
beac539f
Added tag 2.8 for changeset 107719a9ce3bd0c79f9f1f626596eb338a276561
arg@mig29 unknown
Tue, 02 Jan 2007 14:53:02 +0100
b5d297f0
fixed cleanup, using clients instead of sel
arg@mig29 unknown
Tue, 02 Jan 2007 14:40:18 +0100
9056d7ea
changed comment of updatesizehints
arg@mig29 unknown
Tue, 02 Jan 2007 12:28:02 +0100
ebd17e48
renamed updatesize into updatesizehints (thx to Sander for this hint)
arg@mig29 unknown
Mon, 01 Jan 2007 19:10:31 +0100
7e59c892
small simplification to dotile() (thx to Ross for this hint)
arg@mig29 unknown
Wed, 20 Dec 2006 12:07:05 +0100
9e4e4d90
migrated arg's config.h to new dmenu command line options
arg@mig29 unknown
Tue, 19 Dec 2006 11:38:08 +0100
71fd06f8
added Solaris hints
arg@mig29 unknown
Mon, 18 Dec 2006 14:39:34 +0100
58e6866d
Added tag 2.7 for changeset 21951c0dfbae5af68ed77821a4d87253ee91803f
arg@mig29 unknown
Thu, 14 Dec 2006 08:50:49 +0100
c7da1241
applied Sanders patch
arg@mig29 unknown
Wed, 13 Dec 2006 14:15:38 +0100
21bd90d7
fixed man page, status bar displays EOF instead of "broken pipe"
arg@mig29 unknown
Wed, 13 Dec 2006 13:53:10 +0100
c8f96b5b
added the java odyssee to CAVEATS section
arg@mig29 unknown
Wed, 13 Dec 2006 13:42:17 +0100
ded60365
removed Client->grav
arg@mig29 unknown
Tue, 12 Dec 2006 19:14:38 +0100
629647df
removed gravitate for the moment
arg@mig29 unknown
Mon, 11 Dec 2006 16:45:02 +0100
4ca3d861
disabling configure() during resize
arg@mig29 unknown
Mon, 11 Dec 2006 09:42:16 +0100
069e7a6e
made gravitate effectless, waiting for complains ;)
arg@mig29 unknown
Mon, 11 Dec 2006 08:31:30 +0100
ac6e34ea
fixed diagnostic error message
arg@mig29 unknown
Fri, 08 Dec 2006 11:11:52 +0100
a308b750
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
arg@mig29 unknown
Fri, 08 Dec 2006 10:40:09 +0100
630e7ff2
we don't use the term clients anymore, windows is the better term
arg@mig29 unknown
Thu, 07 Dec 2006 16:38:57 +0100
3764ab47
Added tag 2.6 for changeset 5308dd22b6ee8e3218c81d9e7e4125f235bb5778
arg@mig29 unknown
Thu, 07 Dec 2006 14:55:29 +0100
a3319c6f
found compromise for fonts
arg@mig29 unknown
Thu, 07 Dec 2006 14:39:31 +0100
66c699a7
nah, people should define 'fixed' to be compatible with their locale
arg@mig29 unknown
Thu, 07 Dec 2006 12:03:15 +0100
aaf1e44d
using a UTF-8 capable fixed font
arg@mig29 unknown
Thu, 07 Dec 2006 11:55:04 +0100
1ef2307e
switching to uxterm again, I get kretze from this urxvt crap
arg@mig29 unknown
Thu, 07 Dec 2006 10:43:34 +0100
d42c3ba2
with this patch everything works fine for me
arg@mig29 unknown
Thu, 07 Dec 2006 10:02:46 +0100
4b061558
don't use Xlocale crap, let's use locale.h instead
arg@mig29 unknown
Thu, 07 Dec 2006 09:49:45 +0100
857d825e
using the portable Xmb+UTF-8 way of life, will see if this works well...
arg@mig29 unknown
Thu, 07 Dec 2006 09:47:55 +0100
6b345353
improved the memory leak prevention
arg@mig29 unknown
Wed, 06 Dec 2006 11:19:06 +0100
ab3b3a8f
making terminus more explicit a regular font (otherwise olique font might be used in some setups like mine).
arg@mig29 unknown
Tue, 05 Dec 2006 14:21:18 +0100
71b82fb1
also setting LC_CTYPE only
arg@mig29 unknown
Tue, 05 Dec 2006 13:31:29 +0100
9bd9ea42
enforcing using fontsets even if they are incomplete for some encodings
arg@mig29 unknown
Tue, 05 Dec 2006 10:30:31 +0100
99964398
Added tag 2.5.1 for changeset c7f84f23ec5aef29988dcdc4ec22a7352ee8f58e
arg@mig29 unknown
Mon, 04 Dec 2006 21:01:14 +0100
7009ebfa
hotfix of a serious crashing bug
arg@mig29 unknown
Mon, 04 Dec 2006 21:00:26 +0100
760e23dd
Added tag 2.5 for changeset dcbbfabc8ecc5f33a6cc950584de87da1a368045
arg@mig29 unknown
Mon, 04 Dec 2006 15:39:43 +0100
c53d9d51
applied Manuel's regex patch
arg@mig29 unknown
Sun, 03 Dec 2006 11:21:25 +0100
7739e6b4
made squares equally sized, and 1px bigger
arg@mig29 unknown
Fri, 01 Dec 2006 17:55:46 +0100
48818574
if client is focused, the emptysquare don't needs to be drawed
arg@mig29 unknown
Fri, 01 Dec 2006 17:51:05 +0100
c73d5cb7
and the winner is
arg@mig29 unknown
Fri, 01 Dec 2006 17:45:27 +0100
6458803d
sander1 proposal
arg@mig29 unknown
Fri, 01 Dec 2006 17:36:37 +0100
6e72d781
dood
arg@mig29 unknown
Fri, 01 Dec 2006 16:55:42 +0100
4e926a9e
darkening the fg colors somewhat
arg@mig29 unknown
Fri, 01 Dec 2006 15:50:22 +0100
4ba3cfae
less obtrusive indicator (only a top line)
arg@mig29 unknown
Fri, 01 Dec 2006 15:03:42 +0100
e655e8a7
final2 indicator
arg@mig29 unknown
Fri, 01 Dec 2006 12:52:16 +0100
c34e4e4b
removing the -1 on final indicators, looks cleaner
arg@mig29 unknown
Fri, 01 Dec 2006 12:39:13 +0100
a678ee63
final indicators
arg@mig29 unknown
Fri, 01 Dec 2006 12:25:23 +0100
49f0ee32
changed things like I described in last mail
arg@mig29 unknown
Fri, 01 Dec 2006 10:16:10 +0100
0c9d9a3d
improved tag indicator
arg@mig29 unknown
Fri, 01 Dec 2006 09:52:15 +0100
89e1acb0
removed viewall signature from dwm.h
arg@mig29 unknown
Thu, 30 Nov 2006 17:01:39 +0100
c2ed26b7
next version will be 2.5
arg@mig29 unknown
Thu, 30 Nov 2006 15:51:26 +0100
42fd392e
removed viewall(), replaced with view(-1); added tag(-1) to tag a client with all tags (new key combo MODKEY-Shift-0)
arg@mig29 unknown
Thu, 30 Nov 2006 15:27:43 +0100
e06447ee
Added tag 2.4 for changeset 32b246925086910d63147483160281a91a47479f
arg@mig29 unknown
Thu, 30 Nov 2006 09:19:52 +0100
683dabe5
extended dwm.1 with last change
arg@mig29 unknown
Tue, 28 Nov 2006 17:36:00 +0100
3aff9617
togglefloat should only work in dotile mode (thanks to Sander for this hint)
arg@mig29 unknown
Tue, 28 Nov 2006 17:35:31 +0100
0a915eba
applied Alex Elide's tricky patch, thanks!
arg@mig29 unknown
Mon, 27 Nov 2006 17:51:50 +0100
19dcbc57
returning to old Key struct
arg@mig29 unknown
Mon, 27 Nov 2006 17:49:58 +0100
d2a49529
applied Szabolcs Nagy's patch (thank you!)
arg@mig29 unknown
Mon, 27 Nov 2006 17:46:02 +0100
0c97b21b
applied patch by Jukka
arg@mig29 unknown
Mon, 27 Nov 2006 17:30:06 +0100
19390b1a
changing Key.func into Key.func[NFUNCS], this allows sequences execution of functions per keypress (avoids implementing useless masterfunctions which call atomic ones)
arg@mig29 unknown
Mon, 27 Nov 2006 13:21:38 +0100
8dc86051
added man page entry
arg@mig29 unknown
Mon, 27 Nov 2006 11:05:47 +0100
46d5f9d1
added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29 unknown
Mon, 27 Nov 2006 10:57:37 +0100
35e96b8d
applied Jukka's patch preventing some cornercases and making the EOF error message correct
arg@mig29 unknown
Mon, 27 Nov 2006 10:29:47 +0100
2210ea7e
applied yet another proposal of Manuel
arg@mig29 unknown
Sun, 26 Nov 2006 15:43:16 +0100
61a1910f
applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29 unknown
Sun, 26 Nov 2006 14:26:53 +0100
27ef7350
applied Jukka's stdinread patch
arg@mig29 unknown
Sun, 26 Nov 2006 13:31:36 +0100
2b35fb64
next version will be 2.4
arg@mig29 unknown
Sat, 25 Nov 2006 19:26:31 +0100
478f6f95
applied Manuels patch (thanks to Manuel!)
arg@mig29 unknown
Sat, 25 Nov 2006 19:26:16 +0100
44411d2d
small fix of man page
arg@mig29 unknown
Fri, 24 Nov 2006 17:02:41 +0100
a2175cf7
Added tag 2.3 for changeset 719b37b37b0df829d7cf017ac70e353088fe5849
arg@mig29 unknown
Fri, 24 Nov 2006 15:46:32 +0100
4606d218
using the term 'indicated' instead of 'higlighted'
arg@mig29 unknown
Thu, 23 Nov 2006 16:00:16 +0100
d37d0f24
updated man page with the bottom right corner indicator
arg@mig29 unknown
Thu, 23 Nov 2006 15:59:16 +0100
321e8d51
fififif
arg@mig29 unknown
Wed, 22 Nov 2006 16:17:50 +0100
78f4b517
added a similiar patch to Daves solution to indicate if there are clients with a specific tag
arg@mig29 unknown
Wed, 22 Nov 2006 14:57:09 +0100
7d168a26
returning to old bar colorization behavior, like sander proposed for consistency reasons
arg@mig29 unknown
Tue, 21 Nov 2006 15:03:08 +0100
931e712e
applied Gottox patches
arg@mig29 unknown
Tue, 21 Nov 2006 14:49:13 +0100
4ec04209
using iso10646 explicitely in arg's config.h
arg@mig29 unknown
Tue, 21 Nov 2006 12:17:47 +0100
82ddba88
Added tag 2.2 for changeset 7e92f58754ae6edb3225f26d754bd89c1ff458cf
arg@mig29 unknown
Tue, 21 Nov 2006 09:41:33 +0100
52a8cc8d
nah reverting to my prev style, that's really the best
arg@mig29 unknown
Sat, 18 Nov 2006 21:33:33 +0100
d175df8a
applying aluminium style for arg's config.h
arg@mig29 unknown
Sat, 18 Nov 2006 21:26:53 +0100
b003a35f
applied Gottox' windowarea patch
arg@mig29 unknown
Thu, 16 Nov 2006 14:40:57 +0100
df1a0f94
using a more blue-ish color...
arg@mig29 unknown
Wed, 08 Nov 2006 17:16:38 +0100
5b07b858
making the selected color more lightning
arg@mig29 unknown
Wed, 08 Nov 2006 17:10:51 +0100
f320cd20
next release will be 2.2
arg@mig29 unknown
Fri, 03 Nov 2006 09:22:40 +0100
f78c16f8
applied Jukkas patch
arg@mig29 unknown
Fri, 03 Nov 2006 08:29:39 +0100
0c5f47e7
Added tag 2.1 for changeset a2c465098a3b972bbed00feda9804b6aae1e9531
arg@mig29 unknown
Thu, 02 Nov 2006 10:18:22 +0100
4b5b3d90
renamed resizecol into resizemaster
arg@mig29 unknown
Tue, 31 Oct 2006 12:07:32 +0100
2cce4b95
applied Gottox patch to simplify the resizing of col, instead of resizing the current area, it only resizes the master area in the future (seems more predictable)
arg@mig29 unknown
Tue, 31 Oct 2006 12:06:38 +0100
8e6eb521
Added tag 2.0 for changeset 12deea36603da407e3f32640048846a3bd74a9ec
arg@mig29 unknown
Tue, 31 Oct 2006 09:02:42 +0100
04b633dd
make sure that changing sx has no impact on snapping
arg@mig29 unknown
Tue, 31 Oct 2006 09:02:16 +0100
b76561a2
in a 1920x1200 setup 40 pixels of snap value are much better than 20
arg@mig29 unknown
Mon, 30 Oct 2006 12:40:10 +0100
51c7589c
fixed stupid bug of snap-to-screen
arg@mig29 unknown
Mon, 30 Oct 2006 12:26:55 +0100
99785382
changing snap priority
arg@mig29 unknown
Mon, 30 Oct 2006 12:07:00 +0100
dc1690ce
removed useless abs() calls
arg@mig29 unknown
Mon, 30 Oct 2006 12:04:08 +0100
b6614261
added screen-border snapping in floating mode, feels quite well
arg@mig29 unknown
Mon, 30 Oct 2006 11:58:05 +0100
91e569ca
and another fix
arg@mig29 unknown
Fri, 27 Oct 2006 13:29:35 +0200
0f395c1b
applied sanders try2 patch
arg@mig29 unknown
Fri, 27 Oct 2006 13:28:26 +0200
2b13e746
applied sanders max size fix
arg@mig29 unknown
Fri, 27 Oct 2006 12:05:47 +0200
0982e474
stupid urxvt needs bg to highlight selections in a sane way, though that makes sense to some extend
arg@mig29 unknown
Fri, 27 Oct 2006 10:24:15 +0200
b93ebcf4
reverting to original
arg@mig29 unknown
Thu, 26 Oct 2006 15:41:40 +0200
a08d83ba
applied sander's config.*h nitpick patch
arg@mig29 unknown
Thu, 26 Oct 2006 15:29:20 +0200
2b7c275c
some other change
arg@mig29 unknown
Thu, 26 Oct 2006 15:26:17 +0200
040d0f48
apply small fix to prevent apps like mplayer wandering when toggling fullscreen
arg@mig29 unknown
Thu, 26 Oct 2006 15:05:45 +0200
724f35a6
forgot to use -tr, which actually prevents the ugly flicker (using xsetroot -solid black as root window pixmap to make this work nicely)
arg@mig29 unknown
Thu, 26 Oct 2006 12:22:26 +0200
6f3872ed
using MASTER 600 again, it is definately better, and using urxvtc for the moment (it doesn't flickers on refreshes, but this is not because of Marc Lehmann, it is because of the original rxvt code)
arg@mig29 unknown
Thu, 26 Oct 2006 12:13:41 +0200
87324e68
changing MASTER in config.arg.h from 600 to 550 per thousand
arg@mig29 unknown
Thu, 26 Oct 2006 11:21:45 +0200
c2b908f6
my new 1920x1200 Z61p arrived, now I can use terminus in a sane way...
arg@mig29 unknown
Thu, 26 Oct 2006 10:21:27 +0200
d7734f99
moved MOUSEMASK into event.c (not used in other places)
Anselm R. Garbe arg@10kloc.org
Mon, 16 Oct 2006 16:50:03 +0200
8b688906
now being at v2.0
Anselm R. Garbe arg@10kloc.org
Sat, 14 Oct 2006 18:21:39 +0200
b60406cb
using lsx instead of Jukka's shell construct
Anselm R. Garbe arg@10kloc.org
Fri, 13 Oct 2006 18:47:24 +0200
ce9a9934
hotfix
Anselm R. Garbe arg@10kloc.org
Fri, 06 Oct 2006 14:01:53 +0200
720b2abe
Added tag 1.9 for changeset a5567a0d30112822db2627a04a2e7aa3b6c38148
Anselm R. Garbe arg@10kloc.org
Fri, 06 Oct 2006 13:43:59 +0200
5983c00b
do* has no Arg arument anymore (never called directly)
Anselm R. Garbe arg@10kloc.org
Fri, 06 Oct 2006 13:06:37 +0200
6651dd7f
code polishing, removed unnecessary newlines
Anselm R. Garbe arg@10kloc.org
Fri, 06 Oct 2006 11:50:15 +0200
acdea319
yet another small fix and simplification of dotile
Anselm R. Garbe arg@10kloc.org
Fri, 06 Oct 2006 11:37:12 +0200
10885d34
removed the stack position stuff
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 19:27:28 +0200
1c1d09f3
small boundary check fix
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 18:23:28 +0200
0384faee
changing MASTER value from percent into per mill
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 18:18:47 +0200
6cca3999
Added tag 1.8 for changeset c71952fa3c7ca848ec38a6923b5c6d0e18fff431
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 19:00:58 +0200
69408d38
simplified dotile(), removed misleading line
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 13:47:30 +0200
4aea423f
final fix for man page
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 13:44:48 +0200
6fc8a630
keep master ratio on resizecol -> arrange
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 12:59:35 +0200
2583a7c0
yet another simplification of dotile()
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 12:18:04 +0200
0ef6e310
simplified dotile()
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 12:13:24 +0200
7c052b37
applied resizecol fix by Jukka
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 11:00:55 +0200
d9c475d7
Button3 click on mode label toggles stack position now
Anselm R. Garbe arg@10kloc.org
Thu, 05 Oct 2006 09:37:11 +0200
c8e57332
applied dave's highlight patch for big fonts
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 19:06:27 +0200
c0454599
using ff tiled again, seems to work perfectly with new bottom stack
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 18:40:32 +0200
e0f64e63
applied ality's hardcode-0 patches
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 18:21:02 +0200
dddd58a8
added symbols for different modes
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 18:08:20 +0200
010fd21b
removed useless updatemaster
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 17:25:49 +0200
1802fad2
documented the new behavior in man page
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 17:20:05 +0200
f833d109
fixed small offset issue
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 17:15:05 +0200
7225c999
fixed the z-layer issue described on mailinglist
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 17:12:57 +0200
36178933
removed the direction flipping
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 17:02:56 +0200
ad0da9a5
small fix of a corner case
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 16:54:15 +0200
66464681
small change
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 16:44:02 +0200
fee8df6c
added the new dotile as described on ml
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 16:22:20 +0200
8fa47ac6
prelim of dotile()
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 14:39:03 +0200
b427a2c6
I changed sanders patch to fix the ff issue to be simplier, though it needs testing if this really fixes the issue
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 12:56:01 +0200
14d05e7c
first step to a more flexible dotile() algorithm
Anselm R. Garbe arg@10kloc.org
Fri, 29 Sep 2006 12:38:27 +0200
a118a57f
renamed column into area
Anselm R. Garbe arg@10kloc.org
Thu, 28 Sep 2006 21:29:20 +0200
02cea3b4
small change to README
Anselm R. Garbe arg@10kloc.org
Thu, 28 Sep 2006 16:14:48 +0200
1c2d673d
applied Jukkas patch
Anselm R. Garbe arg@10kloc.org
Thu, 28 Sep 2006 14:03:39 +0200
c34df2c1
Added tag 1.7.1 for changeset d5ad819f2a66a40fa75dd2e44429f3bfc884d07b
Anselm R. Garbe arg@10kloc.org
Wed, 27 Sep 2006 17:21:25 +0200
6092aa97
fixing the settags issue, preparing 1.7.1
Anselm R. Garbe arg@10kloc.org
Wed, 27 Sep 2006 17:18:46 +0200
c9cc2b38
removed an unused var
arg@zarathustra unknown
Tue, 26 Sep 2006 17:42:14 +0200
b39d0c52
Added tag 1.7 for changeset 4dbdb61c8b8ce21dee5c7050a6b103855964ed20
arg@zarathustra unknown
Tue, 26 Sep 2006 17:39:30 +0200
e87bed6d
updated README
arg@mmvi unknown
Tue, 26 Sep 2006 14:32:02 +0200
4ee05b32
small change
arg@mmvi unknown
Tue, 26 Sep 2006 14:08:42 +0200
e81eb46a
added slight error check to getcolor
arg@mmvi unknown
Tue, 26 Sep 2006 13:49:16 +0200
f315832f
small fix
arg@mmvi unknown
Tue, 26 Sep 2006 13:30:30 +0200
97ced11e
changed order of colordefs in config.h's, changed config.arg.h to fit to new dmenu
arg@mmvi unknown
Tue, 26 Sep 2006 13:24:14 +0200
4d6c4d36
removed useless debug info
arg@mmvi unknown
Tue, 26 Sep 2006 08:17:35 +0200
b4d53bf1
added configure(), but this doesn't really fix those frking broken SDL apps
arg@mmvi unknown
Tue, 26 Sep 2006 07:40:19 +0200
67bc08d1
slight change of event handling order
arg@mmvi unknown
Mon, 25 Sep 2006 21:28:00 +0200
bcb07de7
simplified mouse resizals
arg@mmvi unknown
Mon, 25 Sep 2006 21:19:18 +0200
7d7cde0f
applied sanders jukka patch
arg@mmvi unknown
Mon, 25 Sep 2006 20:38:30 +0200
6b25d06d
applied Jukkas patch
arg@mmvi unknown
Mon, 25 Sep 2006 08:21:51 +0200
cff951c6
removed all dotile checks
arg@mmvi unknown
Fri, 22 Sep 2006 18:48:35 +0200
114cc3ec
applied Jukkas remark (dunno if this is correct though)
arg@mmvi unknown
Fri, 22 Sep 2006 16:35:49 +0200
3c4b7672
applied jukkas patch
arg@mmvi unknown
Fri, 22 Sep 2006 15:39:38 +0200
6de149eb
man page fix
arg@mmvi unknown
Fri, 22 Sep 2006 14:02:41 +0200
da909dd1
ismax toggling on mouse based action
arg@mmvi unknown
Fri, 22 Sep 2006 14:00:54 +0200
67986e81
hotfix
arg@mmvi unknown
Fri, 22 Sep 2006 13:58:21 +0200
346bdea9
small change to achieve Jukka's last proposal
arg@mmvi unknown
Fri, 22 Sep 2006 13:53:28 +0200
05c10c57
fixed issue pointed out by Jukka
arg@mmvi unknown
Fri, 22 Sep 2006 11:49:24 +0200
b2cb925d
patched resizemouse according to sanders remark
arg@mmvi unknown
Fri, 22 Sep 2006 11:24:01 +0200
9fb6502b
small man page fix
arg@mmvi unknown
Fri, 22 Sep 2006 10:01:51 +0200
9eb226ff
sander check this
arg@mmvi unknown
Fri, 22 Sep 2006 09:43:21 +0200
e34c4eaf
slight change to config.arg.h (I use ff floating)
arg@mmvi unknown
Fri, 22 Sep 2006 08:22:39 +0200
9e75bcfc
updated man page
arg@mmvi unknown
Fri, 22 Sep 2006 08:17:42 +0200
d800ec05
implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi unknown
Fri, 22 Sep 2006 07:37:56 +0200
bda53ac6
reviewed client.c
arg@mmvi unknown
Wed, 20 Sep 2006 09:53:21 +0200
42309325
reviewed util.c
arg@mmvi unknown
Wed, 20 Sep 2006 09:49:32 +0200
f17e898b
fixed a nuance in dwm.1
arg@mmvi unknown
Wed, 20 Sep 2006 09:45:39 +0200
886b2088
improved intro comment in dwm.h, updated config.mk
arg@mmvi unknown
Wed, 20 Sep 2006 09:40:35 +0200
551d6bb2
some simplifications to intro in dwm.h
arg@mmvi unknown
Tue, 19 Sep 2006 16:13:44 +0200
d504005e
Added tag 1.6 for changeset ad3fa2d185426c51fd5deceae809770363f8d33c
arg@mmvi unknown
Sat, 16 Sep 2006 11:21:01 +0200
2511b5c6
added visibility check to enternotify as well
arg@mmvi unknown
Fri, 15 Sep 2006 14:21:25 +0200
28aba061
offscreen client appearance fixes
arg@mmvi unknown
Fri, 15 Sep 2006 10:54:32 +0200
8e37c78c
focus() enforces visibility of a client if not NULL
arg@mmvi unknown
Fri, 15 Sep 2006 10:49:05 +0200
ca68975f
removed useless inclusion
Anselm R. Garbe arg@10kloc.org
Thu, 14 Sep 2006 11:07:44 +0200
529be52f
fixed executing of dmenu output to handle args correctly
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 19:09:04 +0200
ca65478c
removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 10:57:28 +0200
a1e9362d
some more simplifications of intro comment in dwm.h, this should suffice for comments in dwm
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 09:50:06 +0200
cbfc69e3
made introduction comment in dwm.h shorter
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 09:46:19 +0200
1d7674bb
applied Christof Musik's multihead patch for a pathologic cornercase
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 08:27:11 +0200
e6cc2239
added a general comment to dwm.h how dwm is basically organized
Anselm R. Garbe arg@10kloc.org
Tue, 12 Sep 2006 08:14:22 +0200
868159fd
some other simplifications
Anselm R. Garbe arg@10kloc.org
Mon, 11 Sep 2006 17:31:21 +0200
b597fa46
fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
Anselm R. Garbe arg@10kloc.org
Mon, 11 Sep 2006 11:28:28 +0200
d2d394ec
small change to comments, renamed two set* functions in client.c into update*
Anselm R. Garbe arg@10kloc.org
Mon, 11 Sep 2006 10:00:56 +0200
438beeab
small fix
Anselm R. Garbe arg@10kloc.org
Mon, 11 Sep 2006 08:58:58 +0200
281f0981
added some comments
Anselm R. Garbe arg@10kloc.org
Mon, 11 Sep 2006 07:40:41 +0200
6ff346be
Added tag 1.5 for changeset 728c9089b079721b43c3347124639a29baa22a97
Anselm R. Garbe arg@10kloc.org
Fri, 08 Sep 2006 08:32:08 +0200
0925dd58
applied sanders patch of not manipulating sel
Anselm R. Garbe arg@10kloc.org
Fri, 08 Sep 2006 08:19:54 +0200
6f20315d
really small changes to dwm.1
Anselm R. Garbe arg@10kloc.org
Fri, 08 Sep 2006 07:40:16 +0200
2e68f221
hotfix
Anselm R. Garbe arg@10kloc.org
Thu, 07 Sep 2006 18:13:19 +0200
8aa860d2
simplified unmanage
Anselm R. Garbe arg@10kloc.org
Thu, 07 Sep 2006 18:12:40 +0200
15abade2
using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe arg@10kloc.org
Thu, 07 Sep 2006 17:53:40 +0200
7ab8c872
made markups in dwm.1 more consistent
Anselm R. Garbe arg@10kloc.org
Thu, 07 Sep 2006 09:26:01 +0200
4ff8f716
small addition to dwm.1
Anselm R. Garbe arg@10kloc.org
Thu, 07 Sep 2006 07:53:29 +0200
d22abeee
this patch keeps track of global z-layer order of clients which are floating or if floating mode is enabled
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 17:31:52 +0200
a33150eb
no this is better
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 15:36:42 +0200
fd00b3a1
does this preserve z order for anthony?
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 15:30:28 +0200
e8389a4c
maybe this might work
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 13:56:46 +0200
6078d756
Added tag 1.4 for changeset 3cff9403766bf83a9fc2a0aef230115d68de2a8e
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 12:19:07 +0200
57c49fe8
prepared dwm-1.4 update
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 12:18:57 +0200
c60de1ac
drawstatus even if no client exists
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 12:10:43 +0200
69b738c0
sanders solution is convincing and elegant
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 11:54:16 +0200
da0b2a2f
seems to preserve floating client z-layer order (even with reorder() calls)
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 11:46:35 +0200
2378a558
Added tag 1.4 for changeset a6b8994af16491220db0199623bd57d061e06143
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 10:54:10 +0200
f18ed615
small fix
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 10:03:21 +0200
f6656fff
made args mode symbols the default ones (the default ones look too ugly)
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 09:23:34 +0200
aaad7bfd
moved transient_for tag inheritance to settags
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 09:21:17 +0200
0915da88
no, reodering floating clients definately breaks the manage() policy which attaches all clients zoomed (otherwise higher-weight clients couldn't be attached zoomed, which sucks)
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 09:13:31 +0200
0d0e8bde
no, ordering floating clients at the end seems better
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 19:26:34 +0200
838a1ff9
fix
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 18:43:15 +0200
e1315fd4
this makes sure the issue mentioned by sander
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 18:04:22 +0200
52a3ab10
fixing zoom
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 17:10:48 +0200
a82e7b76
fixing two off-by-ones
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 16:11:52 +0200
0ed0fa4d
ach ich will auch Alt-s
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 16:05:09 +0200
ec85fddb
applied checking existance of >2 tiles patch (proposed by sander) to zoom and resizecol
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 16:00:09 +0200
3a1343a2
renamed resizetile into resizecol
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:52:23 +0200
9066ee2e
well ok, added Mod-s to default bindings (however, I don't need it)
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:27:43 +0200
40bd21ce
s/growcol/resizetile/g
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:25:42 +0200
4633fbec
right, multihead issue is not involved with growcol
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:21:59 +0200
25060031
hotfix
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:20:29 +0200
c7ae6334
applied a fix related to Sanders remark to growcol
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:19:18 +0200
eac04882
sanders toggletag patch is much more elegant
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 09:37:45 +0200
6499fc4f
I really need column growing, now pushing upstream
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 09:02:37 +0200
04f27a54
don't access sel in restack without checking for NULL (multihead crashing bug)
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 08:37:34 +0200
1b3903d6
fixing c->weight handling
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 08:24:00 +0200
cc05093b
removed some useless tags
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 19:19:37 +0200
6436dd44
after 1.3
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:52:46 +0200
26c50c78
Added tag 1.3 for changeset f5f5cbf016a94b48a8fe9c47f0736e96d166d5d4
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:52:16 +0200
01d13b0c
retagged
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:52:12 +0200
f15f45a9
simplified manage
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:39:33 +0200
1b2e149c
removed html crap
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:37:31 +0200
6136640e
Added tag 1.3 for changeset dd44dc937e8b0a46abf1a15a333dba5304e4fe89
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:21:18 +0200
95d84238
hotfixing with sanders hint
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:21:15 +0200
de6411c3
Added tag 1.3 for changeset 6413ea66b1c2496cfc2173fe58df67cb965eb1da
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:18:01 +0200
e316cf53
fixing the issue that new clients appear lowered
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 17:02:13 +0200
c107db57
removed unused vars
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 12:23:41 +0200
d39d0005
reducing focus calls (sanders patch)
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 10:10:08 +0200
26157e69
applied Sanders max_and_focus.patch
Anselm R. Garbe arg@10kloc.org
Mon, 04 Sep 2006 08:55:49 +0200
6d22782e
simplified buttonpress
Anselm R. Garbe arg@10kloc.org
Fri, 01 Sep 2006 15:31:59 +0200
1836b674
applied sanders patch
Anselm R. Garbe arg@10kloc.org
Fri, 01 Sep 2006 10:32:50 +0200
924a0888
reorder was misssing in Ross version of viewall
Anselm R. Garbe arg@10kloc.org
Thu, 31 Aug 2006 18:08:28 +0200
bab575c8
changed shortcut into Mod1-0
Anselm R. Garbe arg@10kloc.org
Thu, 31 Aug 2006 18:04:34 +0200
daae3bba
added viewall to mainstream (only Ross Mohns version, not the toggle)
Anselm R. Garbe arg@10kloc.org
Thu, 31 Aug 2006 18:02:38 +0200
05fbbbd8
implemented Button2 press on tags for toggletag on the focused client
Anselm R. Garbe arg@10kloc.org
Thu, 31 Aug 2006 17:49:04 +0200
4c368bcd
applied sanders patch to remove unnecessary commit()
Anselm R. Garbe arg@10kloc.org
Thu, 31 Aug 2006 08:48:04 +0200
9927b9e6
small fix in config.arg.h
Anselm R. Garbe arg@10kloc.org
Wed, 30 Aug 2006 13:00:30 +0200
1b492dff
Added tag 1.2 for changeset e3179ce2b90451d2807cd53b589d768412b8666b
Anselm R. Garbe arg@10kloc.org
Wed, 30 Aug 2006 12:39:35 +0200
140be1b4
prepared 1.2
Anselm R. Garbe arg@10kloc.org
Wed, 30 Aug 2006 12:39:27 +0200
79259acc
now using Salmi's menu command
Anselm R. Garbe arg@10kloc.org
Wed, 30 Aug 2006 11:21:56 +0200
5a3bea2d
removed a warning reported by Jukka
Anselm R. Garbe arg@10kloc.org
Wed, 30 Aug 2006 11:15:58 +0200
30d92859
simplified configurerequest
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 19:24:28 +0200
70a3e622
now dwm enforces max screen size also in tiled mode on non-floating clients which are maximized
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 18:05:02 +0200
6828fba7
fixed
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 17:33:27 +0200
aa1bda81
configurenotify remembers max geom now, and restores this if necessary, however it accepts to touch the max size on configurerequest, this shouldn't break fillscreen apps (tested with mplayer)
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 17:31:55 +0200
157ea539
applied patch similiar proposed by dave tweed
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 17:11:37 +0200
c3c94c0e
improved selection policy
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 15:28:29 +0200
9d739090
still something wrong with reorder()
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 13:40:09 +0200
016c5419
this algorithm seems to keep order for any scenario
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 09:57:57 +0200
5056bb95
fix client position in list also on tag and toggletag
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 09:25:14 +0200
8a6679b3
added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe arg@10kloc.org
Tue, 29 Aug 2006 09:23:44 +0200
7b6d5ff2
removed crappy variables
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 14:32:51 +0200
84685091
changed config.arg.h - I really need the 4th tag
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 12:27:00 +0200
4e6c513a
updated html page
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 10:21:40 +0200
db9cda6a
Added tag 1.1 for changeset 44a55e6e46bf6c231780b09d919977d6f01083de
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 10:19:55 +0200
a50b15a9
added a comment to spawn
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 08:17:27 +0200
0a25fe91
applied sanders focus_ patches
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 08:06:50 +0200
2dd5212a
applied sanders somepatches.patch
Anselm R. Garbe arg@10kloc.org
Mon, 28 Aug 2006 08:02:29 +0200
00e95e1f
oh frking dear big font...
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 18:14:55 +0200
0a075913
term enlightened
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 18:05:18 +0200
5cf362c7
switching to darker colorscheme with larger font
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 18:03:56 +0200
413be111
patched arg.h
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 17:42:58 +0200
8233dc85
new stuff
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 17:34:03 +0200
afa8b3bc
switching to dark colors again
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 17:31:57 +0200
c518345f
updated man page of dwm
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 16:21:45 +0200
afe6ac99
changed order of options
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 16:15:13 +0200
e995c1b5
trying a different configuration
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:48:44 +0200
e3692929
removed small 1px gap, somehow without it things feel better
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:37:00 +0200
03128f78
oops
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:24:18 +0200
7d4a5e65
fixed typo
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:21:49 +0200
41ba7a79
s/TILED/TILE/g
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:16:20 +0200
aa471f2d
removed a bunch of lines, made mode symbols configurable
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:12:32 +0200
d37dfa1b
changed symbols for float/tiled mode, added mouse-driven mode toggle to buttonpress()
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 15:06:38 +0200
9f35cc52
small fix to separate client title from right-most tag
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 14:46:01 +0200
f1fe19bc
restored config.arg.h
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 13:02:07 +0200
b55bd709
new color stuff/new rendering stuff
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 12:59:45 +0200
98336103
back to 3 colors
Anselm R. Garbe arg@10kloc.org
Fri, 25 Aug 2006 07:54:49 +0200
de7fc001
fixed
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 12:07:10 +0200
2e0c767d
3->4 colors
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 12:04:56 +0200
a5379e90
Added tag 1.0 for changeset bbc98e77ae89a7c9232a5be0835f60ea00d8036e
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 10:28:50 +0200
a039d51d
prepared dwm-1.0
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 10:25:05 +0200
60b3dcec
yet another fix
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 10:20:00 +0200
c2ac851b
small man page fix
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 10:18:42 +0200
c976bc6c
found less intrusive way
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 09:41:41 +0200
2e834e94
changing tag indicator through underline
Anselm R. Garbe arg@10kloc.org
Thu, 24 Aug 2006 09:25:10 +0200
77e5f316
black on light is really better, I notice this after all
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 19:05:03 +0200
7e597ae2
updated man page
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 18:50:46 +0200
c39df91a
applied tag drawing change to man page
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 14:40:44 +0200
af1158d1
implemented right tag drawing in the status bar and titlebars
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 14:38:25 +0200
b739721d
removed a blank line
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 13:04:43 +0200
7711ab67
eliminated sentinel warning
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 12:28:39 +0200
d370c32f
small fix of man page
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 12:10:55 +0200
d6a6eca7
implemented class:inst:title matching
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 12:08:37 +0200
39ffc186
applied zero_to_five patch
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 12:03:25 +0200
3e972ec8
tags appear in the left again
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 11:33:50 +0200
b5159dfd
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 10:21:57 +0200
07c26598
updated man page
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 19:56:29 +0200
dc83b9e9
titlebars contain tags in the right now
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 19:55:20 +0200
8b4bc827
fixed default key bindings (indexes of tags were screwed up)
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 18:08:25 +0200
0ff80653
rearranged getproto
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 17:40:21 +0200
352e1b4c
removed winprop (merged into getproto)
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 17:38:59 +0200
aa137270
separated several functions into view.c
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 16:50:21 +0200
59502861
removed DEFTAG
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 16:42:29 +0200
6a3ae5e2
removed badmalloc (thx for the pointer to Uriel)
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 16:06:11 +0200
8c334ee0
rxvt is quite slow under OpenBSD
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 10:06:11 +0200
f60fe2a4
font fix
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 10:01:32 +0200
b112257b
slight change of my config.h
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 09:57:32 +0200
eb88adcd
fixed
Anselm R. Garbe arg@10kloc.org
Tue, 22 Aug 2006 09:49:48 +0200
950a1ab5
windows which have set transient_for hint inherit the transient_for window tags now
arg@localhost.10kloc.org unknown
Mon, 21 Aug 2006 17:35:37 +0200
1b9fe550
after switching to OpenBSD again, I switched back to a saner color scheme
arg@localhost.10kloc.org unknown
Mon, 21 Aug 2006 17:41:09 +0200
2272df9d
applied Sanders focus_* patches, removed the unnecessary clean-prefix from the new function names
Anselm R.Garbe arg@10ksloc.org
Mon, 21 Aug 2006 09:03:14 +0200
08d85d6d
small renamings of two static functions
Anselm R.Garbe arg@10ksloc.org
Mon, 21 Aug 2006 07:33:18 +0200
b4398920
small changes to dwm.1, rearranged order within main event loop
Anselm R.Garbe arg@10ksloc.org
Mon, 21 Aug 2006 07:31:15 +0200
2eebebf2
applied Sanders patch
Anselm R.Garbe arg@10ksloc.org
Fri, 18 Aug 2006 13:40:34 +0200
8c1fffe1
made a new client position strategy similiar to that one proposed by Sander, but which takes top bar into account
Anselm R.Garbe arg@10ksloc.org
Fri, 18 Aug 2006 08:39:33 +0200
5e9acbc9
fixed a bug reported by sander
Anselm R.Garbe arg@10ksloc.org
Thu, 17 Aug 2006 10:06:36 +0200
a420ceab
applied the shorter xprop command
Anselm R.Garbe arg@10ksloc.org
Thu, 17 Aug 2006 09:44:17 +0200
0e1c649d
centering apps only if transient_for is not(!) set
Anselm R.Garbe arg@10ksloc.org
Thu, 17 Aug 2006 09:37:43 +0200
67c2124f
fixed issue Sander reported
Anselm R.Garbe arg@10ksloc.org
Thu, 17 Aug 2006 09:35:44 +0200
a635743c
corrected order of cleanup code 
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 19:25:29 +0200
b5c2412d
condition was insufficient
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 17:58:18 +0200
ad2e77d6
fixed issue reported by sander
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 17:56:04 +0200
a20b10d0
added general centralization rule for new clients (works around various borken apps)
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 15:57:36 +0200
4cc05519
removed leading ;
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 15:31:24 +0200
56130c36
added sample command to config.default.h to highlight how to query class:instance info with a one-liner of shell commands
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 15:00:14 +0200
14f73803
applied another config.mk patch made by sander
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 12:36:32 +0200
727449d1
we close stdin as well
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 09:31:41 +0200
80bf2aa5
simplified sort | uniq into sort -u (on my boxes all sort support -u)
Anselm R.Garbe arg@10ksloc.org
Wed, 16 Aug 2006 09:05:58 +0200
b9cd0c43
fixing small bug in config.mk
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 16:54:54 +0200
f77a8713
adding forgetten whitespace
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 10:45:14 +0200
65dfe8fd
added gmane archive to dwm.html
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 10:44:15 +0200
e3bb595d
Added tag 0.9 for changeset fae61afa861755636c4a1070694209ace8efbb6c
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 10:25:30 +0200
a1682b89
prepared dwm-0.9
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 10:11:29 +0200
24d91e3b
extended cleanup
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 09:37:12 +0200
ce04a665
applied Sanders changes to config.arg.h
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 08:38:19 +0200
df74b26e
applied jk_to_tab patch
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 08:25:11 +0200
b6ad663f
changed main event loop
Anselm R.Garbe arg@10ksloc.org
Tue, 15 Aug 2006 07:31:42 +0200
ee31e38d
removed NUMLOCKMASK, added dynamically calculated numlockmask instead
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 19:18:02 +0200
44233464
added Sander to LICENSE (since he has contributed/revised big portions)
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 18:47:13 +0200
dfa5ea63
applied viewsel.patch
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 18:46:07 +0200
3e06edeb
applied sanders man page patch, removed button2 from bar click
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 18:14:08 +0200
78b050c1
applied sanders tag()/toggletag() fixes
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 17:50:48 +0200
4ad20ffc
fixed
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 17:48:54 +0200
57e6e3bb
added missing arrange
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 17:14:22 +0200
19da197f
changed replacetag into toggletag
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:59:18 +0200
666fae97
added some flicker prevention
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:37:55 +0200
823fb111
remove unnecessary XSync
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:26:06 +0200
db1d62e1
changed order of selecting input at root window
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:21:16 +0200
d26ffc7f
removed finished message
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:11:54 +0200
0f3acce0
added mappingnotify event for kb refreshes
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 16:08:52 +0200
9eef9f7b
removed unneecessary crap
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 15:43:04 +0200
aff4c787
applied the saner patch (removed the pathetic one)
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 15:33:23 +0200
fe3dfbbe
pplied Sanders appendtag patch
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 15:31:58 +0200
2ffdc193
some other small fixes
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 15:11:02 +0200
0fe52c63
removed ungrabkeys again (because of sander's mail)
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 11:38:43 +0200
28a52197
fixed string cutting
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 10:58:03 +0200
2c0d1cc8
fixed a core dump
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 10:49:22 +0200
375a251d
implemented ungrabkeys() which is called in cleanup()
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 10:24:38 +0200
d4b7a9a3
implemented restack behavior (floats are on top in tiled mode)
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 10:18:24 +0200
4d67199a
fixed string cutting in draw.c
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 08:52:15 +0200
95766d62
applied Sanders LD and resize patches
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 08:43:19 +0200
4cb78a17
removed viewnext/viewprev
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 08:38:26 +0200
2c66b422
supplying NULL args in select
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 07:40:20 +0200
e571de83
reducing ConnectionNumber calls to a bare minimum
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 07:23:46 +0200
4bb89e2c
updated man page, added CAVEATS section
Anselm R.Garbe arg@10ksloc.org
Sun, 13 Aug 2006 18:04:42 +0200
349cadac
made shortcuts like proposed by Sander, renamed viewextend to toggleview (more clear)
Anselm R.Garbe arg@10ksloc.org
Sun, 13 Aug 2006 17:58:06 +0200
292ccc4c
implemented viewextend and added M-S-C-n shortcuts for extending the current view... updated man page (works great!) nice feature
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 19:26:12 +0200
d7413ffd
implement multi-tag selection through button3 click on the specific tag
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 18:37:41 +0200
50729a2e
after some days of experimenting with grey background, I finally give up and switch to white on black ;)
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 18:11:39 +0200
a3e3f0b9
applied Sanders fixes to dwm.1
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 17:12:48 +0200
45aea233
fixed dwm.1, added Mod1-Shift-c (was missing for an odd reason)
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 12:32:34 +0200
975b459c
simplified drawtext
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 11:52:55 +0200
2b35faee
updated dwm(1)
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 10:54:29 +0200
84818bdb
upgraded version info
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 10:28:51 +0200
895902b5
applied Sander's patch as well
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 10:05:53 +0200
7d4184dc
realized that client focussing through the bar is pretty useless, better is sloppy view focussing for B1/B3 as well instead
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 10:00:47 +0200
8278f0a6
implemented focusprev on button1 press in the bar, and focusnext on button3 press in the bar
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 09:16:40 +0200
d3969634
simplified unmanage
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 08:47:55 +0200
735ca9cc
removed the if(clients) check from popping code
Anselm R.Garbe arg@10ksloc.org
Fri, 11 Aug 2006 08:34:42 +0200
4ee661d9
added dwm favicon
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 18:44:19 +0200
9fce8215
applied Sanders zoom_update patch
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 17:48:50 +0200
6521c2dd
respecting inc hints in floating mode on togglemax
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 17:33:11 +0200
9ee9ce7e
reverting last patch, that sucks, I don't care about retarded apps like gvim
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 16:37:13 +0200
9d39da64
togglemax repects inc-hints (this way gvim can be toggle'maxed as well)
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 16:35:36 +0200
0228dcd5
applied grammar correction by ILF
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 15:35:02 +0200
3d35ea99
Added tag 0.8 for changeset cd15de32e173f8ce97bfe1c9b6607937b59056b4
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 15:19:31 +0200
0680c76a
prepared 0.8
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 15:19:25 +0200
c3e5f5cc
updated html
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 13:30:39 +0200
1c620d27
fixed the issue reported by sander (gaps at left columns button due to round-offs)
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 12:33:44 +0200
fde45ebe
applied sumik's multihead patch
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 11:26:32 +0200
4bd0d33f
applied sander's patch
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 11:19:25 +0200
00255728
readded border color, this sucks least
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 11:12:15 +0200
4b0328f2
drawing border with fg color
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 11:07:27 +0200
30561a01
removed unnecessary border color
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 10:27:08 +0200
a4c4998c
swapping my default colors (bg with fg)
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 10:22:15 +0200
8e053b64
made terminals darker, that is better indeed
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 10:20:26 +0200
b79b5fac
disallow zoom on maximized clients
Anselm R.Garbe arg@10ksloc.org
Thu, 10 Aug 2006 10:16:12 +0200
c53f0fca
added zoom on Mod1-Button1 on managed clients only (there is no moving possible)
Anselm R.Garbe arg@10ksloc.org
Wed, 09 Aug 2006 18:37:33 +0200
c225e1af
removed NET_ACTIVE_WINDOW handling
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 18:12:18 +0200
92e55c7c
implemented NET_ACTIVE_WINDOW support
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 17:08:45 +0200
c86f1316
fixed typo
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 12:58:05 +0200
e943234d
it always takes a while until one sticks to a colorscheme, but this one feels well
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 12:50:11 +0200
9fc24e37
default colors are best
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 12:47:45 +0200
cac467d5
without borders it looks cleaner
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 11:47:29 +0200
04f17d26
red is easier to my eyes with ffffaa bg
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 11:18:05 +0200
dff15a02
using a better colorscheme (ffffaa is the best background for black)
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 11:06:56 +0200
42277b11
applied Sanders tiny patches
Anselm R.Garbe arg@10ksloc.org
Tue, 08 Aug 2006 09:30:45 +0200
095f9e14
removed some "
arg@10ksloc.org unknown
Mon, 07 Aug 2006 17:38:14 +0200
9fbb2ebb
I really only need 3 tags
arg@10ksloc.org unknown
Mon, 07 Aug 2006 14:12:28 +0200
dbcf87ce
added a trailing '.' to shortcut descriptions in dwm(1)
arg@10ksloc.org unknown
Mon, 07 Aug 2006 14:10:22 +0200
4250c26e
changed signature of drawtext
arg@10ksloc.org unknown
Mon, 07 Aug 2006 13:54:59 +0200
e48de305
applied grabbing-- and shell_minimal
arg@10ksloc.org unknown
Mon, 07 Aug 2006 13:40:31 +0200
1f0060ca
updated screenshot section
arg@10ksloc.org unknown
Mon, 07 Aug 2006 12:26:28 +0200
c732cc90
changed font size, I'm not blind...
arg@10ksloc.org unknown
Mon, 07 Aug 2006 12:21:17 +0200
4e2c5b5f
small fix of a comment
arg@10ksloc.org unknown
Mon, 07 Aug 2006 12:12:56 +0200
d9386a0c
typo fix
arg@10ksloc.org unknown
Mon, 07 Aug 2006 11:58:46 +0200
66e16c92
applied Sanders man page/Makefile patch
arg@10ksloc.org unknown
Mon, 07 Aug 2006 11:57:05 +0200
6a8e176d
settle with grey
arg@10ksloc.org unknown
Mon, 07 Aug 2006 11:10:19 +0200
632c7f34
next version is 0.8
arg@10ksloc.org unknown
Mon, 07 Aug 2006 10:32:36 +0200
045f1840
made my colors tasting better with the background
arg@10ksloc.org unknown
Mon, 07 Aug 2006 10:28:21 +0200
45d16d09
status box should have a border in my eyes
arg@10ksloc.org unknown
Mon, 07 Aug 2006 09:47:13 +0200
525c5ff4
next attempt for w on black switch
arg@10ksloc.org unknown
Mon, 07 Aug 2006 09:41:43 +0200
5952157c
Added tag 0.7 for changeset 3fb41412e2492f66476d92ce8f007a8b48fb1d2a
arg@10ksloc.org unknown
Mon, 07 Aug 2006 08:55:39 +0200
f777d218
prepared dwm.html
arg@10ksloc.org unknown
Mon, 07 Aug 2006 08:51:43 +0200
82064af2
added stripping to dwm target in Makefile
arg@10ksloc.org unknown
Mon, 07 Aug 2006 08:46:11 +0200
d54444cf
changed getproto, maybe that might fix the killclient issue reported on the list
arg@10ksloc.org unknown
Mon, 07 Aug 2006 08:19:58 +0200
525ef3c1
applied endless loop prevention on zoom()
arg@10ksloc.org unknown
Mon, 07 Aug 2006 08:05:04 +0200
5ef6ef1b
updated man page
arg@10ksloc.org unknown
Mon, 07 Aug 2006 07:36:36 +0200
f4208e7c
small fix of the last commit
arg@10ksloc.org unknown
Sat, 05 Aug 2006 14:57:26 +0200
ecc95c90
using -Os again, zoom is ignored in floating mode or on floating clients
arg@10ksloc.org unknown
Sat, 05 Aug 2006 14:56:32 +0200
a207949b
mouse grab needs also to grab for combinations of numlock/lockmask
arg@10ksloc.org unknown
Sat, 05 Aug 2006 14:02:25 +0200
86d12249
slight fix
arg@10ksloc.org unknown
Sat, 05 Aug 2006 13:10:09 +0200
b098c94e
small performance tweak ;)
arg@10ksloc.org unknown
Fri, 04 Aug 2006 18:34:40 +0200
6a39a496
fixed xterm font change (all other related apps should work fine with this fix as well)
arg@10ksloc.org unknown
Fri, 04 Aug 2006 18:25:40 +0200
3d73084b
fixed view-change bug reported on the list
arg@10ksloc.org unknown
Fri, 04 Aug 2006 18:17:02 +0200
12b1d439
no need for -g anymore, regexp matching works now
arg@10ksloc.org unknown
Fri, 04 Aug 2006 17:04:50 +0200
1076161b
fixed dmenu link (thx to deifl)
arg@10ksloc.org unknown
Fri, 04 Aug 2006 15:47:50 +0200
e21d93b7
switched to regexp matching for Rules
arg@10ksloc.org unknown
Fri, 04 Aug 2006 14:40:32 +0200
f504aea1
fixed a bug in dmenu call
arg@10ksloc.org unknown
Fri, 04 Aug 2006 13:42:40 +0200
9955ddc9
using execl now, argv changed, using cmd and const char defs directly in the KEYS struct
arg@10ksloc.org unknown
Fri, 04 Aug 2006 12:00:55 +0200
0dfe729f
added dmenu to dwm.html
arg@10ksloc.org unknown
Fri, 04 Aug 2006 10:36:22 +0200
8f698bd4
small stylistic fix
arg@10ksloc.org unknown
Fri, 04 Aug 2006 10:27:16 +0200
99b126d0
removed CONFIG
arg@10ksloc.org unknown
Thu, 03 Aug 2006 17:08:43 +0200
a2d56f6d
make config.h not a time dependence
arg@10ksloc.org unknown
Thu, 03 Aug 2006 15:36:13 +0200
db876f9f
removed rm config.h from clean
arg@10ksloc.org unknown
Thu, 03 Aug 2006 15:29:28 +0200
05a618b0
added gmake compliance
arg@10ksloc.org unknown
Thu, 03 Aug 2006 15:21:08 +0200
72608f0d
s/tag2/two/g
arg@10ksloc.org unknown
Thu, 03 Aug 2006 15:09:52 +0200
bba044de
applied Jukka's diff
arg@10ksloc.org unknown
Thu, 03 Aug 2006 15:05:34 +0200
4d55eee7
applied Sanders Makefile patch
arg@10ksloc.org unknown
Thu, 03 Aug 2006 13:50:37 +0200
d41b232b
stylistic chnage
arg@10ksloc.org unknown
Thu, 03 Aug 2006 12:21:00 +0200
b3557557
removed TLast tag enum, now tags is simple defined as char *[] array, the rest is calculated correctly, rules take an int array for the tags
arg@10ksloc.org unknown
Thu, 03 Aug 2006 12:12:26 +0200
666b4563
hotfix of settags
arg@10ksloc.org unknown
Thu, 03 Aug 2006 11:38:26 +0200
7315bb08
using SRC instead of *.c
arg@10ksloc.org unknown
Thu, 03 Aug 2006 11:27:29 +0200
f80688f1
changed the files included in make dist
arg@10ksloc.org unknown
Thu, 03 Aug 2006 10:59:20 +0200
dc5c070c
applied Sanders doc changes, added a PHONY line and changed the output of config.h creation somewhat
arg@10ksloc.org unknown
Thu, 03 Aug 2006 10:58:29 +0200
8cc7f3ba
changed Client->tags and Rule->tags to be Bool (I'll also try to remove the TLast enum)
arg@10ksloc.org unknown
Thu, 03 Aug 2006 10:55:07 +0200
5d3fd370
implemented the idea presented by Sander for dwm target
arg@10ksloc.org unknown
Wed, 02 Aug 2006 17:49:21 +0200
1bf0c4a8
changing MASTERW value from 52 to 60 (in both, default and arg), I feel this is better now
arg@10ksloc.org unknown
Wed, 02 Aug 2006 17:19:22 +0200
863656d2
fixed a type in README, and patched config.mk
arg@10ksloc.org unknown
Wed, 02 Aug 2006 17:12:00 +0200
f1a34ae1
updated dwm.html
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:54:58 +0200
3000cad5
Added tag 0.6 for changeset c11f86db4550cac5d0a648a3fe4d6d3b9a4fcf7e
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:52:21 +0200
0f8249f2
removed config.h (stupid hg)
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:52:02 +0200
b5157652
removed the CONFIG variable from config.mk, renamed config.h into config.default.h, after first clone/extract one needs to copy config.default.h to config.h, that is easier than always heavy typing make CONFIG=blafasel
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:46:59 +0200
85e6d599
added Acroread.* and MPlayer.* to config.arg.h rules
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:38:21 +0200
95e8d12b
made fullscreen apps working fine in floating mode (there is no sane way to make them work in tiled mode, thus I switch to floating mode if I run such kind of app), also fixed the xterm issue reported by Sander
arg@10ksloc.org unknown
Wed, 02 Aug 2006 16:32:05 +0200
a55f0e12
new stuff
arg@10ksloc.org unknown
Wed, 02 Aug 2006 13:05:04 +0200
0cf3ba0e
dwm is now exit, if stdin is closed due broken pipe
arg@10ksloc.org unknown
Wed, 02 Aug 2006 12:33:24 +0200
1d852259
implemented focus on enterwindow on titlebars
arg@10ksloc.org unknown
Wed, 02 Aug 2006 11:28:27 +0200
3af64340
applied Sanders patches (numlock2)
arg@10ksloc.org unknown
Wed, 02 Aug 2006 11:13:32 +0200
57871415
reverting to old resize policy
arg@10ksloc.org unknown
Wed, 02 Aug 2006 10:48:58 +0200
52021851
new resize stuff (using XConfigureWindow instead of XSendEvent)
arg@10ksloc.org unknown
Wed, 02 Aug 2006 10:43:21 +0200
080a38d6
renamed WM_PROTOCOL_DELWIN into PROTODELWIN
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:44:23 +0200
ab7a11c0
renamed ARRANGE into DEFMODE
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:39:20 +0200
d8675f6f
small fixes to dwm.html
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:35:54 +0200
eff4478c
simplified README
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:29:25 +0200
81683351
removed 1 missing LOC
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:20:29 +0200
b38905b0
removed 5LOC
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:20:03 +0200
d9a6a3b5
removed artefacts of single-linked list (thanx to Jukka, I must have been mad)
arg@10ksloc.org unknown
Tue, 01 Aug 2006 16:14:17 +0200
7c2e3bb6
cleaned config.*h to prevent some confusion
arg@10ksloc.org unknown
Tue, 01 Aug 2006 15:29:37 +0200
b01a51a8
saved 2LOC
arg@10ksloc.org unknown
Tue, 01 Aug 2006 15:16:29 +0200
77f8c075
uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org unknown
Tue, 01 Aug 2006 14:46:01 +0200
33b4821c
fixed config.h files
arg@10ksloc.org unknown
Tue, 01 Aug 2006 14:03:29 +0200
a73a8828
centralized/externalized configuration to config.h
arg@10ksloc.org unknown
Tue, 01 Aug 2006 13:59:13 +0200
57416bee
applied Cedric's NumLock patch
arg@10ksloc.org unknown
Tue, 01 Aug 2006 12:41:38 +0200
1b63f832
applied Jukkas prev/next patch with XK_{h,l}
arg@10ksloc.org unknown
Tue, 01 Aug 2006 12:39:14 +0200
7b5638f6
applied Sanders patches
arg@10ksloc.org unknown
Tue, 01 Aug 2006 12:32:33 +0200
937cabfa
committed a patch which fixes the hints of Jukka
arg@10ksloc.org unknown
Tue, 01 Aug 2006 11:49:19 +0200
deba5069
updated html
arg@10ksloc.org unknown
Fri, 21 Jul 2006 21:15:39 +0200
956113b2
Added tag 0.5 for changeset 22213b9a2114167ee8ba019a012e27da0422a61a
arg@10ksloc.org unknown
Fri, 21 Jul 2006 21:15:11 +0200
db98a7d6
prepared 0.5
arg@10ksloc.org unknown
Fri, 21 Jul 2006 21:15:08 +0200
0464e422
some cleanups/fixes inspired by Jukka Salmi's feedback
arg@10ksloc.org unknown
Fri, 21 Jul 2006 18:34:10 +0200
4970ef93
simplified main.c, switching back to single urxvt usage
arg@10ksloc.org unknown
Fri, 21 Jul 2006 14:11:38 +0200
f85b1638
s/sleep 5/sleep 2/
arg@10ksloc.org unknown
Fri, 21 Jul 2006 11:54:14 +0200
2b66f7af
changed the status info README hint (more simple now, no extra script necessary)
arg@10ksloc.org unknown
Fri, 21 Jul 2006 11:48:28 +0200
67b3083d
s/0.5/0.6/ - my steps are wider than the reality
arg@10ksloc.org unknown
Fri, 21 Jul 2006 10:18:12 +0200
0c7bcc24
applied sanders maxfix patch
arg@10ksloc.org unknown
Fri, 21 Jul 2006 10:07:41 +0200
98c6a92e
added a note how to achieve status info in the bar
arg@10ksloc.org unknown
Fri, 21 Jul 2006 09:59:11 +0200
ba59bc8b
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org unknown
Fri, 21 Jul 2006 09:39:44 +0200
cd8d8e12
sanitization of several clunky stuff, removed heretag (rarely of use), simplified pop(), changed shortcuts to always contain MODKEY
arg@10ksloc.org unknown
Fri, 21 Jul 2006 07:37:52 +0200
04eb016e
applied sanders no_sizehints for tiled mode patch (thx!)
arg@10ksloc.org unknown
Thu, 20 Jul 2006 19:09:11 +0200
0a434209
serious mistake in pop() (forgot to set c->prev to NULL on pop)
arg@10ksloc.org unknown
Thu, 20 Jul 2006 18:23:43 +0200
72707c2f
using double-linked list in order to get correct prev focus handling
arg@10ksloc.org unknown
Thu, 20 Jul 2006 16:54:20 +0200
06dc514b
added yet another CUTOMIZE tag
arg@10ksloc.org unknown
Thu, 20 Jul 2006 15:40:41 +0200
2b5553b1
cleaned the CUSTOMIZE flags
arg@10ksloc.org unknown
Thu, 20 Jul 2006 15:17:52 +0200
4688ad18
made status bar drawing more robust, implemented togglemax and togglemode, works quite well
arg@10ksloc.org unknown
Thu, 20 Jul 2006 15:07:35 +0200
dc5d967e
cleaned up code
arg@10ksloc.org unknown
Thu, 20 Jul 2006 12:18:06 +0200
fe3756c8
Added tag 0.4 for changeset eb3165734f00fe7f7da8aeebaed00e60a57caac9
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:48:22 +0200
01b151f5
prepared 0.4
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:48:19 +0200
8bb4a93f
using O3 instead of Os, binary size still < 40kb
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:26:36 +0200
5ec04b77
fixed version in man page
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:15:05 +0200
3657eaed
yet another html patch
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:12:41 +0200
9291283a
updated html
arg@10ksloc.org unknown
Thu, 20 Jul 2006 10:10:58 +0200
eccd02de
makefile now sets permissions for executables and man pages
arg@10ksloc.org unknown
Thu, 20 Jul 2006 09:45:47 +0200
11737233
removed c->f{x,y,w,h} and c->t{x,y,w,h} in favor for the new rule handling remembering two kinds of geometries is unnecessary, removed the randomized (x,y) setting on dofloat startup, was kind too random und unpredictable
arg@10ksloc.org unknown
Thu, 20 Jul 2006 07:26:23 +0200
bcaf6a7a
implemented regexp matching for rules
arg@10ksloc.org unknown
Wed, 19 Jul 2006 17:42:08 +0200
f95eed34
applied Jukka's patch with s/ModKeyMask/MODKEY/g
arg@10ksloc.org unknown
Wed, 19 Jul 2006 16:38:39 +0200
1eaffa37
removed TODO, because dwm is nearly finished
arg@10ksloc.org unknown
Wed, 19 Jul 2006 15:03:53 +0200
b1697e8d
reapplied my default keybindings
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:54:19 +0200
801d11c7
alternate dwm.png
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:49:19 +0200
1b855fcc
Added tag 0.3 for changeset 7e66082e5092fb0bccd18a3695a0bec52c80fdb2
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:44:44 +0200
d34b4c7b
some changes in the html page
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:44:24 +0200
1f9614f8
prepared 0.3
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:43:17 +0200
4491bdda
fixed the bug mentioned by Sander
arg@10ksloc.org unknown
Wed, 19 Jul 2006 14:11:27 +0200
8af1d973
refactored Sanders code somewhat
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:52:31 +0200
79cd4088
implemented fallback for too many clients in stacked mode
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:36:04 +0200
18be893b
and another fix...
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:30:18 +0200
0fb1842f
yet another typo fix
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:29:45 +0200
f522930a
fixed a typo
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:24:58 +0200
aebd745f
floating clients get random (x,y) offsets now
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:22:49 +0200
c53980cd
applied Sanders resize patch, fixed lower bug
arg@10ksloc.org unknown
Wed, 19 Jul 2006 11:31:04 +0200
95e56ffc
changed CFLAGs
arg@mmvi unknown
Tue, 18 Jul 2006 17:54:55 +0200
f1294353
firefox instance is different now
arg@mmvi unknown
Tue, 18 Jul 2006 15:10:57 +0200
6649dcce
changed occurrences of wmii.de into 10kloc.org in dwm.html, because 10kloc.org is already working
Anselm R. Garbe garbeam@wmii.de
Tue, 18 Jul 2006 13:01:33 +0200
58f2fe3f
implemened distinguishing float/managed geometries of clients (works quite well)
Anselm R. Garbe garbeam@wmii.de
Tue, 18 Jul 2006 12:36:57 +0200
0aaa9a21
pop on heretag
Anselm R. Garbe garbeam@wmii.de
Tue, 18 Jul 2006 11:45:32 +0200
4f8b08d3
added heretag command which allows to tag a client of a foreign tag with current tag
Anselm R. Garbe garbeam@wmii.de
Tue, 18 Jul 2006 11:38:31 +0200
849e6315
using EXIT_stuff in exit() now
Anselm R. Garbe garbeam@wmii.de
Tue, 18 Jul 2006 08:18:54 +0200
789717d1
simplified Makefile
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 18:49:13 +0200
605630c1
added new stuff
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 16:46:42 +0200
1e7e57da
updated html
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 11:56:27 +0200
eb184e02
patched dwm
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 11:36:07 +0200
ed414736
updated README
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 10:09:57 +0200
ee5ba144
Added tag 0.2 for changeset 0a6472e2203994bc5738d40a340d26f7ec9d6062
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 10:00:59 +0200
b706893e
updated html
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 10:00:55 +0200
bf357945
ordered variables in structs and source files alphabetically
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 09:12:29 +0200
e7438365
slight change to dwm.1
Anselm R. Garbe garbeam@wmii.de
Mon, 17 Jul 2006 08:37:37 +0200
0c3544d4
simplified man page
Anselm R. Garbe garbeam@wmii.de
Sun, 16 Jul 2006 23:26:50 +0200
94f7c270
another XSync
Anselm R. Garbe garbeam@wmii.de
Sun, 16 Jul 2006 12:29:50 +0200
901b3ed9
several additions in mouse handling ;)
Anselm R. Garbe garbeam@wmii.de
Sun, 16 Jul 2006 00:47:40 +0200
e6cbe9c1
fixed XSync handling and finished man page
Anselm R. Garbe garbeam@wmii.de
Sat, 15 Jul 2006 18:51:44 +0200
f60c597d
changing XFlush into XSync
Anselm R. Garbe garbeam@wmii.de
Sat, 15 Jul 2006 18:11:14 +0200
c09bf8da
sanitized other stuff
Anselm R. Garbe garbeam@wmii.de
Sat, 15 Jul 2006 17:19:19 +0200
adaa28a6
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe garbeam@wmii.de
Sat, 15 Jul 2006 17:00:56 +0200
dba23062
rearranged several stuff
Anselm R. Garbe garbeam@wmii.de
Sat, 15 Jul 2006 16:30:50 +0200
c0705eeb
sanitized names
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 22:54:09 +0200
29355bd3
rearranged
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 22:33:38 +0200
91a1f692
I prefer the tiled/floating indicator on the right side
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:59:25 +0200
54775e0b
bar shows if currently is tiled (Mod1-space) or floating (Mod1-Shift-space) mode
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:55:50 +0200
59b4a5e4
draw bar on exposure ;)
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:46:12 +0200
82384e38
Added tag 0.1 for changeset d31b5ad96b0ba7b5b0a30928fcf000428339a577
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:40:36 +0200
7faa8a90
prep 0.1
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:40:31 +0200
6797ff84
fixed crash on zoom if only 1 client exists
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 18:11:36 +0200
e7fa504c
removed a bunch of lines through swap removal
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 17:43:56 +0200
5b44976a
if stdin writer stops working, dwm consumed much IO load because it still tried to select on this fd, fixed
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 17:30:37 +0200
6475be92
removed a bottleneck
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 13:27:01 +0200
a1d0f819
searching for a better way to discard enter notifies
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 13:03:53 +0200
c2cf829e
focus on view change as well
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 12:11:24 +0200
e3fd306e
small fix
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 12:09:05 +0200
eb756ee1
made stdin reader more robust
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 12:08:32 +0200
0e5c8198
implemented dwm reading status text from stdin 
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 11:57:33 +0200
6458d725
made barclick to select the specific tag
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 10:34:07 +0200
9cd686c9
implemented bar for dwm (I miss status text), I plan that status text is read from stdin in dwm
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 10:07:38 +0200
1549faf3
continued with man page
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 08:45:30 +0200
72655f0c
continued with man page
Anselm R. Garbe garbeam@wmii.de
Fri, 14 Jul 2006 08:34:38 +0200
86d98514
except improvements to the mouse handling this is already nearly feature complete
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 21:49:55 +0200
66da1532
added mini stuff
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 21:42:17 +0200
7fe717c2
fixed several things, nearly feature complete
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 20:28:19 +0200
3aad9220
new stuff
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 19:55:07 +0200
efa7e514
several other additions/fixes, dwm is quite usable already
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 18:21:38 +0200
c47da143
implemented tagging a client
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 17:09:35 +0200
b7258874
several fixes
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 14:33:22 +0200
b2e98bf9
added philosophy section
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 12:35:46 +0200
ce846e94
added xlock command (I need it regularly)
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 12:19:10 +0200
0a638a4c
added pointer warps on kb-driven/manage-driven focus
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 12:00:20 +0200
21553f9b
changed back to urxvt, dwm has no problems with it, because it doesn't use frame windows ;)
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 11:49:31 +0200
9e8b3258
changed default colors
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 11:43:05 +0200
44f2e8b9
added dev.c instead of kb.c
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:34:55 +0200
3f942f9e
removed obsolete stuff
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:25:57 +0200
7e433694
fixed grammar bug reported by John-Galt
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:19:24 +0200
f33a30a2
another change
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:05:46 +0200
4ae11055
updated man page
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:04:50 +0200
01a8d44d
small changes to README
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:03:56 +0200
3791ec05
last change to dwm.html
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 10:02:28 +0200
80c7add6
renamed/changed
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 09:33:26 +0200
650a1fb4
added logo+description
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 09:32:22 +0200
d7e17087
new stuff (some warning elimination)
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 01:55:54 +0200
8b59083e
removed unnecessary crap
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 01:30:55 +0200
da2bbd37
before leaning things up
Anselm R. Garbe garbeam@wmii.de
Thu, 13 Jul 2006 01:04:38 +0200
b1701adf
new stuff, fixed several issues
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 17:50:31 +0200
2e836ecc
added gravity stuff
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 17:17:15 +0200
6db5ffb6
added max
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 16:40:37 +0200
4641aa29
added grid mode on Mod1Mask g
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 16:00:51 +0200
dfd84f9b
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 15:17:22 +0200
7696c89c
fixed configurerequest
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 00:53:11 +0200
b41c56ae
new colors
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 00:50:09 +0200
2a0fc84c
some more additions/fixes
Anselm R. Garbe garbeam@wmii.de
Wed, 12 Jul 2006 00:00:25 +0200
896f08d7
fixed several other stuff, coming closer to something useful
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 23:46:39 +0200
83d23908
implemented draw_client stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 23:18:30 +0200
a05beb65
made code more readable
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 22:49:09 +0200
48b6e9a3
added basic mouse support (actually we don't need more)
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 21:41:49 +0200
b9da4b08
added mouse-based resizals
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 21:24:10 +0200
5ed16fae
updated README
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 18:59:09 +0200
d6e0e6e9
several changes, new stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 18:53:41 +0200
b1669b5c
removed unnecessary sel stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 18:19:01 +0200
586f6633
added bar event timer
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 18:15:11 +0200
33996500
added protocol killing stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 16:14:22 +0200
272e15c4
new stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 14:53:22 +0200
26e134b8
added gridsel to gridwm
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 13:21:57 +0200
00536204
changed how manage client works
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 13:02:22 +0200
16c67f32
fixed several stuff (gridwm gets better and better)
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 12:52:57 +0200
366d81e3
added key handling
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 11:50:18 +0200
8a8b7956
new stuff
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 11:27:56 +0200
3a69c517
implemented pipe_spawn
Anselm R. Garbe garbeam@wmii.de
Tue, 11 Jul 2006 11:10:05 +0200
439e15d0
added several other stuff
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 22:16:48 +0200
2de59d0f
renamed gridmenu.c into menu.c
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 19:47:35 +0200
39677ec7
several new changes, made gridmenu working
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 19:46:24 +0200
8a34fa50
added new stuff
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 18:35:39 +0200
dbf7e039
added gridmenu
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 16:49:43 +0200
1076f2b6
initial import
Anselm R. Garbe garbeam@wmii.de
Mon, 10 Jul 2006 16:38:18 +0200
ae1d865a
s/tags ref/tags mask/
arg@suckless.org unknown
Sun, 15 Jun 2008 23:27:08 +0200
deef4c9b
fixed Gottox' buttonpress/ClkTagBar code
Anselm R Garbe garbeam@gmail.com
Sat, 21 Jun 2008 13:49:43 +0100
addc52c9
fixed
Anselm R Garbe garbeam@gmail.com
Fri, 29 Aug 2008 11:29:42 +0100
26f41c90
checking result of XGetClassHint, removed some obsolete lines in initfont()
Anselm R Garbe garbeam@gmail.com
Fri, 29 Aug 2008 10:13:47 +0100
73ec124a
merged my changes
Anselm R Garbe garbeam@gmail.com
Wed, 27 Aug 2008 15:03:35 +0100
4b3b597d
WM_NAME is builtin atom
Premysl Hruby dfenze@gmail.com
Mon, 25 Aug 2008 11:43:45 +0200
0927d635
Added tag 5.6 for changeset 555070221577
Anselm R Garbe anselm@garbe.us
Tue, 14 Jul 2009 19:07:53 +0100
dfecd461
merge
Anselm R Garbe anselm@garbe.us
Sat, 18 Jul 2009 11:28:31 +0100
5bc4db0f
applied nsz' dwm.1 fixes, thanks Szabolcs!
Anselm R Garbe anselm@garbe.us
Sat, 18 Jul 2009 11:28:03 +0100