Improve CPU usage for simple-bar and disable linux-builder due to issue for now
27117202739f…
· Ryan Schanzenbacher ·
@@ -127,7 +127,7 @@ in {
nix = {
enable = true;
linux-builder = {
- enable = true;
+ enable = false; # mkfs.erofs seems to be looping
ephemeral = true;
};
settings = {
@@ -144,7 +144,7 @@ export const Widget = React.memo(() => {
<Icons.Coffee className="battery__caffeinate-icon" />
</SuspenseIcon>
)}
- {percentage}%
+ {`${percentage}%`}
</DataWidget.Widget>
);
});
@@ -113,7 +113,7 @@ export const Widget = () => {
Icon={showIcon ? Pie : null}
onClick={onClick}
>
- <div className="memory__content">{used}%</div>
+ <div className="memory__content">{`${used}%`}</div>
</DataWidget.Widget>
);
};
@@ -9,7 +9,7 @@
"bottomBar": false,
"sideDecoration": false,
"inlineSpacesOptions": false,
- "disableAnimations": false,
+ "disableAnimations": true,
"spacesBackgroundColorAsForeground": false,
"widgetsBackgroundColorAsForeground": false,
"widgetMaxWidth": "160px",