Skip to content

Commit

Permalink
fix(gnome): Fix number of workspaces
Browse files Browse the repository at this point in the history
Also remove dynamic workspaces
  • Loading branch information
edmundmiller committed Oct 16, 2023
1 parent 1fd5069 commit 9b8aceb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/desktop/gnome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,14 @@ in {
color-scheme = "prefer-dark";
enable-hot-corners = false;
};

# Workspaces
"org/gnome/mutter" = {
dynamic-workspaces = false;
};
"org/gnome/desktop/wm/preferences" = {
button-layout = "appmenu:minimize,maximize,close";
num-workspaces = "5";
num-workspaces = 5;
titlebar-font = "Cantarell Bold 14";
workspace-names = ["Web" "Editor" "Terminal" "Chat" "Scratch"];
};
Expand Down

0 comments on commit 9b8aceb

Please sign in to comment.