🪟 Move windows with arrowkeys, moved zen package to /zen dir in home

This commit is contained in:
Martin Berg Alstad 2025-02-15 12:14:03 +01:00
parent 000b5fe81a
commit 1ed7ce2e89
Signed by: martials
GPG Key ID: 706F53DD087A91DE
3 changed files with 15 additions and 4 deletions

@ -51,7 +51,6 @@ in
gimp gimp
vlc vlc
vdhcoapp vdhcoapp
inputs.zen-browser.packages.${system}.default # beta
onlyoffice-desktopeditors onlyoffice-desktopeditors
]; ];

@ -7,6 +7,7 @@ in
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
"$mainMod" = "SUPER"; "$mainMod" = "SUPER";
"$shiftMod" = "$mainMod SHIFT"; "$shiftMod" = "$mainMod SHIFT";
"$ctrlMod" = "$mainMod CTRL";
"$menu" = "rofi -show drun"; "$menu" = "rofi -show drun";
bind = [ bind = [
@ -29,6 +30,12 @@ in
"$mainMod, up, movefocus, u" "$mainMod, up, movefocus, u"
"$mainMod, down, movefocus, d" "$mainMod, down, movefocus, d"
# Move window with ctrl + mainMod + arrow keys
"$ctrlMod, left, movewindow, l"
"$ctrlMod, right, movewindow, r"
"$ctrlMod, up, movewindow, u"
"$ctrlMod, down, movewindow, d"
# Switch workspaces with mainMod + [0-9] # Switch workspaces with mainMod + [0-9]
"$mainMod, 1, workspace, 1" "$mainMod, 1, workspace, 1"
"$mainMod, 2, workspace, 2" "$mainMod, 2, workspace, 2"

@ -1,7 +1,12 @@
{ pkgs, inputs, ... }:
{ {
# TODO programatically get default name # TODO programatically get default name
home.file.".zen/audtxq7n.default/chrome" = { home = {
source = ./chrome; file.".zen/audtxq7n.default/chrome" = {
recursive = true; source = ./chrome;
recursive = true;
};
packages = with pkgs; [ inputs.zen-browser.packages.${system}.default ]; # Beta
}; };
} }