de2u fixes after trialing fresh install

This commit is contained in:
notgne2 2022-02-04 03:07:18 -07:00
parent 5d514a5d10
commit ea2422180e
No known key found for this signature in database
GPG Key ID: BB661E172B42A7F8

View File

@ -211,6 +211,7 @@ in
"org/gnome/mutter" = { "org/gnome/mutter" = {
edge-tiling = !cfg.tiling; edge-tiling = !cfg.tiling;
dynamic-workspaces = !cfg.tiling; dynamic-workspaces = !cfg.tiling;
only-on-primary = cfg.tiling;
}; };
"org/gnome/shell/extensions/gtktitlebar" = { "org/gnome/shell/extensions/gtktitlebar" = {
hide-window-titlebars = "always"; hide-window-titlebars = "always";
@ -238,12 +239,10 @@ in
(lib.nameValuePair "move-to-workspace-${n}" [ "<Shift><Super>${n}" ]) (lib.nameValuePair "move-to-workspace-${n}" [ "<Shift><Super>${n}" ])
(lib.nameValuePair "switch-to-workspace-${n}" [ "<Super>${n}" ]) (lib.nameValuePair "switch-to-workspace-${n}" [ "<Super>${n}" ])
]) ])
(map (n: toString n) (lib.range 0 9))); (map (n: toString n) (lib.range 1 9)));
in in
lib.listToAttrs workspaceAttrsList // { lib.listToAttrs workspaceAttrsList // {
minimize = [ "<Super>comma" ]; minimize = [ "<Super>comma" ];
switch-to-workspace-left = [ "" ];
switch-to-workspace-right = [ "" ];
maximize = [ "" ]; maximize = [ "" ];
unmaximize = [ "" ]; unmaximize = [ "" ];
move-to-monitor-up = [ "" ]; move-to-monitor-up = [ "" ];
@ -257,10 +256,27 @@ in
toggle-maximized = [ "<Super>m" ]; toggle-maximized = [ "<Super>m" ];
close = [ "<Super>q" ]; close = [ "<Super>q" ];
cycle-windows = [ "" ]; cycle-windows = [ "" ];
panel-run-dialog = [ "<Super>d" ];
move-to-workspace-right = [ "" ];
move-to-workspace-left = [ "" ];
switch-to-workspace-right = [ "" ];
switch-to-workspace-left = [ "" ];
# screw alt keys # And deal with the remaining alt keys, screw alt keys
cycle-windows-backward = [ "" ]; cycle-windows-backward = [ "" ];
activate-window-menu = [ "" ]; activate-window-menu = [ "" ];
cycle-panels = [ "" ];
cycle-panels-backward = [ ""];
switch-panels = [ "" ];
switch-panels-backward = [ "" ];
switch-applications = [ "<Super>Tab" ];
switch-applications-backward = [ "<Shift><Super>Tab" ];
cycle-group = [ "" ];
cycle-group-backward = [ "" ];
switch-group = [ "" ];
switch-group-backward = [ "" ];
begin-resize = [ "" ];
begin-move = [ "" ];
}; };
"org/gnome/mutter/keybindings" = { "org/gnome/mutter/keybindings" = {
toggle-tiled-left = [ "" ]; toggle-tiled-left = [ "" ];
@ -269,7 +285,7 @@ in
"org/gnome/mutter/wayland/keybindings" = { "org/gnome/mutter/wayland/keybindings" = {
restore-shortcuts = [ "" ]; restore-shortcuts = [ "" ];
}; };
"org/gnome/shell/keybindings" = { "org/gnome/shell/keybindings" = lib.listToAttrs (map (n: lib.nameValuePair "switch-to-application-${toString n}" [ "" ]) (lib.range 1 9)) // {
open-application-menu = [ "" ]; open-application-menu = [ "" ];
toggle-message-tray = [ "<Super>v" ]; toggle-message-tray = [ "<Super>v" ];
toggle-overview = [ "" ]; toggle-overview = [ "" ];
@ -286,7 +302,6 @@ in
home = [ "<Super>f" ]; home = [ "<Super>f" ];
email = [ "<Super>e" ]; email = [ "<Super>e" ];
www = [ "<Super>b" ]; www = [ "<Super>b" ];
terminal = [ "<Super>t" ];
rotate-video-lock-static = [ "" ]; rotate-video-lock-static = [ "" ];