#!/bin/sh # First of all, "enable-animations" shouldn't be on by default, # because it's a lame setting that interferes with the natural # anticipatory targeting behavior of the human eye. Harrumph. # Secondly, even if it is on by default, turning it off in # dconf-editor ought to cause it to stay turned off. However, I find # I have to reset it in dconf-editor for every Gnome 3 session. Oy. # Time to script it: gsettings set org.gnome.desktop.interface enable-animations "false" # Some other settings to think about: # # org.gnome.desktop.interface clock-format "24h" # org.gnome.desktop.interface clock-show-date "true" # org.gnome.desktop.interface clock-show-seconds "false" # # org.gnome.desktop.privacy hide-identity "true" # org.gnome.desktop.privacy show-full-name-in-top-bar "false" # # org.gnome.desktop.wm.preferences raise-on-click "true" # org.gnome.desktop.wm.preferences focus-mode "mouse" # org.gnome.desktop.wm.preferences num-workspaces "9" # org.gnome.desktop.wm.preferences workspace-names [] # # org.gnome.desktop.wm.keybindings switch-to-workspace-1 ['F1'] # org.gnome.desktop.wm.keybindings switch-to-workspace-2 ['F2'] # org.gnome.desktop.wm.keybindings switch-to-workspace-3 ['F3'] # org.gnome.desktop.wm.keybindings switch-to-workspace-4 ['F4'] # org.gnome.desktop.wm.keybindings switch-to-workspace-5 ['F5'] # org.gnome.desktop.wm.keybindings switch-to-workspace-6 ['F6'] # org.gnome.desktop.wm.keybindings switch-to-workspace-7 ['F7'] # org.gnome.desktop.wm.keybindings switch-to-workspace-8 ['F8'] # org.gnome.desktop.wm.keybindings switch-to-workspace-9 ['F9']