summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* dwm draws a small caret before the client title if it's a versatile clientGravatar Anselm R. Garbe 2007-02-222-6/+31
|
* nah grouped keybindings by contextGravatar Anselm R. Garbe 2007-02-222-47/+46
|
* fixed exit condition in togglemax()Gravatar Anselm R. Garbe 2007-02-221-1/+1
|
* fixing missing extern declars in dwm.h for {de,at}tach()Gravatar Anselm R. Garbe 2007-02-221-0/+2
|
* several changes, made togglemax extern and separated it from zoom() - moved ↵Gravatar Anselm R. Garbe 2007-02-2210-183/+184
| | | | 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
* just ignore the FD_ISSET check in main.c of xfd, just call XPending (which ↵Gravatar Anselm R. Garbe 2007-02-211-6/+5
| | | | does the same afair)
* optimizing background color of terminalsGravatar Anselm R. Garbe 2007-02-211-1/+1
|
* using 333 as background, hey proggyclean is really goodGravatar Anselm R. Garbe 2007-02-211-1/+1
|
* switching to 13pt proggyclean (this fits better my 1920x1200 resolution than ↵Gravatar Anselm R. Garbe 2007-02-211-1/+1
| | | | 12pt terminus which is too small or 14pt terminus which is too fat)
* using smaller fontGravatar Anselm R. Garbe 2007-02-211-1/+1
|
* using a green selborderGravatar Anselm R. Garbe 2007-02-211-1/+1
|
* reverting to bg 555Gravatar Anselm R. Garbe 2007-02-212-2/+2
|
* s/555/357/ for SELCOLORGravatar Anselm R. Garbe 2007-02-211-1/+1
|
* switching to urxvtcd for the moment (the uxterm flicker makes me headaches, ↵Gravatar Anselm R. Garbe 2007-02-211-1/+1
| | | | st is really highest prio now)
* Added tag 3.6.1 for changeset 20ec6976cee1Gravatar Anselm R. Garbe 2007-02-211-0/+1
|
* creating 3.6.1Gravatar Anselm R. Garbe 2007-02-211-1/+1
|
* reverted accidental removal of sx, syGravatar Anselm R. Garbe 2007-02-212-5/+6
|
* removed some global vars which should be static insteadGravatar Anselm R. Garbe 2007-02-212-8/+7
|
* moved focus{next,prev} and nexttiled from client.c to layout.c (because ↵Gravatar Anselm R. Garbe 2007-02-213-50/+50
| | | | those are not client-specific), moved toggleversatile() from layout.c to client.c (because those are client-specific)
* cleaned up and commented the config.*.hGravatar Anselm R. Garbe 2007-02-213-31/+35
|
* Added tag 3.6 for changeset 75b1b25fe0d7e29400baf30568153f668324928bGravatar Anselm R. Garbe 2007-02-211-0/+1
|
* fixed quoting and a commentGravatar Anselm R. Garbe 2007-02-212-2/+2
|
* renamed setfont to initfont, getcolor to initcolorGravatar Anselm R. Garbe 2007-02-201-29/+29
|
* fixed orderGravatar Anselm R. Garbe 2007-02-201-11/+11
|
* added draw.c again (except getcolor and setfont which are helpers in main.c)Gravatar Anselm R. Garbe 2007-02-204-133/+144
|
* separating drawsquare from drawtext, made drawtext externGravatar Anselm R. Garbe 2007-02-202-49/+65
|
* rechecked with OpenBSDGravatar Anselm R. Garbe 2007-02-201-0/+1
|
* split screen.c into layout.c and tag.c (because the view is an implicit ↵Gravatar Anselm R. Garbe 2007-02-204-152/+160
| | | | mixture of both)
* using eprint instead of fputsGravatar Anselm R. Garbe 2007-02-191-6/+3
|
* replaced togglelayout with setlayoutGravatar Anselm R. Garbe 2007-02-195-21/+29
|
* changed some odering in config*.hGravatar Anselm R. Garbe 2007-02-192-20/+20
|
* renamed Client->versatile and Rule->versatile into Client->isversatile resp. ↵Gravatar Anselm R. Garbe 2007-02-195-16/+16
| | | | Rule->isversatile
* renames swim[ming] into versatileGravatar Anselm R. Garbe 2007-02-197-64/+64
|
* renamed floating into swimming (this does not clash with C naming ↵Gravatar Anselm R. Garbe 2007-02-197-96/+96
| | | | conventions and fits better the fish symbol) - also in man page
* removed debug compile flagsGravatar Anselm R. Garbe 2007-02-191-2/+2
|
* introduced Layout structGravatar Anselm R. Garbe 2007-02-199-82/+115
|
* some more code polishingGravatar Anselm R. Garbe 2007-02-191-1/+2
|
* forgot an extern declarationGravatar Anselm R. Garbe 2007-02-192-1/+2
|
* bugfix of transient handlingGravatar Anselm R. Garbe 2007-02-191-8/+8
|
* removed procevent, more refactoringGravatar Anselm R. Garbe 2007-02-193-14/+6
|
* draw.c is useless (belongs to main.c now)Gravatar Anselm R. Garbe 2007-02-196-195/+178
|
* renamed view.c into screen.cGravatar Anselm R. Garbe 2007-02-194-69/+67
|
* renamed manage.c to view.cGravatar Anselm R. Garbe 2007-02-193-92/+92
|
* renamed Rule members, renamed RReg into RegexpsGravatar Anselm R. Garbe 2007-02-191-17/+17
|
* merged tag.c, view.c and tile.c to manage.cGravatar Anselm R. Garbe 2007-02-196-458/+434
|
* some more refactoringGravatar Anselm R. Garbe 2007-02-193-47/+47
|
* added some new convenience functionsGravatar Anselm R. Garbe 2007-02-194-30/+40
|
* some more refactoringGravatar Anselm R. Garbe 2007-02-192-5/+5
|
* introduced tile.c, some refactoring of functionsGravatar Anselm R. Garbe 2007-02-198-141/+150
|
* simplified configurerequest to a bare minimum, removed wrong ban() callsGravatar Anselm R. Garbe 2007-02-192-16/+1
|