aboutsummaryrefslogtreecommitdiff
path: root/client.c
AgeCommit message (Collapse)AuthorLines
2007-09-15micromizing dwm step 1Anselm R. Garbe-386/+0
2007-09-15renamed drawstatus into drawbarAnselm R. Garbe-1/+1
2007-08-26prepared 4.4.1 bugfix and minor feature enhancement releaseAnselm R. Garbe-0/+1
2007-08-23removed unnecessary include, prepared dwm-4.4Anselm R. Garbe-1/+0
2007-08-22removed the _DWM_PROPERTIES handling, reverted ban/unban to XMoveWindow(), ↵Anselm R. Garbe-43/+7
and changed argument of setlayout to layout[N].symbol check
2007-08-19renamed char prop[] into buf[]Anselm R. Garbe-12/+12
2007-08-19added screen.c, removed layout.c and tag.cAnselm R. Garbe-4/+4
2007-08-19prepared merging layout.c and tag.c into screen.cAnselm R. Garbe-32/+4
2007-08-18hmm I doubt the usefulness of storing this information...Anselm R. Garbe-19/+19
2007-08-18cleaned up settags-handlingAnselm R. Garbe-1/+44
2007-08-16fixed the issue observed by various people, that clients appeared on empty tagsAnselm R. Garbe-4/+3
2007-08-15fififiAnselm R. Garbe-12/+2
2007-08-14fix of resize (thanks Sander for the hint!)Anselm R. Garbe-2/+2
2007-08-13made Layout a static struct in layout.c, added some convenience getters in ↵Anselm R. Garbe-4/+5
layout.c, now lt->arrange accesses are not possible anymore, arrange() is the super-arrange function which sets up all layouts
2007-08-13made resize more preciseAnselm R. Garbe-12/+9
2007-08-11separated layout-specific stuff into separate .h and .c files which are ↵Anselm R. Garbe-3/+3
included in config.h resp. config.mk - this allows writing layouts for dwm without any need to patch existing code
2007-08-10removed VRATIO, NMASTER, inc*(), renamed HRATIO into MASTER, see mailinglist ↵Anselm R. Garbe-3/+3
for details
2007-07-31changed the fix of yesterday, the resize should only be necessary at ↵Anselm R. Garbe-1/+1
manage() time, not on any unban()
2007-07-30fooAnselm R. Garbe-0/+1
2007-07-28set client state to iconic on maprequestAnselm R. Garbe-0/+1
2007-07-28changed ban/unban implementation to not move the windows anymore, but ↵Anselm R. Garbe-8/+9
map/unmap them instead - PLEASE TEST THIS
2007-06-04added an creatnotify event handlerAnselm R. Garbe-23/+39
2007-06-04applied anudots [un]ban repair patchAnselm R. Garbe-2/+1
2007-05-30referred to LICENSE fileAnselm R. Garbe-6/+1
2007-05-30Jukka also belongs to Copyright holders after all he has contributed and ↵Anselm R. Garbe-0/+1
done for dwm, updated -v as well
2007-05-30applied Jukkas patchAnselm R. Garbe-1/+1
2007-05-29added nsz to copyright holders as well, because he did a lot recentlyAnselm R. Garbe-0/+1
2007-05-29added anydot to Copyright holders, because he contributed a lot recentlyAnselm R. Garbe-0/+1
2007-05-29applied anydot's 3 minor patches, thank you anydotAnselm R. Garbe-13/+4
2007-05-28applied Sanders patchAnselm R. Garbe-2/+2
2007-05-25applied anydots proposal to let togglefloating restore fixed windowsAnselm R. Garbe-0/+2
2007-05-23reverted last change after Sander pointed out the original decisionAnselm R. Garbe-1/+1
2007-05-23applied anydots remark of togglefloating()Anselm R. Garbe-1/+1
2007-05-14thanks to JukkaAnselm R. Garbe-1/+0
2007-05-14applied dfenze cleanups, fixed some comments in dwm.hAnselm R. Garbe-4/+10
2007-05-10small fix of fixAnselm R. Garbe-2/+1
2007-05-10fixed a potential security flawAnselm R. Garbe-3/+5
2007-04-19fixed the border issue for mplayer, ff is definately broken when using F11 ↵Anselm R. Garbe-4/+10
(fullscreen mode)
2007-04-19touch borderAnselm R. Garbe-1/+1
2007-04-18set border at manage timeAnselm R. Garbe-2/+1
2007-04-17changed border handlingAnselm R. Garbe-7/+2
2007-04-13yet another fix of copyright compactisitionAnselm R. Garbe-1/+2
2007-04-13making Copyright notices more compactAnselm R. Garbe-3/+2
2007-04-11make also transients floating when we do not know the main windowAnselm R. Garbe-4/+5
2007-03-29add an additional check in resize() to prevent a crash of dwmAnselm R. Garbe-1/+3
2007-03-01some changes to updatesizehints, I don't change the aspect ratio algorithm ↵Anselm R. Garbe-16/+23
now - I can't think, it is a mess
2007-02-26removed sendeventAnselm R. Garbe-2/+11
2007-02-22renamed untiled into floating, keeping tiled instead of tiling (afaik tiled ↵Anselm R. Garbe-5/+5
sounds more correct) - English speakers convinced me
2007-02-22renamed versatile into untiledAnselm R. Garbe-5/+5
2007-02-22replaced Arg union with const char *arg, seems cleaner to me, even if we ↵Anselm R. Garbe-2/+2
need atoi() in some places