Last active
August 29, 2022 10:52
-
-
Save bmcbm/941e01d6e63e1ff7954078d849230c60 to your computer and use it in GitHub Desktop.
Gnome3 Unity settings
This file contains hidden or 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
#!/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