Skip to content

Instantly share code, notes, and snippets.

@giner
Last active May 19, 2022 04:25
Show Gist options
  • Save giner/07bc9f3bcbe91478e834a66c62a9d058 to your computer and use it in GitHub Desktop.
Save giner/07bc9f3bcbe91478e834a66c62a9d058 to your computer and use it in GitHub Desktop.
Gnome: configure
## Move window buttons to the left (mimic Unity)
gsettings set org.gnome.desktop.wm.preferences button-layout 'close,maximize,minimize:'
## Show date, week day, week number
gsettings set org.gnome.desktop.interface clock-show-weekday true
gsettings set org.gnome.desktop.calendar show-weekdate true
## Assign '<Ctrl><Shift>d' to detach a tab in gnome-terminal
GSETTINGS_SCHEMA=org.gnome.Terminal.Legacy.Keybindings
GSETTINGS_PATH=/org/gnome/terminal/legacy/keybindings/
SCHEMA_PATH=$GSETTINGS_SCHEMA:$GSETTINGS_PATH
gsettings set $SCHEMA_PATH detach-tab '<Ctrl><Shift>d'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment