web-dev-qa-db-fra.com

Comment lancer le module de contrôle de Kde en ligne de commande?

En cliquant avec le bouton droit de la souris sur la barre du haut d'une fenêtre, vous accédez aux paramètres du gestionnaire de fenêtres via "Configurer le comportement de la fenêtre". Ici, vous pouvez apprendre et configurer les fonctionnalités avancées de KWin.

Mais existe-t-il un moyen de lancer les paramètres du gestionnaire de fenêtres à l'aide de la ligne de commande?

8
Alessandro

Modules de contrôle KDE

Commander:

kcmshell4 --help

Dira:

Usage: kcmshell4 [Qt-options] [KDE-options] [options] module 

A tool to start single KDE control modules

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --list                    List all possible modules

Arguments:
  module                    Configuration module to open
  --lang <language>         Specify a particular language
  --silent                  Do not display main window
  --args <arguments>        Arguments for the module

Vous pouvez utiliser la commande list:

kcmshell4 --list

The following modules are available:
kwincompositing           - Configure desktop effects
display                   - Display Settings
autostart                 - A configuration tool for managing which programs start up.
ebrowsing                 - Configure enhanced browsing
kcm_phonon                - Sound and Video Configuration
.... cut....

Vous pouvez choisir plus d'un module à savoir. la commande:

kcmshell4 kwincompositing kwindecoration kwinoptions kwinrules kwinscreenedges kwintabbox

va commencer les modules

enter image description here

kwincompositing           - Configure desktop effects
kwindecoration            - Configure the look and feel of window titles
kwinoptions               - Configure the window behavior
kwinrules                 - Configure settings specifically for a window
kwinscreenedges           - Configure active screen edges
kwintabbox                - Configure the behavior for navigating through windows
17
user26687