Programatically hide Gnome desktop dock [duplicate]
up vote
6
down vote
favorite
This question already has an answer here:
How to auto-hide the Ubuntu Dock using gsettings in Ubuntu 17.10?
1 answer
How can I toggle the automatic dock hiding feature programmatically?
To be more precise, how can I toggle the feature from a command line script or toggle it with a shortcut?
18.04 gnome-shell ubuntu-dock
marked as duplicate by pomsky, Zanna, karel, Eric Carvalho, Fabby Nov 29 at 22:18
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
6
down vote
favorite
This question already has an answer here:
How to auto-hide the Ubuntu Dock using gsettings in Ubuntu 17.10?
1 answer
How can I toggle the automatic dock hiding feature programmatically?
To be more precise, how can I toggle the feature from a command line script or toggle it with a shortcut?
18.04 gnome-shell ubuntu-dock
marked as duplicate by pomsky, Zanna, karel, Eric Carvalho, Fabby Nov 29 at 22:18
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
This question already has an answer here:
How to auto-hide the Ubuntu Dock using gsettings in Ubuntu 17.10?
1 answer
How can I toggle the automatic dock hiding feature programmatically?
To be more precise, how can I toggle the feature from a command line script or toggle it with a shortcut?
18.04 gnome-shell ubuntu-dock
This question already has an answer here:
How to auto-hide the Ubuntu Dock using gsettings in Ubuntu 17.10?
1 answer
How can I toggle the automatic dock hiding feature programmatically?
To be more precise, how can I toggle the feature from a command line script or toggle it with a shortcut?
This question already has an answer here:
How to auto-hide the Ubuntu Dock using gsettings in Ubuntu 17.10?
1 answer
18.04 gnome-shell ubuntu-dock
18.04 gnome-shell ubuntu-dock
edited Nov 28 at 17:22
pomsky
27.6k1184111
27.6k1184111
asked Nov 28 at 11:01
DGAPCA
425
425
marked as duplicate by pomsky, Zanna, karel, Eric Carvalho, Fabby Nov 29 at 22:18
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by pomsky, Zanna, karel, Eric Carvalho, Fabby Nov 29 at 22:18
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
7
down vote
accepted
Basically, you can achieve what you want by issuing the following commands on a terminal:
Enable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false
gsettings set org.gnome.shell.extensions.dash-to-dock autohide true
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide true
Disable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed true
gsettings set org.gnome.shell.extensions.dash-to-dock autohide false
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false
For more info check this answer.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
accepted
Basically, you can achieve what you want by issuing the following commands on a terminal:
Enable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false
gsettings set org.gnome.shell.extensions.dash-to-dock autohide true
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide true
Disable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed true
gsettings set org.gnome.shell.extensions.dash-to-dock autohide false
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false
For more info check this answer.
add a comment |
up vote
7
down vote
accepted
Basically, you can achieve what you want by issuing the following commands on a terminal:
Enable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false
gsettings set org.gnome.shell.extensions.dash-to-dock autohide true
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide true
Disable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed true
gsettings set org.gnome.shell.extensions.dash-to-dock autohide false
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false
For more info check this answer.
add a comment |
up vote
7
down vote
accepted
up vote
7
down vote
accepted
Basically, you can achieve what you want by issuing the following commands on a terminal:
Enable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false
gsettings set org.gnome.shell.extensions.dash-to-dock autohide true
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide true
Disable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed true
gsettings set org.gnome.shell.extensions.dash-to-dock autohide false
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false
For more info check this answer.
Basically, you can achieve what you want by issuing the following commands on a terminal:
Enable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false
gsettings set org.gnome.shell.extensions.dash-to-dock autohide true
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide true
Disable smart autohide:
gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed true
gsettings set org.gnome.shell.extensions.dash-to-dock autohide false
gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false
For more info check this answer.
answered Nov 28 at 11:19
dgonzalez
3,83031024
3,83031024
add a comment |
add a comment |