Skip to main content
42 votes
Accepted

What is the file location of GNOME favorites?

They are stored in ~/.config/dconf/user, the dconf database. You can’t edit that file directly, you need to use gsettings (for command-line access or use in scripts) or dconf-editor. The favourites ...
Stephen Kitt's user avatar
36 votes
Accepted

Super+1, Super+2, Super+3, etc. keys can not be remapped in Gnome

It turns out that some keyboard shortcuts in Gnome do not show up in Settings → Devices → Keyboard → Keyboard Shortcuts. These "hidden" shortcuts are accessible by using the dconf-editor ...
Trevor's user avatar
  • 1,739
26 votes

Can't uninstall Gnome Shell Extension

Since the remove buttons are no longer available in gnome-shell 3.26, the only way I know is deleting the extension directory itself. With Nautilus Open Nautilus and show hidden files (press CTRL + H)...
shino47's user avatar
  • 369
23 votes

Can't uninstall Gnome Shell Extension

There are two folders for gnome-shell extensions: ~/.local/share/gnome-shell/extensions for user-side /usr/share/gnome-shell/extensions for system-side
Max Xu's user avatar
  • 331
19 votes

RHEL 7, GNOME shell - decrease desktop icon size

Run this in a terminal : gsettings set org.gnome.nautilus.icon-view default-zoom-level small
paul-emil's user avatar
  • 191
17 votes
Accepted

Scaling/HiDPI issue for QT5 applications under GNOME

I had some issues getting Viber to run properly on my HiDPI display. By default Viber would be massive to the point where I had to full-screen it in order to use it. The solution was to disable ...
Hubro's user avatar
  • 1,095
17 votes
Accepted

How does one run GNOME Shell in a window? (nested session)

env GNOME_SHELL_SLOWDOWN_FACTOR=2 \ MUTTER_DEBUG_DUMMY_MODE_SPECS=1024x768 \ dbus-run-session -- gnome-shell --nested \ --wayland Source
Scrooge McDuck's user avatar
16 votes

Set static number of workspaces in gnome-shell with dconf

As you've found out, you can do this via tweak-tool: and indeed, the changes are now done in the dconf database so if you prefer doing it in terminal you need to toggle dynamic-workspaces to false ...
don_crissti's user avatar
  • 85.6k
15 votes

Set window transparency in Gnome

You could change window opacity/transparency by changing property _NET_WM_WINDOW_OPACITY via xprop command. Run: xprop -format _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY 0x7FFFFFFF and ...
Danniello's user avatar
  • 301
15 votes

Scaling/HiDPI issue for QT5 applications under GNOME

According to the Archlinux Wiki: Since Qt 5.6, Qt 5 applications can be instructed to honor screen DPI by setting the QT_AUTO_SCREEN_SCALE_FACTOR environment variable. So, you just need to edit ~...
jokx's user avatar
  • 151
12 votes

How to get alt+right mouse to resize windows again!

If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
Dan Dascalescu's user avatar
12 votes
Accepted

Remove touchpad two-finger right-click

I came across https://askubuntu.com/questions/999631/ubuntu-17-10-disable-touchpad-bottom-right-corner-right-click That pointed me in the right direction. Running gsettings list-recursively org....
Alex Tartan's user avatar
  • 1,479
12 votes
Accepted

Disable auto resizing of windows when dragged to the top and/or screen edges

Open Terminal and run gsettings set org.gnome.mutter edge-tiling false You may also have to run gsettings set org.gnome.shell.overrides edge-tiling false
pomsky's user avatar
  • 1,148
12 votes
Accepted

gnome-shell error log

I'd start with journald's logs. Try one of these: $ journalctl /usr/bin/gnome-shell $ journalctl /usr/bin/gnome-session If the logs are not there then try this: $ journalctl -xe Googling I did find ...
slm's user avatar
  • 380k
12 votes

Command line tool to install GNOME Shell extensions

Solution 1 If you have the extension URLs then use the following. Here, I have put the extensions in an array. Place the URLs of the extensions you want to install in this array. #!/bin/bash array=( ...
Ahmad Ismail's user avatar
  • 3,100
12 votes

Ubuntu fails to boot due to GNOME display manager error

Had this issue with Ubuntu 24.04. Turns out that I installed fuse which removed ubuntu-session. All is well till you reboot and cant get past the stop plymouth start gdm part of boot. CTRL-ALT-F2 ...
James Dunn ErrorCode67's user avatar
11 votes

