[vega;hyprland] Set up only one-monitor workspaces

This commit is contained in:
2025-04-25 15:18:58 -07:00
parent 5b8cc6eb8d
commit 59ae2bd981

View File

@@ -22,9 +22,24 @@
userEmail = "periodic@blazestar.net"; userEmail = "periodic@blazestar.net";
}; };
# Set up eww here because it's based on the monitor configuration wayland.windowManager.hyprland.settings = {
# Eww is idempotent, so it's fine to just run it on every reload to make sure things are open # Set up eww here because it's based on the monitor configuration
wayland.windowManager.hyprland.settings.exec = [ # Eww is idempotent, so it's fine to just run it on every reload to make sure things are open
"eww daemon && eww open-many vertical-statusbar" exec = [
]; "eww daemon && eww open-many vertical-statusbar"
];
# Set up workspaces for this system
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
workspace = [
"1, defaultName:1"
"2, defaultName:2"
"3, defaultName:3"
"4, defaultName:4"
"5, defaultName:5"
"6, defaultName:6"
"7, defaultName:7"
"8, defaultName:8"
"9, defaultName:9"
];
};
} }