summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-12-01Add height dimension to screen sortingMathieu OTHACEHE
Screen are only sorted according to their width offset from origin ("left" in screen struct). Also sort screen that share a same width offset according to their height offset ("top" in screen struct).
2016-12-01Fix sfrestoreMathieu OTHACEHE
Use screen numset in sfrestore
2016-12-01Fix sfdumpMathieu OTHACEHE
Use screen numset in sfdump
2016-12-01Fix fdump and sselectMathieu OTHACEHE
Use screen numset in fdump and sselect.
2016-12-01Assign a number to each screen using a numsetMathieu OTHACEHE
A number is added to rp_screen to identify every screen. The screen numbers are affected at ratpoison start, when screens are sorted. On screen addition, a new number is requested. On screen deletion, the screen number is released.
2016-11-24Kill gcc unused function warningMathieu OTHACEHE
The xrandr_rotation_string function is used only if DEBUG is enabled.
2016-11-23Kill keysym_to_keycodes, commented out since 2006Jérémie Courrèges-Anglas
2016-11-23Kill redundant declJérémie Courrèges-Anglas
2016-11-23Fix rotations when using xrandrJérémie Courrèges-Anglas
2016-11-23define HAVE_XRANDR/link with libXrandr when we actually want toJérémie Courrèges-Anglas
2016-11-23Only call xrandr_fill_screen is xrandr is availableJérémie Courrèges-Anglas
2016-11-23Keep on handling ConfigureNotify if we don't have xrandrJérémie Courrèges-Anglas
2016-11-23Kill superflous var.Jérémie Courrèges-Anglas
2016-11-23Reinstate code that should stay: we may not have xrandrJérémie Courrèges-Anglas
2016-11-23Sprinkle more debug in xrandr code.Jérémie Courrèges-Anglas
2016-11-23Keep frame undo/redo local to actions.cJérémie Courrèges-Anglas
2016-11-23Reorder to put local variables togetherJérémie Courrèges-Anglas
2016-11-23Move more stuff from actions.h to actions.cJérémie Courrèges-Anglas
2016-11-23Dead definesJérémie Courrèges-Anglas
2016-11-23Kill more dead decls and functions.Jérémie Courrèges-Anglas
2016-11-23Move some implementation details from actions.h to actions.cJérémie Courrèges-Anglas
2016-11-23Consistent #include styleJérémie Courrèges-Anglas
2016-11-23Implement a "commands" command to dump all available... commandsJérémie Courrèges-Anglas
2016-11-23Switch rudeness to a settable variableJérémie Courrèges-Anglas
2016-11-23Kill unused declJérémie Courrèges-Anglas
2016-11-22Add a note to keep variables sorted.Jérémie Courrèges-Anglas
2016-11-22Kill "compat" and all support for "deffoo..."Jérémie Courrèges-Anglas
It's been more than 10 years that "compat" has been introduced, people have had enough time to change their config files and scripts.
2016-11-22Sort and insert variables in orderJérémie Courrèges-Anglas
Makes ''ratpoison -c set'' output more readable.
2016-11-22TypoJérémie Courrèges-Anglas
2016-11-22Make 'warp' and 'startupmessage' settable variables.Jérémie Courrèges-Anglas
For consistency with other variables they accept 0 or 1. The 'warp' and 'startup_message' commands stay around and still accept "on" and "off".
2016-11-22strcasestr was born in BSD land, contrary to what glibc saysJérémie Courrèges-Anglas
strcasestr might be a portability problems, it is non-standard and some C libraries out there might not provide it.
2016-11-22Temporarily mark sfrestore as brokenJérémie Courrèges-Anglas
2016-11-22Style nits, typo and non-existing functions.Jérémie Courrèges-Anglas
2016-11-21Only use xrandr if Xrandr init succeedsJérémie Courrèges-Anglas
2016-11-21Replace extra definition with a declarationJérémie Courrèges-Anglas
2016-11-17Add xrandr supportMathieu OTHACEHE
Drop deprecated xinerama support and replace it with xrandr. Signed-off-by: Mathieu OTHACEHE <m.othacehe@gmail.com>
2016-11-11Debug statement that snuck in previous.Jérémie Courrèges-Anglas
2016-11-11Introduce multiple completion styles.Mathieu OTHACEHE
The default, legacy style is named BASIC. A new completion style named SUBSTRING is added. Use SUBSTRING for window name completion in select command. Use BASIC everywhere else.
2016-06-12Simplify config file open checksJérémie Courrèges-Anglas
2016-06-12Read the system config even if the homedir can't be found.Jérémie Courrèges-Anglas
2016-06-12No need for getopt_long to return the index for long option parametersJérémie Courrèges-Anglas
2016-06-12Zero out struct sigaction instead of setting known fields.Jérémie Courrèges-Anglas
2016-06-12sigaction should always replace the signal handlerJérémie Courrèges-Anglas
The code is confusing, there is no reason to skip setting the handler if it is already set to SIG_IGN, especially now that SIG_IGN isn't used in ratpoison.
2016-06-12sigaction has other benefits than working on SVR4 systemsJérémie Courrèges-Anglas
2016-06-12Print a more readable error message if sigaction failsJérémie Courrèges-Anglas
2016-06-12set_sig_handler isn't used only for SIGALRMJérémie Courrèges-Anglas
2016-06-12Stop embedding build time, it makes builds less reproducible.Jérémie Courrèges-Anglas
2016-02-23Fix select error handling.brainwash
Skip the error message and only show the window list when selecting an used window number in interactive mode.
2015-06-16New settable variable, framemsgwaitJérémie Courrèges-Anglas
Same as "msgwait" for for "Current Frame" messages.
2015-06-16Make msgwait a variable; keep the command for a whileJérémie Courrèges-Anglas