Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 3. Disabling the hot corner functionality on GNOME Shell
The GNOME environment provides the hot corner functionality, which is enabled by default. This means that when you move the cursor to the area of the upper-left corner and push the cursor to the screen corner, the Activities Overview menu opens automatically.
However, you may want to disable this feature to not open Activities Overview unintentionally.
3.1. Disabling hot corner using Settings Link kopierenLink in die Zwischenablage kopiert!
To disable the hot corner functionality using the Settings application, follow this procedure.
This procedure disables the hot corner functionality for a single user.
Procedure
- Open the Settings application by clicking the gear button.
 - In the Settings application, go to Multitasking.
 In the General section, disable the button.
Disabling hot corner using the Settings application
						
3.2. Disabling hot corner using gsettings Link kopierenLink in die Zwischenablage kopiert!
To disable the hot corner functionality using the gsettings command-line utility, follow this procedure.
Procedure
Disable the hot corner feature:
gsettings set org.gnome.desktop.interface enable-hot-corners false
$ gsettings set org.gnome.desktop.interface enable-hot-corners falseCopy to Clipboard Copied! Toggle word wrap Toggle overflow 
Verification
Optionally, verify that the hot corner feature is disabled:
gsettings get org.gnome.desktop.interface enable-hot-corners
$ gsettings get org.gnome.desktop.interface enable-hot-corners falseCopy to Clipboard Copied! Toggle word wrap Toggle overflow 
3.3. Disabling the hot corner functionality for all users Link kopierenLink in die Zwischenablage kopiert!
				To disable the hot corner functionality for all users, you need to create a dconf profile.
			
Procedure
Create the user profile in the
/etc/dconf/profile/userfile.user-db:user system-db:local
user-db:user system-db:localCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create a file in the
/etc/dconf/db/local.d/directory, for example/etc/dconf/db/local.d/00-interface, with the following content:Specify the dconf path GSettings key names and their corresponding values
# Specify the dconf path [org/gnome/desktop/interface] # GSettings key names and their corresponding values enable-hot-corners='FALSE'Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a file in the
/etc/dconf/db/local.d/locksdirectory, for example/etc/dconf/db/local.d/locks/00-interface, with the following content:Prevent users from changing values for the following keys:
# Prevent users from changing values for the following keys: /org/gnome/desktop/interface/enable-hot-cornersCopy to Clipboard Copied! Toggle word wrap Toggle overflow The configuration file locks down the
/org/gnome/desktop/interface/enable-hot-cornerskey for all users. This key controls whether the hot corner is enabled.Update the system databases for the changes to take effect.
dconf update
# dconf updateCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Ensure that all users log out. The changes take effect when users log back in.