Compare commits

..

No commits in common. "529a653e22ad1b4b0ae8148b55ba77695fedf997" and "ab149576838b0db85c8c7edf46f1dd90984ccb50" have entirely different histories.

2 changed files with 9 additions and 13 deletions

View File

@ -23,6 +23,7 @@ in {
dconf-editor # Graphical tool for editing settings stored in the dconf database of GNOME dconf-editor # Graphical tool for editing settings stored in the dconf database of GNOME
gnome-tweaks # Utility for customizing various aspects of the GNOME desktop environment gnome-tweaks # Utility for customizing various aspects of the GNOME desktop environment
evolution # Personal information management application that provides email, calendar, and contact management features evolution # Personal information management application that provides email, calendar, and contact management features
gnomeExtensions.focus-changer # GNOME Shell extension for changing window focus behavior
gnomeExtensions.custom-hot-corners-extended # GNOME Shell extension for changing window focus behavior gnomeExtensions.custom-hot-corners-extended # GNOME Shell extension for changing window focus behavior
gnomeExtensions.alphabetical-app-grid # Alphabetically order the app grid and folders gnomeExtensions.alphabetical-app-grid # Alphabetically order the app grid and folders
gnome-fullscreen-to-empty-workspace # New, maximized and fullscreen windows will be moved to empty workspaces gnome-fullscreen-to-empty-workspace # New, maximized and fullscreen windows will be moved to empty workspaces
@ -140,6 +141,8 @@ in {
dynamic-workspaces = false; dynamic-workspaces = false;
}; };
"org/gnome/desktop/wm/preferences" = { "org/gnome/desktop/wm/preferences" = {
auto-raise = false;
raise-on-click = false;
num-workspaces = 10; num-workspaces = 10;
}; };
"org/gnome/shell/keybindings" = { "org/gnome/shell/keybindings" = {
@ -189,11 +192,11 @@ in {
close = ["<Super>d"]; close = ["<Super>d"];
toggle-fullscreen = [ "<Super>f" ]; toggle-fullscreen = [ "<Super>f" ];
toggle-maximized = [ "<Super>t" ]; toggle-maximized = [ "<Super>t" ];
cycle-windows = ["<Super>Tab" "<Super>k"]; raise-or-lower = [ "<Super>s" ];
cycle-windows-backward = ["<Shift><Super>Tab" "<Super>j"]; move-to-center = [ "<Alt><Super>c" ];
switch-windows = ["<Super>Tab"];
switch-windows-backward = ["<Shift><Super>Tab"];
panel-run-dialog = ["<Super>r"]; panel-run-dialog = ["<Super>r"];
switch-applications = [];
switch-applications-backward = [];
minimize = []; minimize = [];
}; };
# custom-hot-corners-extended configs # custom-hot-corners-extended configs

View File

@ -12,7 +12,6 @@ in {
capslock = "overload(meta, esc)"; capslock = "overload(meta, esc)";
leftalt = "layer(alt)"; leftalt = "layer(alt)";
f1 = "oneshot(open)"; f1 = "oneshot(open)";
meta = "layer(meta)";
}; };
open = { open = {
enter = "C-M-enter"; # terminal enter = "C-M-enter"; # terminal
@ -27,12 +26,6 @@ in {
k = "up"; k = "up";
l = "right"; l = "right";
}; };
meta = {
h = "M-left";
j = "M-down";
k = "M-up";
l = "M-right";
};
}; };
}; };
}; };