Sharing your desktop with Google Hangouts, dual monitor and GNOME Shell

Updated News Good news for everybody: We have the medicine, and you won't need workaround anymore. ; ) This bug was fixed in Chromium 83 Beta (dev/unstable). I have tested the version 83.0.4103.14 (...
Wagner Cipriano's user avatar
10 votes

Disabling keyboard shortcut for changing display setup in gnome-shell

I suggest you to try this (it works for me): Go in the dconf-editor via the command "dconf-editor" in a terminal, then go at: /org/gnome/mutter/keybindings/switch-monitor and disable "use default ...
Kailackous's user avatar
10 votes

Configure GNOME/Wayland display configuration from command line

The Mutter docs specify the interface with dbus as @don_crissti has pointed out in comments: https://gitlab.gnome.org/GNOME/mutter/blob/master/src/org.gnome.Mutter.DisplayConfig.xml You need to find ...
Florian Castellane's user avatar
10 votes

Sharing your desktop with Google Hangouts, dual monitor and GNOME Shell

I think I have found a better workaround than using vlc. We just need to create a fake webcam that shows our screen. # Unload sudo rmmod v4l2loopback # Load module sudo modprobe v4l2loopback video_nr=...
Ashark's user avatar
  • 1,209
9 votes

Save custom keyboard shortcuts in Gnome

Save custom keyboard shortcuts You can save/backup/export custom shortcuts/keybindings using just dconf and sed Export dconf dump / | sed -n '/\[org.gnome.settings-daemon.plugins.media-keys/,/^$/p' &...
Pablo A's user avatar
  • 3,225
9 votes

Copying [use of cp] issue

.* will expand to your hidden file, ., and ... This is an unfortunate part of how Bash filename expansion works: there is a directory entry called .., which consists of an initial . and then any ...
Michael Homer's user avatar
8 votes

How to set Super/Windows key to Show All Applications menu in GNOME DE?

Not sure why you couldn't get it working with those dconf settings. This works for me (in Ubuntu 18.04): gsettings set org.gnome.mutter overlay-key '' gsettings set org.gnome.shell.keybindings toggle-...
demonGeek's user avatar
8 votes
Accepted

Where did the status icons go in GNOME 3.26.x and what can I do to bring them back?

The legacy tray was removed in 3.26 (it was a stop-gap measure, destined to be removed at some point, as explained in the corresponding bug). This is also mentioned in the release notes. To see your ...
Stephen Kitt's user avatar
8 votes
Accepted

Restarting Gnome Shell 3.28.1 on Fedora 28

In an Xorg session one can restart GNOME shell without losing application state as applications are running against a separate server (X). But unlike Xorg in case of a Wayland session GNOME shell is ...
pomsky's user avatar
  • 1,148
7 votes

RHEL 7, GNOME shell - decrease desktop icon size

One more way how to change the size of desktop icons is directly from Nautilus: Open nautilus change the way of displayed icons to icon view NOT detailed view! zoom icons using Ctrl + mouse wheel ...
ino's user avatar
  • 357
7 votes

Changing the order of workspaces in Gnome Shell

There is an extension that allows you to reorder workspaces compatible with Gnome 3.38: Reorder Workspaces with Ctrl + Super + Up / Down. https://extensions.gnome.org/extension/3685/reorder-workspaces/...
Eric M.'s user avatar
  • 181
7 votes

Can't uninstall Gnome Shell Extension

Michael, I had the same problem with the same extensions. The problem is that they are "System Extensions" and not in the normal location of ~/.local/share/gnome-shell/extensions as others have said....
user1556446's user avatar
7 votes

Ubuntu 17.10 (gnome shell) and workspaces grid previews

Yes, you can do it using the Workspace Grid extension. Do one of the following (reproduced from the Installation section): Download the .zip file on the Downloads page. Open gnome-tweak-tool, ...
d4nyll's user avatar
  • 185
7 votes
Accepted

Login loop in Fedora 28

I had a similar problem and logged in a virtual terminal (ctrl + alt + f2) and disabled all gnome shell extensions with the following command: gsettings set org.gnome.shell enabled-extensions "[]" ...
DZDomi's user avatar
  • 378

Only top scored, non community-wiki answers of a minimum length are eligible