Fix: wsIconMap is null issue. (#884)

This commit is contained in:
Jas Singh
2025-04-04 00:23:03 -07:00
committed by GitHub
parent 3332d309e4
commit 9a40475f4a

View File

@@ -94,7 +94,7 @@ in
settings = {
layout = mkOption {
type = jsonFormat.type;
default = null;
default = { };
example = ''
{
"bar.layouts" = {
@@ -359,15 +359,17 @@ in
bar.workspaces.workspaces = mkIntOption 5;
bar.workspaces.workspaceIconMap = mkOption {
type = jsonFormat.type;
default = null;
default = { };
example = ''
{
"1": "<U+EEFE>",
"2": "<U+F269>",
"3": "<U+EAC4>",
"4": "<U+EC1B>",
"5": "<U+F02B4>",
"6": "<U+F1FF> ",
"7": "<U+EB1C>"
"7": "<U+EB1C>"
}
'';
};
dummy = mkBoolOption true;