System diagnostics and tuning for Ubuntu. It looks for what actually slows the machine down, says what it found in plain words, and puts a button next to the things it can fix.
Four lines. The last one installs it, the first three tell apt where to look and which key to trust.
curl -fsSL https://simonlinuxcraft.github.io/dynotiq/dynotiq.gpg | sudo tee /usr/share/keyrings/dynotiq.gpg > /dev/null printf 'Types: deb\nURIs: https://simonlinuxcraft.github.io/dynotiq\nSuites: ./\nSigned-By: /usr/share/keyrings/dynotiq.gpg\n' | sudo tee /etc/apt/sources.list.d/dynotiq.sources > /dev/null sudo apt update sudo apt install dynotiq
Updates then arrive through apt upgrade like any other
package. The repository is signed, and the key above is the only one apt
will accept for it.
Every finding says which file it came from, and nothing is changed without asking first.