about summary refs log tree commit diff stats
path: root/dwm.h
Commit message (Collapse)AuthorAgeFilesLines
* added configure(), but this doesn't really fix those frking broken SDL appsarg@mmvi2006-09-261-0/+1
|
* applied sanders jukka patcharg@mmvi2006-09-251-1/+1
|
* applied Jukkas patcharg@mmvi2006-09-251-6/+6
|
* small change to achieve Jukka's last proposalarg@mmvi2006-09-221-1/+2
|
* fixed issue pointed out by Jukkaarg@mmvi2006-09-221-1/+0
|
* implemented the maximization as I described on the mailinglist, this feels ↵arg@mmvi2006-09-221-2/+2
| | | | better to me.
* improved intro comment in dwm.h, updated config.mkarg@mmvi2006-09-201-3/+3
|
* some simplifications to intro in dwm.harg@mmvi2006-09-191-13/+13
|
* some more simplifications of intro comment in dwm.h, this should suffice for ↵Anselm R. Garbe2006-09-121-20/+14
| | | | comments in dwm
* made introduction comment in dwm.h shorterAnselm R. Garbe2006-09-121-20/+15
|
* added a general comment to dwm.h how dwm is basically organizedAnselm R. Garbe2006-09-121-0/+40
|
* some other simplificationsAnselm R. Garbe2006-09-111-11/+11
|
* small change to comments, renamed two set* functions in client.c into update*Anselm R. Garbe2006-09-111-11/+11
|
* small fixAnselm R. Garbe2006-09-111-2/+2
|
* added some commentsAnselm R. Garbe2006-09-111-72/+69
|
* using a global stack for focus recovery on arrange() - seems to work greatAnselm R. Garbe2006-09-071-1/+2
|
* moved transient_for tag inheritance to settagsAnselm R. Garbe2006-09-061-1/+1
|
* renamed resizetile into resizecolAnselm R. Garbe2006-09-051-1/+1
|
* s/growcol/resizetile/gAnselm R. Garbe2006-09-051-1/+1
|
* I really need column growing, now pushing upstreamAnselm R. Garbe2006-09-051-0/+1
|
* applied Sanders max_and_focus.patchAnselm R. Garbe2006-09-041-2/+1
|
* added viewall to mainstream (only Ross Mohns version, not the toggle)Anselm R. Garbe2006-08-311-0/+1
|
* still something wrong with reorder()Anselm R. Garbe2006-08-291-2/+1
|
* added attach/detach functions which don't attach at the begin of list, but ↵Anselm R. Garbe2006-08-291-0/+2
| | | | at the slot of a first match of the tags of a client
* trying a different configurationAnselm R. Garbe2006-08-251-2/+2
|
* new color stuff/new rendering stuffAnselm R. Garbe2006-08-251-4/+7
|
* back to 3 colorsAnselm R. Garbe2006-08-251-2/+3
|
* 3->4 colorsAnselm R. Garbe2006-08-241-3/+2
|
* updated man pageAnselm R. Garbe2006-08-231-1/+1
|
* separated setup stuff into main.c:setup() - this makes main() more readableAnselm R. Garbe2006-08-231-12/+8
|
* separated several functions into view.cAnselm R. Garbe2006-08-221-10/+12
|
* changed main event loopAnselm R.Garbe2006-08-151-0/+1
|
* removed NUMLOCKMASK, added dynamically calculated numlockmask insteadAnselm R.Garbe2006-08-141-1/+1
|
* changed replacetag into toggletagAnselm R.Garbe2006-08-141-3/+3
|
* removed ungrabkeys again (because of sander's mail)Anselm R.Garbe2006-08-141-1/+0
|
* implemented ungrabkeys() which is called in cleanup()Anselm R.Garbe2006-08-141-0/+1
|
* implemented restack behavior (floats are on top in tiled mode)Anselm R.Garbe2006-08-141-1/+2
|
* removed viewnext/viewprevAnselm R.Garbe2006-08-141-2/+0
|
* made shortcuts like proposed by Sander, renamed viewextend to toggleview ↵Anselm R.Garbe2006-08-131-1/+1
| | | | (more clear)
* implemented viewextend and added M-S-C-n shortcuts for extending the current ↵Anselm R.Garbe2006-08-111-1/+2
| | | | view... updated man page (works great!) nice feature
* implement multi-tag selection through button3 click on the specific tagAnselm R.Garbe2006-08-111-2/+3
|
* readded border color, this sucks leastAnselm R.Garbe2006-08-101-0/+1
|
* removed unnecessary border colorAnselm R.Garbe2006-08-101-1/+0
|
* disallow zoom on maximized clientsAnselm R.Garbe2006-08-101-1/+0
|
* removed NET_ACTIVE_WINDOW handlingAnselm R.Garbe2006-08-081-1/+1
|
* implemented NET_ACTIVE_WINDOW supportAnselm R.Garbe2006-08-081-1/+1
|
* switched to regexp matching for Rulesarg@10ksloc.org2006-08-041-0/+1
|
* using execl now, argv changed, using cmd and const char defs directly in the ↵arg@10ksloc.org2006-08-041-1/+1
| | | | KEYS struct
* removed TLast tag enum, now tags is simple defined as char *[] array, the ↵arg@10ksloc.org2006-08-031-2/+3
| | | | rest is calculated correctly, rules take an int array for the tags
* changed Client->tags and Rule->tags to be Bool (I'll also try to remove the ↵arg@10ksloc.org2006-08-031-3/+4
| | | | TLast enum)
>864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038