55 lines
775 B
Nix
Executable file
55 lines
775 B
Nix
Executable file
{
|
|
cards = [
|
|
{
|
|
enabled = true;
|
|
id = "profile-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "shortcuts-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "audio-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "weather-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "media-sysmon-card";
|
|
}
|
|
];
|
|
position = "bottom_center";
|
|
shortcuts = {
|
|
left = [
|
|
{
|
|
id = "WiFi";
|
|
}
|
|
{
|
|
id = "Bluetooth";
|
|
}
|
|
{
|
|
id = "ScreenRecorder";
|
|
}
|
|
{
|
|
id = "WallpaperSelector";
|
|
}
|
|
];
|
|
right = [
|
|
{
|
|
id = "Notifications";
|
|
}
|
|
{
|
|
id = "PowerProfile";
|
|
}
|
|
{
|
|
id = "KeepAwake";
|
|
}
|
|
{
|
|
id = "NightLight";
|
|
}
|
|
];
|
|
};
|
|
}
|