Afegits scripts per a deshabilitar atajos de teclat en debian-gnome

This commit is contained in:
2026-03-09 19:15:27 +01:00
parent f21a3db259
commit 45e3bd3090
2 changed files with 62 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
case "$1" in
off)
echo "Deshabilitando la tecla Super para abrir Actividades..."
gsettings set org.gnome.mutter overlay-key ''
;;
on)
echo "Habilitando la tecla Super para abrir Actividades..."
gsettings reset org.gnome.mutter overlay-key
;;
*)
echo "Uso: $0 {on|off}"
exit 1
;;
esac