summary refs log tree commit diff
path: root/conf.c
Commit message (Collapse)AuthorAgeFilesLines
* We are inconsistent when it comes to function returns, so just go allokan2011-07-251-9/+10
| | | | | | the way with the cwm specific parts. ok oga@
* correct spelling; from Alexander Polakov.okan2011-07-141-1/+1
|
* warn if we can't parse the config file on start, just like we do on reload.okan2011-06-251-1/+2
| | | | part of a larger diff that was ok oga@
* New option to raise a client via the mouse (unbound by default);okan2011-06-241-0/+1
| | | | | | | opposing action, lower, already exists and bound. Both keyboard mappings already exist. 'no opinion either way' oga@
* introduce a new config option to snap to the screen edge. 'snapdist'okan2011-06-241-0/+1
| | | | | | | | keyword taken from a diff from Sviatoslav Chagaev to do the same thing, but implemented in a completely way (based on some very old code from mk@). default set to 0, so no behavior change. ok oga@ (who would also like to take it further...)
* more nitems usage.okan2011-06-241-4/+2
| | | | ok oga@
* struct XftFont already has height which we can use directly instead ofokan2011-06-241-1/+0
| | | | | | calculating ourselves, so do so. ok oga@
* alter a few function returns and prototypes; found by lint.okan2011-06-241-1/+0
| | | | ok oga@
* collapse client and group {r,}cycle defines since they are reallyokan2011-06-241-2/+2
| | | | | | the same thing. ok oga@
* tag and comment cleanup; ok oga@okan2011-05-111-1/+1
|
* introduce a new 'freeze' flag (CMS-f by default) which may be applied tookan2011-05-071-0/+2
| | | | | | | | | | | | | any window, after which all move/resize requests will be ignored, essentially freezing the window in place. there's a possibility to merge this with the 'ignore' concept, pending on how ignore+freeze should behave (really more ewmh stuff), but punting for now since ponies are on the line. requested and tested by thib at k2k11 with ponies, unicorns and rainbows. 'save the unicorns' todd@, ok oga@
* introduce nitems macro, with the appropriate ifndef.okan2011-03-221-6/+4
| | | | ok oga@
* - allow per-screen gap; not (yet) user configurable.okan2010-01-271-0/+7
| | | | | | - teach _NET_WORKAREA about gap. ok oga@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+11
| | | | | | are required. encourged to go all the way by oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-1/+0
| | | | | | separate commits. ok oga@
* Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespecoga2009-12-111-1/+0
| | | | | | | | | | says that a pager can change the property at any time (most need a clientmessage). So deal with property updates. Needed to shuffle some of the other code around since we can't just use shortcut_to_name[] everywhere now. ok okan@
* start fixing screen_ctx usage, for it is utterly broken. bring fontokan2009-12-081-14/+10
| | | | | | | | | into screen_ctx and start passing screen_ctx around to in order get rid of Curscreen; fixup per-screen config colors the same way. diff mostly from oga@, with a bit harsher reaction to the state of screen_ctx. "please commit" oga@
* remove unused externokan2009-12-071-2/+0
| | | | ok oga@
* static; ok oga@okan2009-08-251-2/+2
|
* Reduce duplciation of code for checking modifiers in key/mouse bindings.oga2009-08-251-39/+37
| | | | | | shaves a bunch of bytes. ok okan@
* Instead of calling conf_bind*() 50 gazillion times in a row, store anoga2009-08-251-68/+79
| | | | | | | array with all the parameters in and just loop over that to setup the default keybindings - it's so much easier to read. okan@ "love love love"ed this
* Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga2009-08-241-0/+2
| | | | | | based on a diff by Thomas Pfaff; thanks! ok okan@
* static local functions and data; almost identical diff from Thomas Pfaffokan2009-06-261-4/+7
| | | | ok oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-4/+3
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* spacingokan2009-06-201-2/+0
|
* 'no' is the answer to the comment question: cc->name can't be NULL atokan2009-05-301-10/+5
| | | | | | this point due to client_setname()'s work; remove this check. ok oga@
* redraw all borders at once on reloadokan2009-05-171-0/+4
| | | | "sure" oga@
* a long time coming - re-work the way we deal with colors: since we'reokan2009-05-171-0/+33
| | | | | | | | using Xft(3), use it to select the font color as well instead of trying to build one; properly allocate and free colors at-will, e.g. we now have configurable colors. feedback and ok's todd@ and oga@
* add a "movetogroup" function, which hides the current window fromsthen2009-05-171-0/+18
| | | | | | | | | | | | display and moves it to another group. useful with the recently added "grouponly" function, giving the ability to use groups as simple virtual desktops (similar to e.g. xmonad, dwm and scrotwm). this doesn't have default keyboard bindings; cwmrc(5) now shows how you could use these functions (use M-1...9 for grouponly1...9 and MS-1...9 for movetogroup1...9 to emulate the default dwm bindings). ok oga@
* Add a new command (currently no default keybindings for it), grouponly[1-9].oga2009-05-141-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This works like the group select binding, but hides all other groups. So, the people who've been complaining that they don't get "virtual desktops" in cwm may want to try this out in cwmrc (from memory, untested): --- #cwmrc # add new windows to the current group set sticky # automatically sticky windows. xclock for now. # to make more windows sticky use group_toggle to unset their group autogroup 0 xclock # make the group selection keys hide other groups, emulate virtual desktops bind CM-1 grouponly1 bind CM-2 grouponly2 bind CM-3 grouponly3 bind CM-4 grouponly4 bind CM-5 grouponly5 bind CM-6 grouponly6 bind CM-7 grouponly7 bind CM-8 grouponly8 bind CM-9 grouponly9 --- mostly by sthen, tweaks from me. ok todd@, "if it works i'm ok with it" okan@, ok sthen@
* no need to use the global here.okan2009-05-041-1/+1
| | | | ok todd@ oga@
* add 'moveamount' to cwmrc; it sets keyboard movement amount, makingmartynas2009-02-071-0/+1
| | | | | | it more useful on large screens manpage tweak & ok jmc@ ok okan@, oga@
* passing a null pointer to free() is valid; sprinkle a few free->xfree.okan2009-01-231-10/+9
| | | | ok oga@
* move conf_clear() and add proto.okan2009-01-231-0/+42
| | | | ok todd@ oga@
* Move the keybinding argument to a union to prevent warnings whereoga2009-01-231-61/+61
| | | | | | sizeof(int) != sizeof(void *). This has been annoying me for ages. ok okan@, todd@
* borderwidth as a cwmrc(5) keyword, really helps debuggingtodd2009-01-211-1/+2
| | | | | from okan@ ok oga@
* remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-161-2/+2
| | | | | | | | | | | | to push attributes around, so things get a lot simplier, while fixing a few issues in the meantime; original suggestion by Edd Barrett many many moons ago. annoying window placement and race, found in c2k8 by todd, fix by oga! lots of feedback from todd and oga - thanks! "commit that bad boy" oga@
* If the mousebutton is unknown when we go to grab, don't just print aoga2009-01-081-0/+1
| | | | | | | warning, but also skip the XGrabButton call. Noticed by code inspection by okan@, but we agreed my fix was cleaner. ok okan.
* We've been handling grabbing wrong all this time (noticed at c2k8).oga2008-07-221-1/+37
| | | | | | | | | | | | add conf_grab() and conf_ungrab, and use them in the keybinding manipulation functions to {,un}grab the binding for all screens we have defined. the lovely little ordering problem comes in here, since when we parse the config initially Screenq is empty, so regrab after we fill the queue, hopefully later reordering will remove this little need and there will be much rejoicing. ok okan.
* no more hidden (and mysterious) config reloads and allow binding a keyokan2008-07-111-20/+2
| | | | | | to a config reload; CMS-r by default. ok oga@
* replace snprintf with strlcpyokan2008-07-111-2/+1
| | | | ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-16/+17
| | | | | | readability, and a bit of knf. ok oga@
* Allow a mouse binding to hide a window, and add a default keybinding for CMS-M3,oga2008-06-251-0/+2
| | | | | | so it's hard to press by accident, but there if you need it. requested (in a way) and tested by johan and todd.
* Support mod4 (windows key) in mouse bindings too.oga2008-06-251-0/+4
|
* Support shift in mouse bindings. There's really no reason not to.oga2008-06-251-0/+4
| | | | tested by johan@ and todd@.
* Actually grab the correct mouse buttons for a window, instead of doing theoga2008-06-251-0/+30
| | | | | | old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
* Ignore caps lock and numlock for keyboard bindings. The way Xlib makesoga2008-06-171-8/+0
| | | | | | | | | you do this is ugly. Also remove mod2 (numlock) and mod3 (odd) from the list of keybinding modifiers. They don't make much sense here. based on a heavily modified diff from Martynas. ok okan.
* Make this not crash when compiled with -g.mk2008-06-161-1/+1
| | | | | | Found by myself, analysis by kurt@, fix by me with input from otto. ``Just get some fix in...'' deraadt
* Rip out and burn the HASH_* stuff. We don't need a SPLAY tree for one font.oga2008-06-151-1/+10
| | | | | | | makes the code a lot simpler. While here rearrange the font handling functions to be less shit. ok and help okan@.
* unbreakokan2008-06-141-1/+1
|