Hidden Key Bindings? (Specifically Ctrl+Alt+D and Shift+Super+!)
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.
keyboard shortcut-keys gnome-shell
add a comment |Â
up vote
3
down vote
favorite
I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.
keyboard shortcut-keys gnome-shell
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.
keyboard shortcut-keys gnome-shell
I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.
keyboard shortcut-keys gnome-shell
keyboard shortcut-keys gnome-shell
edited Aug 20 at 8:20
Graham
2,09461526
2,09461526
asked Aug 19 at 20:05
Billl bob
182
182
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
5
down vote
accepted
There is some mystery, but it may be revealed:
Ctrl+Alt+D is defined
in/org/gnome/desktop/wm/keybindings/show-desktop
(check indconf-editor
):but Ctrl is named
<Primary>
here. So we can find them ingsettings
:gsettings list-recursively | egrep "Primary.*Alt.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']Shift+Super+! (or more precise Shift+Super+1)
seems to be secret - are shown in
dconf-editor
and ingsettings
:gsettings list-recursively | grep -i shift.*super
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']Ctrl+Super+D
is defined in GNOME Control Center â Keyboard (
gnome-control-center keyboard
) and indconf-editor
(see above):and in
gsettings
:gsettings list-recursively | egrep "Primary.*Super.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']
Conclusion:
- all stuff is shown in
gsettings
. But<Ctrl>
is named<Primary>
. - all this stuff looks more and more like
RegEdit
in some other operating system.
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
There is some mystery, but it may be revealed:
Ctrl+Alt+D is defined
in/org/gnome/desktop/wm/keybindings/show-desktop
(check indconf-editor
):but Ctrl is named
<Primary>
here. So we can find them ingsettings
:gsettings list-recursively | egrep "Primary.*Alt.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']Shift+Super+! (or more precise Shift+Super+1)
seems to be secret - are shown in
dconf-editor
and ingsettings
:gsettings list-recursively | grep -i shift.*super
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']Ctrl+Super+D
is defined in GNOME Control Center â Keyboard (
gnome-control-center keyboard
) and indconf-editor
(see above):and in
gsettings
:gsettings list-recursively | egrep "Primary.*Super.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']
Conclusion:
- all stuff is shown in
gsettings
. But<Ctrl>
is named<Primary>
. - all this stuff looks more and more like
RegEdit
in some other operating system.
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
add a comment |Â
up vote
5
down vote
accepted
There is some mystery, but it may be revealed:
Ctrl+Alt+D is defined
in/org/gnome/desktop/wm/keybindings/show-desktop
(check indconf-editor
):but Ctrl is named
<Primary>
here. So we can find them ingsettings
:gsettings list-recursively | egrep "Primary.*Alt.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']Shift+Super+! (or more precise Shift+Super+1)
seems to be secret - are shown in
dconf-editor
and ingsettings
:gsettings list-recursively | grep -i shift.*super
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']Ctrl+Super+D
is defined in GNOME Control Center â Keyboard (
gnome-control-center keyboard
) and indconf-editor
(see above):and in
gsettings
:gsettings list-recursively | egrep "Primary.*Super.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']
Conclusion:
- all stuff is shown in
gsettings
. But<Ctrl>
is named<Primary>
. - all this stuff looks more and more like
RegEdit
in some other operating system.
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
add a comment |Â
up vote
5
down vote
accepted
up vote
5
down vote
accepted
There is some mystery, but it may be revealed:
Ctrl+Alt+D is defined
in/org/gnome/desktop/wm/keybindings/show-desktop
(check indconf-editor
):but Ctrl is named
<Primary>
here. So we can find them ingsettings
:gsettings list-recursively | egrep "Primary.*Alt.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']Shift+Super+! (or more precise Shift+Super+1)
seems to be secret - are shown in
dconf-editor
and ingsettings
:gsettings list-recursively | grep -i shift.*super
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']Ctrl+Super+D
is defined in GNOME Control Center â Keyboard (
gnome-control-center keyboard
) and indconf-editor
(see above):and in
gsettings
:gsettings list-recursively | egrep "Primary.*Super.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']
Conclusion:
- all stuff is shown in
gsettings
. But<Ctrl>
is named<Primary>
. - all this stuff looks more and more like
RegEdit
in some other operating system.
There is some mystery, but it may be revealed:
Ctrl+Alt+D is defined
in/org/gnome/desktop/wm/keybindings/show-desktop
(check indconf-editor
):but Ctrl is named
<Primary>
here. So we can find them ingsettings
:gsettings list-recursively | egrep "Primary.*Alt.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']Shift+Super+! (or more precise Shift+Super+1)
seems to be secret - are shown in
dconf-editor
and ingsettings
:gsettings list-recursively | grep -i shift.*super
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']Ctrl+Super+D
is defined in GNOME Control Center â Keyboard (
gnome-control-center keyboard
) and indconf-editor
(see above):and in
gsettings
:gsettings list-recursively | egrep "Primary.*Super.*d"
org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']
Conclusion:
- all stuff is shown in
gsettings
. But<Ctrl>
is named<Primary>
. - all this stuff looks more and more like
RegEdit
in some other operating system.
edited Aug 20 at 3:52
muru
130k19274467
130k19274467
answered Aug 19 at 20:39
N0rbert
16.1k33275
16.1k33275
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
add a comment |Â
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
Perfect! Thank you very much
â Billl bob
Aug 19 at 22:56
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1066942%2fhidden-key-bindings-specifically-ctrlaltd-and-shiftsuper%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password