Change alt-tab
https://superuser.com/questions/394376/how-to-prevent-gnome-shells-alttab-from-grouping-windows-from-similar-apps
wmctrl -a $(wmctrl -l | grep -e "@.*: " | cut -c 20-)
https://askubuntu.com/questions/441395/keyboard-shortcut-to-focus-on-idle-terminal
dconf dump /org/gnome/desktop/wm/keybindings/
dconf write /org/gnome/desktop/wm/keybindings/switch-windows "['<ALT>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-applications "['<Super>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-applications-backward "['<Shift><Super>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-windows-backward "['<Shift><Alt>Tab']"
from https://gitlab.gnome.org/GNOME/console/-/issues/147#note_1548960
gsettings set org.gnome.desktop.wm.preferences audible-bell false
Disable automatic suspend for PC
- https://askubuntu.com/questions/1014965/automatic-suspend-computer-will-suspend-very-soon-because-of-inactivity-ho
- https://sleeplessbeastie.eu/2020/08/19/how-to-alter-ubuntu-desktop-configuration-using-terminal/
gsettings list-recursively | grep "\\.power"
dconf write /org/gnome/settings-daemon/plugins/power/active false
dconf write /org/gnome/settings-daemon/plugins/power/sleep-inactive-ac-timeout 0
#dconf write /org/gnome/settings-daemon/plugins/power/sleep-inactive-ac-type nothing
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'nothing'
dconf write /org/gnome/settings-daemon/plugins/power/sleep-inactive-battery-timeout 0
#dconf write /org/gnome/settings-daemon/plugins/power/sleep-inactive-battery-type nothing
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-type 'nothing'
As root and as gdm with dbus-run-session -- bash