Last active
January 6, 2025 19:07
-
-
Save kitzberger/86701fc285c829bf567e69f999935cb8 to your computer and use it in GitHub Desktop.
Ubuntu (customizations)
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
# Install important stuff | |
sudo apt install \ | |
make moreutils sshfs terminator php-cli \ | |
nextcloud-desktop \ | |
chromium-browser \ | |
thunderbird \ | |
nemo \ | |
gnome-shell-extension-prefs \ | |
gedit | |
# Remove unnecessary crap | |
sudo apt remove gnome-text-editor | |
sudo snap install slack | |
# Make nemo the default file manager | |
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search | |
# Move file dialog buttons from top to bottom (Ubuntu 20.04-22.04) | |
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/DialogsUseHeader':<0>}" | |
# Move close,minimize,maximize buttons to the left | |
gsettings set org.gnome.desktop.wm.preferences button-layout "close,minimize,maximize:" | |
# Install Docker and ddev | |
https://docs.docker.com/engine/install/ubuntu/ | |
https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/#linux | |
# Docker-Storage ändern | |
vi /etc/docker/daemon.json | |
``` | |
{ | |
"data-root": "/projects/.docker" | |
} | |
``` |
- ...
- Save As Dialog Box does not get focus in Ubuntu 22.04
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1968887
Fixed in Ubuntu 24.04!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment