Pour ceux qui reçoivent le message (pop_os 20.04) :
No such schema “org.gnome.shell.extensions.dash-to-dock”
La solution est un plus long :
gsettings --schemadir ~/.local/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/ set org.gnome.shell.extensions.dash-to-dock scroll-action 'cycle-windows'
Explications :
J'ai installé manuellement mon dash-to-dock directement dans l'interface de l'entreprise. ~/.local/share/gnome-shell/extensions
c'est là que le schemas
est situé. Il doit être spécifié explicitement.
Utilisation de gsettings :
gsettings [--schemadir SCHEMADIR] set SCHEMA[:PATH] KEY VALUE
Définir la valeur de KEY à VALUE avec Arguments :
SCHEMADIR A directory to search for additional schemas
SCHEMA The name of the schema
PATH The path, for relocatable schemas
KEY The key within the schema
VALUE The value to set
Pour lister les CLÉS actuelles et leurs VALEURS :
gsettings --schemadir ~/.local/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/ list-recursively org.gnome.shell.extensions.dash-to-dock
Fuente d'inspiration