![]() |
All the bellow tests are performed in Pop!_OS 21.04
Except the Gnome Power Manager UI Options that needed Gnome 40
, for this I used Fedora 34
.
Pop!_OS
Should have Gnome 40
when 21.10
releases.
- Wifi (Needs manual driver install
https://github.com/lwfinger/rtw89
) - Battery Conservation Mode (When enabled laptop charges until 60%, this can be enabled/disabled using TLP 1.4 BETA)
- CPU Temp Sensors (Only 1 temp1, same on Windows)
-
"Windows" Hello
like function works (Need to installhowdy
and do the basic configuration)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// iOS have a limitation of 512 points / 256 coordinates pairs. | |
// Paths "d" property must have the previous 2 points at the start | |
// so we don't have gaps in the path. | |
// Never use more than 512 points in a path | |
// The lower we go the more "accurate" will be the draw time | |
// on all paths. the higher the number of points, we risk | |
// having the last part go too slow. | |
const maxPointsPerPath = 100; |