For those who get the message (pop_os 20.04):
No such schema “org.gnome.shell.extensions.dash-to-dock”
The solution is a longer:
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'
Explanations:
I've manually installed my dash-to-dock directly in the ~/.local/share/gnome-shell/extensions
, which is where the schemas
directory is located. It has to be specified explicitly.
Usage of gsettings:
gsettings [--schemadir SCHEMADIR] set SCHEMA[:PATH] KEY VALUE
Set the value of KEY to VALUE with 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
To list the current KEYs and their VALUEs:
gsettings --schemadir ~/.local/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/ list-recursively org.gnome.shell.extensions.dash-to-dock
Source of inspiration
Editor dconf
thecycle-windows
option is'nt listed and isn't showd as current option. – user2342558 May 09 '19 at 12:07get
method, it's showing thatscroll-action
has already been set to'cycle-windows'
. This had not been working previously. However, I don't know what happened... after installing *Dash to Dock, I disabled it using Tweak Tools* app, and now I can scroll!! Thanks again for your time and prompt replies :) – Milan Feb 03 '21 at 02:52Ubuntu 20.04.4 LTS
in 2022 – shyammakwana.me Aug 23 '22 at 10:45