Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.92 KB

File metadata and controls

48 lines (35 loc) · 1.92 KB

Gnome

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']"

Disable bell

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

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

Capture tools