summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-06-05transset 1.0.0HEADmasterArnaud Fontaine1-1/+1
2012-06-05Rename dpy to disp in function parameter to avoid shadowing dpy global ↵Arnaud Fontaine2-30/+30
declaration.
2012-06-05Add missing const keywords on Fatal_Error() and program_name to clear GCC ↵Arnaud Fontaine2-4/+4
warnings.
2012-06-05Add _X_ATTRIBUTE_PRINTF attribute to Fatal_Error() to clear GCC warning.Arnaud Fontaine1-1/+1
2012-06-05Add _X_NORETURN to Usage() to clear GCC warning.Arnaud Fontaine1-1/+1
2012-06-05Use _X_NORETURN from xproto 7.0.17 instead of checking __GNUC__.Arnaud Fontaine2-6/+4
2012-06-05Add autogen.sh to EXTRA_DIST.Arnaud Fontaine1-0/+1
2012-06-05Clear GCC warning (-Wmaybe-uninitialized).Arnaud Fontaine1-4/+1
2012-02-15Add copyright statement and update accordingly COPYING file.Arnaud Fontaine2-29/+71
Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
2012-01-23Update README.Arnaud Fontaine1-37/+32
2012-01-20config: add dependency on xprotoGaetan Nadon1-1/+1
transSet.c includes <X11/Xatom.h> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20Remove XFree86 and IMakefile version control information in source codeGaetan Nadon2-3/+0
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20config: upgrade, comment and fix autoconf warningsGaetan Nadon1-8/+9
In the same way other xorg modules have been. - minimum autoconf level is 2.60 - AC_CONFIG_HEADER (singular) is obsolete Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20make: remove $(LIBOBJS) dead codeGaetan Nadon1-1/+1
Starting at Autoconf 2.53, the use of LIBOBJS is an error. http://www.gnu.org/software/autoconf/manual/autoconf.html# AC_005fLIBOBJ-vs-LIBOBJS There are no system functions to override in this module. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20man: normalize man page header/footerGaetan Nadon1-2/+2
Do not hard coded man page section number. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20man: use X.Org makefile which will also fix failing distcheckGaetan Nadon4-5/+21
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20autogen.sh: use the X.Org versionGaetan Nadon1-1/+11
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-01-20AUTHORS: remove empty fileGaetan Nadon1-0/+0
Not required when Automake is initialized with "foreign" keyword. It can be added with proper content anytime. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-12-14Get rid of useless includes.Arnaud Fontaine3-5/+1
2011-12-14Use enum for selected method for readability sake.Arnaud Fontaine1-12/+30
2011-12-14Use Bool rather than int type for booleans.Arnaud Fontaine1-13/+13
2011-12-14Fix GCC warning (-Wuninitialized).Arnaud Fontaine1-1/+1
2011-12-14Close property the Display and fix error exit code value.Arnaud Fontaine1-2/+5
2011-12-14Remove useless malloc().Arnaud Fontaine1-2/+0
2011-12-14Free properly memory allocated by XQueryTree().Arnaud Fontaine1-1/+2
2011-12-14Fix coding style.Arnaud Fontaine3-462/+499
2011-10-30Add missing static qualifiers.Arnaud Fontaine3-8/+5
2011-10-30Fix GCC warning about old-style function definitions.Arnaud Fontaine2-25/+10
2011-10-30Add INSTALL file.Arnaud Fontaine1-9/+6
2011-10-30Add .gitignore.Arnaud Fontaine1-0/+79
2011-10-30Get rid of unused code from dsimple.c.Arnaud Fontaine2-339/+13
2011-10-30Merge branch 'transset-df'Arnaud Fontaine4-44/+400
2011-10-302007-09-21 Daniel Forchheimer <n04df@student.lth.se>transset-dfArnaud Fontaine2-6/+27
Release v6 * transSet.c Select flag: --actual Set transparency to the actual focused X11 window Thanks to Roman Divacky for the patch
2011-10-302006-01-10 Daniel Forchheimer <n04df@efd.lth.se>Arnaud Fontaine1-9/+8
Release v5 * transSet.c: Applied patch so that transset-df compiles with gcc 2.95 Thanks to Andreas Kohn for the patch
2011-10-302005-03-13 Daniel Forchheimer <n04df@efd.lth.se>Arnaud Fontaine4-70/+186
Release v4 Bugfix: select by name or id didn't work in many windowmanagers like xfce and wmaker. * transSet.c: Function get_top_window() fixes the bug Options verbose, no-regex * dsimple.c: Window_With_Name_Regex() now takes same arguments as Window_With_Name() * Makefile: Added simple install instructions 2005-02-08 Daniel Forchheimer <n04df@efd.lth.se> Select name now takes a regular expression Fixed all warnings * dsimple.c: Window_With_Name_Regex() * transSet.c: use the new regex function print the name (if possible) * dsimple.h: Added the new functions to avoid warnings
2011-10-302005-01-14 Daniel Forchheimer <n04df@efd.lth.se>Arnaud Fontaine2-23/+82
Release v3 * transSet.c: Select by name (-n, --name) Select by id (-i, --id)
2011-10-302005-01-14 Daniel Forchheimer <n04df@efd.lth.se>Arnaud Fontaine2-7/+46
* transSet.c: Options increase/decrease Options maximum/minimum
2011-10-302005-01-13 Daniel Forchheimer <n04df@efd.lth.se>Arnaud Fontaine3-36/+158
* transSet.c: (main): Forked transset-df of transset Added flags Added select without clicking Wrote usage * dsimple.c: Added function to select without clicking
2011-10-21Remove unneccessary configure stepsAlan Coopersmith1-16/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-10-21Drop unnecessary dependenciesAlan Coopersmith2-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-10-21Convert to autoconf/automakeStuart Kreitman8-22/+97
2004-01-202004-01-20 Keith Packard <keithp@keithp.com>Keith Packard2-25/+53
* transSet.c: (main): Change property name to _NET_WM_WINDOW_OPACITY Report values as doubles. Delete property when opaque.
2003-11-24Initial revisionKeith Packard4-0/+719