about summary refs log tree commit diff stats
path: root/event.c
Commit message (Expand)AuthorAgeFilesLines
* ismax toggling on mouse based actionarg@mmvi2006-09-221-0/+2
* patched resizemouse according to sanders remarkarg@mmvi2006-09-221-2/+2
* sander check thisarg@mmvi2006-09-221-19/+37
* implemented the maximization as I described on the mailinglist, this feels be...arg@mmvi2006-09-221-2/+2
* added visibility check to enternotify as well 1.6arg@mmvi2006-09-151-1/+1
* removed a bunch of lines through making function signatures more consistent w...Anselm R. Garbe2006-09-121-37/+22
* small change to comments, renamed two set* functions in client.c into update*Anselm R. Garbe2006-09-111-2/+2
* applied Sanders max_and_focus.patchAnselm R. Garbe2006-09-041-4/+4
* simplified buttonpressAnselm R. Garbe2006-09-011-23/+12
* applied sanders patchAnselm R. Garbe2006-09-011-5/+8
* implemented Button2 press on tags for toggletag on the focused clientAnselm R. Garbe2006-08-311-2/+9
* simplified configurerequestAnselm R. Garbe2006-08-291-25/+22
* now dwm enforces max screen size also in tiled mode on non-floating clients w...Anselm R. Garbe2006-08-291-13/+14
* fixedAnselm R. Garbe2006-08-291-1/+3
* configurenotify remembers max geom now, and restores this if necessary, howev...Anselm R. Garbe2006-08-291-1/+11
* applied sanders focus_ patchesAnselm R. Garbe2006-08-281-1/+1
* applied sanders somepatches.patchAnselm R. Garbe2006-08-281-2/+4
* trying a different configurationAnselm R. Garbe2006-08-251-13/+11
* changed symbols for float/tiled mode, added mouse-driven mode toggle to butto...Anselm R. Garbe2006-08-251-10/+12
* new color stuff/new rendering stuffAnselm R. Garbe2006-08-251-1/+3
* applied Sanders focus_* patches, removed the unnecessary clean-prefix from th...Anselm R.Garbe2006-08-211-0/+2
* changed main event loopAnselm R.Garbe2006-08-151-0/+13
* removed NUMLOCKMASK, added dynamically calculated numlockmask insteadAnselm R.Garbe2006-08-141-3/+3
* applied sanders man page patch, removed button2 from bar clickAnselm R.Garbe2006-08-141-3/+3
* fixedAnselm R.Garbe2006-08-141-1/+1
* remove unnecessary XSyncAnselm R.Garbe2006-08-141-1/+0
* added mappingnotify event for kb refreshesAnselm R.Garbe2006-08-141-0/+12
* removed unneecessary crapAnselm R.Garbe2006-08-141-6/+1
* pplied Sanders appendtag patchAnselm R.Garbe2006-08-141-0/+6
* some other small fixesAnselm R.Garbe2006-08-141-2/+4
* removed ungrabkeys again (because of sander's mail)Anselm R.Garbe2006-08-141-16/+0
* implemented ungrabkeys() which is called in cleanup()Anselm R.Garbe2006-08-141-0/+16
* implemented restack behavior (floats are on top in tiled mode)Anselm R.Garbe2006-08-141-3/+6
* applied Sanders LD and resize patchesAnselm R.Garbe2006-08-141-2/+5
* removed viewnext/viewprevAnselm R.Garbe2006-08-141-23/+9
* made shortcuts like proposed by Sander, renamed viewextend to toggleview (mor...Anselm R.Garbe2006-08-131-1/+1
* implemented viewextend and added M-S-C-n shortcuts for extending the current ...Anselm R.Garbe2006-08-111-5/+2
* implement multi-tag selection through button3 click on the specific tagAnselm R.Garbe2006-08-111-1/+7
* realized that client focussing through the bar is pretty useless, better is s...Anselm R.Garbe2006-08-111-5/+5
* implemented focusprev on button1 press in the bar, and focusnext on button3 p...Anselm R.Garbe2006-08-111-2/+6
* applied Sanders zoom_update patchAnselm R.Garbe2006-08-101-2/+1
* applied sumik's multihead patchAnselm R.Garbe2006-08-101-5/+10
* applied sander's patchAnselm R.Garbe2006-08-101-11/+8
* disallow zoom on maximized clientsAnselm R.Garbe2006-08-101-9/+8
* added zoom on Mod1-Button1 on managed clients only (there is no moving possible)Anselm R.Garbe2006-08-091-0/+2
* removed NET_ACTIVE_WINDOW handlingAnselm R.Garbe2006-08-081-13/+0
* implemented NET_ACTIVE_WINDOW supportAnselm R.Garbe2006-08-081-0/+13
* applied grabbing-- and shell_minimalarg@10ksloc.org2006-08-071-8/+0
* small performance tweak ;)arg@10ksloc.org2006-08-041-2/+4
* fixed xterm font change (all other related apps should work fine with this fi...arg@10ksloc.org2006-08-041-14/+12
a> 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 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853