From 887735826b864938e54e9a5498ebd3120b7b3b76 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Tue, 6 May 2025 19:58:08 +0100 Subject: [PATCH] added two more workspaces, one for each monitor autostarted floorp on youtube on the bg_noise workspace autostarted alacritty on the main workspace also fixed zellij not being set properly (again) --- home-manager/hyprland.nix | 6 ++++++ home-manager/zellij.nix | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index dc301ee..08d9e59 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -16,6 +16,8 @@ ]; workspace = [ "name:comms, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4KL78, default:true" + "name:bg_noise, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4ZAM2, default:true" + "name:main, monitor:eDP-2, default:true" ]; # Define SUPER key as mod key @@ -44,6 +46,10 @@ "[workspace name:comms silent; move -100%,-100%] signal-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland" "[workspace name:comms silent; move 100%,100%] floorp https://web.whatsapp.com https://instagram.com" "[workspace name:comms silent; move 100%,-100%] vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland" + + "[workspace name:bg_noise] floorp https://www.youtube.com/playlist?list=WL" + + "[workspace name:main] alacritty" ]; # Declare all keybinds diff --git a/home-manager/zellij.nix b/home-manager/zellij.nix index 300d10b..8130c6a 100644 --- a/home-manager/zellij.nix +++ b/home-manager/zellij.nix @@ -1,8 +1,8 @@ {...}: { - zellij = { + programs.zellij = { enable = true; enableZshIntegration = true; exitShellOnExit = true; attachExistingSession = true; - } + }; }