While working with ubuntu 23.10, I want to disable the functioning of the Windows key from the command or program. How can I achieve it?
Asked
Active
Viewed 54 times
' '
, whereas one of the linked question's answers does not and has""
– Daniel T Feb 06 '24 at 08:57gsettings get org.gnome.mutter overlay-key
in bash? – Daniel T Feb 06 '24 at 09:38gsettings set org.gnome.mutter overlay-key ''
– Umang Jais Feb 07 '24 at 08:18/root/.config/dconf/user
. When you run it without sudo, it writes to/home/username/.config/dconf/user
. These are two different files. You might wantsystem("su username -c \"gsettings set org.gnome.mutter overlay-key '' \"");
– Daniel T Feb 07 '24 at 08:20