This commit is contained in:
2026-09-15 11:49:20 +01:00
parent f491665a54
commit cf606b7650
4 changed files with 62 additions and 62 deletions
+5 -2
View File
@@ -39,9 +39,12 @@
''}";
};
order = {
left = [ "workspaces" "weather" ];
left = [ "workspaces" ];
middle = [ ];
right = [ "audio" "clock" ];
right = [
"audio"
"clock"
];
};
modules.clock.show_seconds = false;
modules.workspaces = {
+10 -16
View File
@@ -202,23 +202,17 @@
scale = "1";
}
];
# DP-2 is the main monitor: every workspace (1-10, matching the
# binds above and the window rules below) is bound to it, so
# new workspaces are never created on HDMI-A-1. Workspace 1 is
# DP-2's default, i.e. what it shows on startup.
workspace_rule =
[
{
workspace = "1";
monitor = "DP-2";
default = true;
}
]
++ builtins.genList (i: {
workspace = toString (i + 2);
workspace_rule = [
{
workspace = "2";
monitor = "DP-2";
}) 9;
default = true;
}
]
++ builtins.genList (i: {
workspace = toString (i + 2);
monitor = "DP-2";
}) 9;
device = {
name = "default";
+6 -3
View File
@@ -47,10 +47,10 @@
spiHid = {
# drivers = [ "legacy" ];
legacy = {
enable = true;
enable = false;
};
v4 = {
enable = false;
enable = true;
};
};
ssamPmNotifier = {
@@ -60,7 +60,10 @@
enable = true;
};
touchscreen = {
enable = false;
enable = true;
};
systemIdleState = {
enable = true;
};
video = {
enable = true;