Last active
May 19, 2022 04:25
-
-
Save giner/07bc9f3bcbe91478e834a66c62a9d058 to your computer and use it in GitHub Desktop.
Gnome: configure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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