Utilities to configure the MATE desktop
Go to file
Nedko Arnaudov 82dca28764 autotools: make polkit dependency optional 2023-03-01 14:22:17 +02:00
.github update issue template 2020-12-08 13:27:10 +01:00
.tx tx: migrate config file 2022-10-28 23:46:06 +02:00
capplets autotools: make polkit dependency optional 2023-03-01 14:22:17 +02:00
font-viewer Remove build warning -Wbad-function-cast 2022-02-09 04:29:07 +00:00
help tx: sync with transifex 2022-11-11 19:07:52 +01:00
its migrate from intltool to gettext 2019-11-07 13:20:17 +01:00
libslab bookmark-agent: remove whitespaces before #if, #else, and #endif 2022-02-09 04:50:01 +00:00
libwindow-settings Use a blank line at most 2021-11-20 21:45:51 +01:00
man man: fix title of mate-window-properties page 2017-12-14 12:57:49 +03:00
po tx: sync with transifex 2022-11-11 19:07:52 +01:00
shell Fix build warnings about missing field initializer 2021-11-11 19:49:25 +01:00
typing-break Use a blank line at most 2021-11-20 21:45:51 +01:00
.build.yml travis: build with mate-common-1.24.2 from repos 2021-03-08 17:44:00 +01:00
.travis.yml travis-Ci: use libera.chat as notification server 2021-08-07 13:40:29 +02:00
AUTHORS prepare for 1.2 release 2012-02-29 01:03:41 +01:00
COPYING fix wrong fsf address in COPYING 2012-11-14 00:12:17 +01:00
ChangeLog Add empty ChangeLog to allow build from git 2013-03-28 00:35:38 +01:00
Makefile.am build: allow users to disable gettext support (--disable-nls) 2021-02-16 14:07:47 +01:00
NEWS release 1.27.0 2022-11-11 20:33:19 +01:00
README add installation instructions 2019-03-10 18:07:20 +01:00
TODO re-coding default applications 2012-05-13 07:46:32 -03:00
autogen.sh Remove USE_MATE2_MACROS from autogen.sh (legacy) 2020-11-17 11:14:06 +01:00
configure.ac autotools: make polkit dependency optional 2023-03-01 14:22:17 +02:00
git.mk Add git.mk to generate .gitignore 2020-06-23 20:43:58 +02:00
gla11y.mk gla11y: use version 0.3 which already defaults to using python3 2019-07-27 09:38:52 +02:00
makepot tx: add fixes to makepot script 2019-11-07 13:29:53 +01:00
mate-control-center.pot tx: update resource 2022-10-29 15:39:07 +02:00
org.mate.control-center.gschema.xml.in Rework gsettings schema building 2015-09-08 11:51:41 +02:00
org.mate.control-center.keybinding.gschema.xml.in Rework gsettings schema building 2015-09-08 11:51:41 +02:00

README

MATE Control Center
====================

About -

The control center is MATE's main interface for configuration of various
aspects of your desktop.

Installation -

./autogen.sh
make
make install

How to report bugs -

Bugs should be reported to the MATE bug tracking system under github:
	https://github.com/mate-desktop/mate-control-center/issues

In the report please include the following information -

	Operating system and version
	For Linux, version of the C and glib libraries
	How to reproduce the bug if possible
	If the bug was a crash, include the exact text that was printed out
	A stacktrace where possible [see below]

How to get a stack trace -

If the crash is reproducible, it is possible to get a stack trace and
attach it to the bug report. The following steps are used to obtain a
stack trace -

	Run the program in gdb [the GNU debugger] or any other debugger
		ie. gdb mate-keyboard-properties
	Start the program
		ie. (gdb) run
	Reproduce the crash and the program will exit to the gdb prompt
	Get the back trace
		ie. (gdb) bt full

Once you have the backtrace, copy and paste this either into the
'Comments' field or attach a file with it included.


Patches -

Patches should be submitted to github as pull requests:
	https://github.com/mate-desktop/mate-control-center/pulls
	https://help.github.com/articles/fork-a-repo
	https://help.github.com/articles/using-pull-requests