- Additional keyboard
- New Github/Gitlab certificate, or copy existing
- MP3s
- Videos
- Txts with notes
- Documents
- Pycharm
- Codium editor, settings, package manager, and packages
- Codium editor: export/import profile from more recent installation
- Other projects
- /etc/host https://github.com/StevenBlack/hosts
- dotfiles
- Install Gnome Tweaks (to modify theme)
- install/setup Bleachbit
- install/setup Docker
- Fish shell
- (consider) Chromium
- Brave Browser
- Remove login sound (http://askubuntu.com/questions/24946/how-do-i-disable-the-drum-beat-sound-on-the-login-screen)
- Firefox browser.sessionstore.interval (https://www.servethehome.com/firefox-is-eating-your-ssd-here-is-how-to-fix-it/)
- DNS: Check: https://1.1.1.1/
- Bat along with cat: https://github.com/sharkdp/bat/releases
sudo apt install -y bat
- Confugre closing lid: https://askubuntu.com/questions/15520/how-can-i-tell-ubuntu-to-do-nothing-when-i-close-my-laptop-lid
- zioxide
- gnome extensions
- Darcula theme everywhere
- Gnome Shell
- Brew for Linux
- Pix from Brew
- pls from pipx
sudo apt-get install fish
then:
Oh-my-fish (https://github.com/oh-my-fish/oh-my-fish)
curl -L https://get.oh-my.fish | fish
then:
omf install foreign-env
omf install nvm
omf install pbcopy
omf install sublime
omf install virtualfish
omf install https://github.com/dimitrismistriotis/git-helpers
omf theme default
https://dimitar.me/how-to-export-import-gnome-terminal-profiles/
In case blog goes down
You only need dconf to export/import gnome-terminal profiles.
To export all gnome-terminal profiles run:
$ dconf dump /org/gnome/terminal/legacy/profiles:/ > gnome-terminal-profiles.dconf
To import the exported profiles above, run:
$ dconf load /org/gnome/terminal/legacy/profiles:/ < gnome-terminal-profiles.dconf
If you want to export and then import only a particular profile, you need to find out the profile’s id first. To list all profiles available:
You get an output like this one:
Let’s say I would like to export the server1 profile, the id for it is c20ee9bb-547e-4e42-9865-ec27748eec5f
To back it up:
$ dconf dump /org/gnome/terminal/legacy/profiles:/:c20ee9bb-547e-4e42-9865-ec27748eec5f/ > server1-gnome-terminal-profile.dconf
To load it:
$ dconf load /org/gnome/terminal/legacy/profiles:/:c20ee9bb-547e-4e42-9865-ec27748eec5f/ < server1-gnome-terminal-profile.dconf