🪟 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

View File

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

View File

@ -7,6 +7,7 @@ in
wayland.windowManager.hyprland.settings = {
"$mainMod" = "SUPER";
"$shiftMod" = "$mainMod SHIFT";
"$ctrlMod" = "$mainMod CTRL";
"$menu" = "rofi -show drun";
bind = [
@ -29,6 +30,12 @@ in
"$mainMod, up, movefocus, u"
"$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]
"$mainMod, 1, workspace, 1"
"$mainMod, 2, workspace, 2"

View File

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