Installing the Nemo file manager on Ubuntu
Installing Nemo on Ubuntu
Reference: https://itsfoss.com/install-nemo-file-manager-ubuntu/
Nemo is a fork of Nautilus
Installing Nemo:
sudo apt install nemo
Making Nemo the default file manager in Ubuntu:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
Set up Nemo to handle the desktop completely, in this order. The first command disables the handling of desktop by Nautilus:
gsettings set org.gnome.desktop.background show-desktop-icons false
The second command enables Nemo to take its place:
gsettings set org.nemo.desktop show-desktop-icons true
You have now made Nemo the default file manager in Ubuntu. You can verify it by using the following:
Enable DXVKs HUD in Steam games with Proton
Right click any game in the Steam library > Manage > Browse local files, or go to the following:
/home/username/.local/share/Steam/steamapps/common/
Find the folder associated with the version of Proton that is running your game, examples:
- Proton Experimental
- Proton 9.0-3
- Proton 8.0-5
Within this folder, you should find a user_settings.sample.py
file. The .py
extension means it is a python file. Open this file in your text editor of choice, and you should find the following line:
Audio issues with Jabra earbuds
Jabra earbuds sounded terrible, found the following: https://askubuntu.com/questions/676853/bluetooth-headset-with-poor-sound-quality-on-ubuntu
“Go into sound settings, … If it uses HSP/HFP change to A2DP.”
Settings > Sound > Output Device - changed from:
Handsfree (configuration):
Headset Head Unit (HSP/HFP)
Headset Head Unit (HSP/HFP, codec CVSD)
Headset Head Unit (HSP/HFP, codec mSBC)
… to the following:
Headset (configuration):
High Fidelity Playback (A2DP Sink, codec SBC-XQ)
High Fidelity Playback (A2DP Sink, codec SBC)
Understanding Git
Taken from this tutorial by Fireship: https://www.youtube.com/watch?v=HkdAHXoRtos
Git is a version control system for managing your files
Initialise an empty Git repository in our current working directory:
git init
Any files in this directory will be added to the changes list.
You should then create a .gitignore file
touch .gitignore
You should keep private things here, like sensitive API keys. You can find default settings for this file
We next want to commit our changes, which is to send our local files into the Git repository. We need to stage the files that we want included in this commit.