From ae1c76ff830d146d41e88d6fba724c0a54bce868 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:45:20 +0200 Subject: Adding upstream version 1:43.6. Signed-off-by: Daniel Baumann --- man/gnome-control-center.xml | 361 +++++++++++++++++++++++++++++++++++++++++++ man/meson.build | 26 ++++ 2 files changed, 387 insertions(+) create mode 100644 man/gnome-control-center.xml create mode 100644 man/meson.build (limited to 'man') diff --git a/man/gnome-control-center.xml b/man/gnome-control-center.xml new file mode 100644 index 0000000..bcb9f63 --- /dev/null +++ b/man/gnome-control-center.xml @@ -0,0 +1,361 @@ + + + + + + + gnome-control-center + GNOME + + + + Maintainer + Bastien + Nocera + hadess@hadess.net + + + + + + + gnome-control-center + 1 + User Commands + + + + gnome-control-center + Configure GNOME settings + + + + + gnome-control-center OPTION PANEL ARG + + + + + Description + + gnome-control-center is a graphical + user interface to configure various aspects of GNOME. + + When run without arguments, the shell displays the + overview, which shows all available + configuration panels. The overview allows to open individual + panels by clicking on them. It also has a search entry + to find panels by searching keywords. + + It is also possible to specify a panel name + as commandline argument to go directly to that panel. + Individual panels may accept further arguments to specify + which tab to open (for multi-tabbed panels) or which + item to display (for panels with lists). + + Note that gnome-control-center + is not meant to expose each and every setting that is + available. The settings that can be found here represent + what is considered useful and commonly needed options. + For more exotic or uncommon options, you can look at + gnome-tweak-tool or the + gsettings commandline utility. + + + + Panels + + The following panel names can be specified: + + + + + + The background panel lets you + set your desktop background. + + + + + + The bluetooth panel lets you + configure your computer's Bluetooth adapter, + and pair the computer with Bluetooth keyboards, + phones, etc. + + + + + + The color panel can calibrate + monitors, web cams and printers for accurate + color reproduction. + + + + + + The datetime panel lets you + set the timezone and time format. + Some operations in this panel + affect all user accounts on the computer + and require privieges. + + + + + + The display panel configures + the resolution and arrangement of monitors + and laptop panels. Note that monitors can be + rearranged by drag-and-drop, and you can change + which monitor is your main display by dragging + the black bar. + + + + + + The info-overview panel shows a general + overview of the system configuration. It also + lets you change the default applications for + various tasks and the handling of removable + media. + + + + + + The keyboard panel can + change how the keyboard reacts to key + presses and lets you change keyboard + shortcuts or create custom shortcuts. + You can open this panel on a + specific tab by passing + or as extra + argument. + + + + + + The mouse panel can change + how mice and touchpads react to user + input. + + + + + + The network panel provides + a view of available network devices (wired, + wireless or mobile) and their current + configuration. It also provides a way to + create new VPN connections and configure + proxy settings. + You can open this panel on a + specific dialog by passing + , + , + , + or + as extra + argument. The last three parameters + require an additional extra argument for + the network object in the form + /org/freedesktop/NetworkManager/Devices/0. + + + + + + + The notifications panel provides + a way to control the display of notifications. + + + + + + + The online-accounts panel + shows your configured online accounts and + lets you add or remove accounts. + + + + + + The power panel shows + the fill level of batteries and can + configure what happens when the computer + is idle or runs out of battery. + + + + + + The printers panel shows + all known printers and their status. It is + possible to inspect queued print jobs and + add new printers. + Some operations in this panel require + privileges. + + + + + + The privacy panel allows + to control visible file usage history, temporary + files, and name. + + + + + + + The region panel + contains regional settings such as + the display language, formatting for + times, dates, numbers, and input sources. + + + + + + + The search panel controls + the results visible in the overview, and the + files and folders to be indexed. + + + + + + + The screen panel contains + settings that control the screen brightness + and screen lock behavior. + + + + + + The sharing panel contains + settings that control what is shared over the + network. + + + + + + The sound panel shows + all known sound devices and their configuration, + including volume and balance settings. + You can open this panel on a + specific tab by passing + , + , + , + or + as extra + argument. + + + + + + The universal-access panel + contains settings for accessible technologies + such as the screen reader, magnifier, screen + keyboard and AccessX options. + + + + + + The user-accounts panel + shows all user accounts that exist on the + computer and allows to change them in some + ways, such as changing the user name, password + or permissions. It also allows to create + or remove accounts. + Some operations in this panel require + privileges. + + + + + + the wacom panel shows + connected Wacom graphics tablets and lets + you calibrate and configure such devices. + + + + + + + + Options + + + + , + + Prints a short help + text and exits. + + + + + + Prints the program version + and exits. + + + + , + + Enables verbose mode. + + + + , + + Lists the available panels + and exits. + + + + , + + Opens the overview. + + + + term, term + + Sets the following search term. + + + + + + + Exit status + + On success 0 is returned, a non-zero failure + code otherwise. + + + + See Also + + gsettings1 + + + + diff --git a/man/meson.build b/man/meson.build new file mode 100644 index 0000000..1e9e089 --- /dev/null +++ b/man/meson.build @@ -0,0 +1,26 @@ +xsltproc = find_program('xsltproc', required: false) +assert(xsltproc.found(), 'xsltproc is required to build documentation') + +xsltproc_cmd = [ + xsltproc, + '--output', '@OUTPUT@', + '--nonet', + '--stringparam', 'man.output.quietly', '1', + '--stringparam', 'funcsynopsis.style', 'ansi', + '--stringparam', 'man.th.extra1.suppress', '1', + '--stringparam', 'man.authors.section.enabled', '0', + '--stringparam', 'man.copyright.section.enabled', '0', + 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl', + '@INPUT@' +] + +output = meson.project_name() + '.1' + +custom_target( + output, + input : meson.project_name() + '.xml', + output : output, + command : xsltproc_cmd, + install : true, + install_dir : join_paths(control_center_mandir, 'man1') +) -- cgit v1.2.3