Last active
December 23, 2025 22:39
-
-
Save antespi/59b689189e568ef7fc27a115a8e4263d to your computer and use it in GitHub Desktop.
Ubuntu + Gnome install
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
| APT (standard) | |
| ------------------------ | |
| VLC (vlc) | |
| ffmpeg (ffmpeg) | |
| Gimp (gimp) | |
| Diodon (diodon) | |
| Shutter (https://github.com/mvivarelli/shutter-on-wayland --> shutter) | |
| tilix | |
| git-cola | |
| APT (custom) | |
| ------------------------ | |
| mise (mise) | |
| docker (docker-ce) | |
| pgdg (postgresql-client-16) | |
| slack (slack-desktop) | |
| 1Password (1password) | |
| .deb installers: | |
| ------------------------ | |
| DBeaver (https://dbeaver.io/download/ --> https://dbeaver.io/files/dbeaver-ce_latest_amd64.deb) | |
| Postman (https://www.postman.com/downloads --> https://dl.pstmn.io/download/latest/linux_64) | |
| Google Chrome (https://www.google.com/intl/es_es/chrome/) | |
| Warp (https://www.warp.dev/download --> https://app.warp.dev/get_warp?package=deb) | |
| Dropbox (https://www.dropbox.com/install-linux --> https://www.dropbox.com/download?dl=packages/ubuntu/dropbox_2025.05.20_amd64.deb) | |
| Gnome extensions: | |
| ------------------------ | |
| - System Monitor Next: https://extensions.gnome.org/extension/3010/system-monitor-next/ | |
| Starship | |
| --------------------- | |
| $ curl -sS https://starship.rs/install.sh | sh | |
| ~/.bashrc | |
| --------------------- | |
| eval "$(starship init bash)" | |
| APT repositories | |
| --------------------- | |
| $ curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /etc/apt/keyrings/1password-archive-keyring.gpg | |
| /etc/apt/sources.list.d/1password.list: | |
| ------------------------ | |
| deb [arch=amd64 signed-by=/etc/apt/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main | |
| $ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | |
| $ sudo chmod a+r /etc/apt/keyrings/docker.asc | |
| /etc/apt/sources.list.d/docker.sources: | |
| ------------------------ | |
| Types: deb | |
| URIs: https://download.docker.com/linux/ubuntu | |
| Suites: noble | |
| Components: stable | |
| Architectures: amd64 | |
| Signed-By: /etc/apt/keyrings/docker.asc | |
| $ sudo usermod -aG docker $USER | |
| $ curl -fSs https://mise.jdx.dev/gpg-key.pub | sudo tee /etc/apt/keyrings/mise-archive-keyring.pub 1> /dev/null | |
| /etc/apt/sources.list.d/mise.list: | |
| ------------------------ | |
| deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.pub arch=amd64] https://mise.jdx.dev/deb stable main | |
| $ sudo curl -o /etc/apt/keyrings/apt.postgresql.org.asc --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc | |
| /etc/apt/sources.list.d/pgdg.list: | |
| ------------------------ | |
| deb [arch=amd64 signed-by=/etc/apt/keyrings/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt noble-pgdg main | |
| /etc/apt/sources.list.d/slack.list: | |
| ------------------------ | |
| deb https://packagecloud.io/slacktechnologies/slack/debian/ jessie main | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment