fix: use rubik for workspaces

Apparently google sans flex has some incorrect unicode symbols?
The dot symbol turns into a chinese character for some reason...
This commit is contained in:
2 * r + 2 * t 2026-06-07 22:36:56 +10:00
parent b7fcc2a6fc
commit 1b4f81f078
2 changed files with 1 additions and 18 deletions

View file

@ -52,6 +52,7 @@ ColumnLayout {
}
color: Config.bar.workspaces.occupiedBg || root.isOccupied || root.activeWsId === root.ws ? Colours.palette.m3onSurface : Colours.layer(Colours.palette.m3outlineVariant, 2)
verticalAlignment: Qt.AlignVCenter
font.family: "Rubik" // Hard code rubik for now since google sans doesn't play well with certain unicode symbols apparently
}
Loader {

View file

@ -1,18 +0,0 @@
#pragma once
#include "configobject.hpp"
namespace caelestia::config {
// ControlCenterConfig has no serialized properties (serializer returns {})
// All properties are in AdvancedConfig.controlCenter
class ControlCenterConfig : public ConfigObject {
Q_OBJECT
QML_ANONYMOUS
public:
explicit ControlCenterConfig(QObject* parent = nullptr)
: ConfigObject(parent) {}
};
} // namespace caelestia::config