Last active
November 12, 2021 08:13
-
-
Save DoganM95/e1e921a3d2c682580470761ec7024931 to your computer and use it in GitHub Desktop.
My Personal ubuntu customization, in case i have to reinstall ubuntu and need my config back
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
#!/bin/bash | |
# Set display resolution to 4k | |
xrandr --output eDP-1 --mode 3840x2160 | |
# Set display scale to 125% (=1.75 to xrandr) | |
xrandr --output eDP-1 --scale 1.75x1.75 | |
# Move "Show Applications" button to the left side of the dock | |
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true | |
# Install gnome shell extensions (UI) | |
sudo apt install gnome-shell-extensions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment