Skip to content

Instantly share code, notes, and snippets.

@bmcbm
Last active August 29, 2022 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmcbm/941e01d6e63e1ff7954078d849230c60 to your computer and use it in GitHub Desktop.
Save bmcbm/941e01d6e63e1ff7954078d849230c60 to your computer and use it in GitHub Desktop.
Gnome3 Unity settings
#!/bin/bash
# Add date and weekeday to clock to Gnome Shell
gsettings set org.gnome.desktop.interface clock-show-date true
gsettings set org.gnome.desktop.interface clock-show-weekday true
# Move window control buttons to the left, Unity Style
gsettings set org.gnome.desktop.wm.preferences button-layout close,minimize,maximize:
# Move show application button from bottom of dash to top
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true
# Show week numbers in the calendar
gsettings set org.gnome.desktop.calendar show-weekdate true
# Enable Minimise on Click in Dock
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
# Re-enable rightclick on trackpad
# https://medium.com/@pck/ubuntu-18-04-fix-for-right-click-not-working-touchpad-issues-40037ff249e1
# gsettings set org.gnome.desktop.peripherals.touchpad click-method areas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment