andreixyz: Yes, that seems to make it better. I use Stylus addon (which allows you to insert custom CSS) and I disabled that style. Actually I disabled all glows and the nickname sparklies and CPU usage is way down
andreixyz: ok, so i went full nuclear
kona: https://forum.agoraroad.com/index.php?attachments/you_guys_wish-jpg.72890/ yfw you are andreixyz
andreixyz: if you need the full css, i basically nuked the animations and transitions and cpu usage pretty much flatlined and fans are fairly idle
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.ap-ss-usernameStyle {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
}

span[class^="ap-sparkle-"] {
  background: none !important;
}

* {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

* {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
}