From 64f149532e43a161e24b40303c69a3b75ec3cf5d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 10 Jul 2023 20:38:42 +0100 Subject: [PATCH] Add a couple more binds, fix typo in tui/default --- home/desktop/hyprland.nix | 6 ++++++ home/tui/default.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/home/desktop/hyprland.nix b/home/desktop/hyprland.nix index 804dc2ea..ea943d3a 100644 --- a/home/desktop/hyprland.nix +++ b/home/desktop/hyprland.nix @@ -159,6 +159,12 @@ in { bind = SUPER, S, moveworkspacetomonitor, 7 current bind = SUPER, S, workspace, 7 bind = SUPER SHIFT, S, movetoworkspace, 7 + bind = SUPER, 8, moveworkspacetomonitor, 8 current + bind = SUPER, 8, workspace, 8 + bind = SUPER SHIFT, 8, movetoworkspace, 8 + bind = SUPER, 9, moveworkspacetomonitor, 9 current + bind = SUPER, 9, workspace, 9 + bind = SUPER SHIFT, 9, movetoworkspace, 9 bind = SUPER, period, workspace, m+1 bind = SUPER SHIFT, period, movetoworkspace, r+1 diff --git a/home/tui/default.nix b/home/tui/default.nix index 73af1e4c..a5410b76 100644 --- a/home/tui/default.nix +++ b/home/tui/default.nix @@ -1,4 +1,4 @@ {pkgs, ...}: { - imports = [./neovim ./lazygit.nix]; + imports = [./neovim.nix ./lazygit.nix]; home.packages = [pkgs.ranger]; }