about summary refs log tree commit diff stats
path: root/layout.c
Commit message (Expand)AuthorAgeFilesLines
* added an creatnotify event handlerAnselm R. Garbe2007-06-041-16/+0
* applied anudots [un]ban repair patchAnselm R. Garbe2007-06-041-3/+1
* replaced BORDERPX with sel->border in togglemax(), in other places this is no...Anselm R. Garbe2007-05-301-1/+1
* referred to LICENSE file 4.2Anselm R. Garbe2007-05-301-6/+1
* Jukka also belongs to Copyright holders after all he has contributed and done...Anselm R. Garbe2007-05-301-0/+1
* added nsz to copyright holders as well, because he did a lot recentlyAnselm R. Garbe2007-05-291-0/+1
* added anydot to Copyright holders, because he contributed a lot recentlyAnselm R. Garbe2007-05-291-0/+1
* applied anydot's 3 minor patches, thank you anydotAnselm R. Garbe2007-05-291-17/+24
* fix if n < nmaster of remainer calculation for master windowsAnselm R. Garbe2007-05-241-1/+1
* calculating the remainder for master and stack area correctlyAnselm R. Garbe2007-05-241-6/+9
* applied Szabolcs proposal for zoom() as wellAnselm R. Garbe2007-05-221-1/+1
* applied Szabolcs proposal to simplify setlayout()Anselm R. Garbe2007-05-221-5/+3
* no that change breaks fullscreen apps 4.1Anselm R. Garbe2007-05-161-1/+0
* raise barwin in restack, that's the most elegant solution I thinkAnselm R. Garbe2007-05-161-0/+1
* simplificationAnselm R. Garbe2007-05-151-4/+2
* using BarTop as fallback if BARPOS is set to BarOff as default for togglingAnselm R. Garbe2007-05-151-1/+6
* another fix, call lt->arrange() in togglebar onlyAnselm R. Garbe2007-05-151-0/+1
* made bar togglalbleAnselm R. Garbe2007-05-151-0/+6
* applied dfenze cleanups, fixed some comments in dwm.hAnselm R. Garbe2007-05-141-11/+4
* s/remain/remainder/Anselm R. Garbe2007-05-091-3/+3
* fixing remaining space calculationAnselm R. Garbe2007-05-091-5/+5
* applied patch of Paul Liu to allow onthefly resizing due to xrandr changesAnselm R. Garbe2007-05-071-1/+4
* changed border handlingAnselm R. Garbe2007-04-171-8/+8
* yet another fix of copyright compactisitionAnselm R. Garbe2007-04-131-1/+2
* making Copyright notices more compactAnselm R. Garbe2007-04-131-3/+2
* renamed untiled into floating, keeping tiled instead of tiling (afaik tiled s...Anselm R. Garbe2007-02-221-30/+30
* simplified focusclient()Anselm R. Garbe2007-02-221-10/+6
* renamed versatile into untiledAnselm R. Garbe2007-02-221-8/+8
* merged focus{prev.next} into focusclient(1/-1)Anselm R. Garbe2007-02-221-20/+16
* small bugfixAnselm R. Garbe2007-02-221-6/+12
* fixed some issues due to the Arg->const char * transitionAnselm R. Garbe2007-02-221-0/+1
* replaced Arg union with const char *arg, seems cleaner to me, even if we need...Anselm R. Garbe2007-02-221-17/+21
* status needs update even in togglemax() - since we got an indicator for thisAnselm R. Garbe2007-02-221-0/+1
* fixed exit condition in togglemax()Anselm R. Garbe2007-02-221-1/+1
* several changes, made togglemax extern and separated it from zoom() - moved z...Anselm R. Garbe2007-02-221-28/+64
* moved focus{next,prev} and nexttiled from client.c to layout.c (because those...Anselm R. Garbe2007-02-211-8/+38
* split screen.c into layout.c and tag.c (because the view is an implicit mixtu...Anselm R. Garbe2007-02-201-0/+185
'n451' href='#n451'>451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716