Then open a terminal and... (you might want to copy this in several smaller parts, the copy buffer is not large enough)
Then go to System Settings and make sure everything is to your liking. You can change the screen locking timeouts, under Details set the default application for audio and video to SMPlayer and so on.
If you have a laptop and battery concerns (take a look at http://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html):
sudo add-apt-repository ppa:linrunner/tlp &&
sudo apt-get update &&
sudo apt-get install tlp tlp-rdw &&
sudo tlp start
If you have an SSD drive, add
,discard to the options of your EXT4 partition in /etc/fstab.
Also in /etc/fstab, add these lines so that the temporary directories are mounted in RAM:
tmpfs /tmp tmpfs defaults,noatime,mode=1777,size=10% 0 0
tmpfs /var/tmp tmpfs defaults,noatime,mode=1777,size=10% 0 0
You can also finetune swappines:
sudo sh -c "echo 'vm.swappiness=1' >> /etc/sysctl.d/99-sysctl.conf" &&
sudo sh -c "echo 'vm.vfs_cache_pressure=50' >> /etc/sysctl.d/99-sysctl.conf"