aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-20Makefile: rework X11 lib paths and includesIvan Kanakarakis
2012-07-20tile functions know all about the rectangle in which they tile the clientsIvan Kanakarakis
2012-07-20split structs and function prototypes to those used by config and those used ↵Ivan Kanakarakis
internally
2012-07-20rework focus function and overall focus behaviorIvan Kanakarakis
all prev and curr references are handled by focus() function except when removeclient() function removes the prev client.
2012-07-20lone floating clients should get bordersIvan Kanakarakis
2012-07-20rework Makefile - ignore CPPFLAGSIvan Kanakarakis
2012-07-20update commentsIvan Kanakarakis
2012-07-20fix for desktops not marked as having an urgent hintIvan Kanakarakis
the client needs to be compared to the current client of the current desktop, otherwise if the client was the current client on another desktop, it would not be marked with an urgent hint.
2012-07-20fix calls to desktopinfoIvan Kanakarakis
2012-07-20rework main function - version formattingIvan Kanakarakis
2012-07-20remove xerrorlib function pointerIvan Kanakarakis
2012-07-20rework xerror xerrorstart and sigchld functionsIvan Kanakarakis
correct definitions update comments use the 'unused' attribute to mark arguments and supress warnings about unused variables.
2012-07-20rework deletewindow function - init of XEvent varIvan Kanakarakis
2012-07-20rework killclient function - do not remove the client when deleting a windowIvan Kanakarakis
2012-07-20rework client_to_desktop function - check boundsIvan Kanakarakis
2012-07-20rework change_desktop function - check boundsIvan Kanakarakis
2012-07-20rework setfullscreen function - accept desktop argIvan Kanakarakis
no need to use XWindowChanges and XConfigureWindow all we want is to change the border width, which can be achieved with XSetWindowBorderWidth. we need to know how many clients are on the given desktop, because if there's only one, then there shouldn't be a BORDER_WIDTH border.
2012-07-20rework stack function - reorder if/else/return statementsIvan Kanakarakis
2012-07-20rework mousemotion function - do not unset fullscreen stateIvan Kanakarakis
either way, this can only be done by the client. if the wm wishes the client to toggle fullscreen state the wm should send an appropriate XEvent, and not just change the property for the client.
2012-07-20rework configurerequest function - no need to know the client of the windowIvan Kanakarakis
2012-07-20remove global var screenIvan Kanakarakis
2012-07-20rework mousemotion function - use of if/else instead of switch/caseIvan Kanakarakis
2012-07-20rework grabbuttons and grabkeys function - minimize loopsIvan Kanakarakis
2012-07-20fix clients not getting tiled correctlyIvan Kanakarakis
if there was a fullscreen window, and a second client was spawned, it would not tile. this fixes that issue.
2012-07-20call tile only when there are clients to tileIvan Kanakarakis
this is actually also checked in tile function
2012-07-20remove global stateIvan Kanakarakis
2012-07-20rename isurgent, isfullscrn, isfloating, istransient to isurgn, isfull, ↵Ivan Kanakarakis
isfloat, istrans respectively
2012-07-20rework move_up and move_down functions - should check for existance of at ↵Ivan Kanakarakis
least two clients bugfix: this is a null dereference bug that would segfault monsterwm if one tried to move a client up or down while there were no clients this was introduced by mistake when the prev_client function was introduced; now prevclient see commit: 0a900d49
2012-07-20rework prevclient function - negate return conditionalIvan Kanakarakis
2012-07-20rework unmapnotify function - negate return conditionalIvan Kanakarakis
2012-07-20rework next_win and prev_win functions - negate return conditionalIvan Kanakarakis
2012-07-20rework sigchld function - negate err conditionalIvan Kanakarakis
2012-07-20rework move_down move_up functions - initializationIvan Kanakarakis
2012-07-20rework buttonpress function - get rid of return stamentIvan Kanakarakis
2012-07-10rework buttonpress and keypress functions - separate if statement for functionIvan Kanakarakis
2012-07-10rework propertynotify function - add parenthesis and check XWMHints pointer ↵Ivan Kanakarakis
before free
2012-07-10formatting changes - whitespace, alignments, parenthesisIvan Kanakarakis
2012-07-01document v member of Arg type unionIvan Kanakarakis
2012-06-29fix for tiled to floating clients not getting on top of other floating clientsIvan Kanakarakis
2012-06-29floating clients get centered by defaultIvan Kanakarakis
2012-06-28rework wintoclient function main loopIvan Kanakarakis
2012-06-28no need to re-assign values on selectdesktop if the new index is the currentIvan Kanakarakis
2012-06-28no need to tile if the moved client is floating and there are more than one ↵Ivan Kanakarakis
clients on the desktop
2012-06-28rework unmapnotify function return conditionIvan Kanakarakis
2012-06-28update README - sync with masterIvan Kanakarakis
2012-06-28rework change_desktop function - no need for prevdeskidxIvan Kanakarakis
prevdeskidx is only needed when last_desktop function is introduced. no need to keep yet another global variable that remains unused.
2012-06-28update comment on cliet_to_desktopIvan Kanakarakis
2012-06-28rework mousemotion function return conditionalIvan Kanakarakis
2012-06-28no need for separate savedesktop functionIvan Kanakarakis
2012-06-28rename prevfocus and current to prev and curr respectivelyIvan Kanakarakis