diff --git a/flake.lock b/flake.lock index c0391f5..4fad1d3 100644 --- a/flake.lock +++ b/flake.lock @@ -372,11 +372,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1754292888, - "narHash": "sha256-1ziydHSiDuSnaiPzCQh1mRFBsM2d2yRX9I+5OPGEmIE=", + "lastModified": 1754563854, + "narHash": "sha256-YzNTExe3kMY9lYs23mZR7jsVHe5TWnpwNrsPOpFs/b8=", "owner": "nixos", "repo": "nixpkgs", - "rev": "ce01daebf8489ba97bd1609d185ea276efdeb121", + "rev": "e728d7ae4bb6394bbd19eec52b7358526a44c414", "type": "github" }, "original": { @@ -388,11 +388,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1754214453, - "narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=", + "lastModified": 1754498491, + "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376", + "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "type": "github" }, "original": { @@ -408,11 +408,11 @@ "nixpkgs": "nixpkgs_4" }, "locked": { - "lastModified": 1754537826, - "narHash": "sha256-5aNGYEe4nf4IkFw2JN2v3jpcqLhRwCY0rlVhGtOYcV4=", + "lastModified": 1754684884, + "narHash": "sha256-GH+UMIOJj7u/bW55dOOpD8HpVpc9WfU61iweM2nM68A=", "owner": "nix-community", "repo": "NUR", - "rev": "0d75abff8343adaa20cd89b79e1f58d334101534", + "rev": "a7f9761c9dd71359cd9a6529078302a83e6deaac", "type": "github" }, "original": { @@ -587,11 +587,11 @@ }, "unstable": { "locked": { - "lastModified": 1754214453, - "narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=", + "lastModified": 1754498491, + "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376", + "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "type": "github" }, "original": { @@ -628,11 +628,11 @@ }, "vpsadminos": { "locked": { - "lastModified": 1754243274, - "narHash": "sha256-gVTM1eIYzHx/Z/2WVhhf3Eov3JuARF5fuIrWjvc73wo=", + "lastModified": 1754655349, + "narHash": "sha256-Vuc6jQNHsXhzJGusRG+K9fcI5aEnW9ZQRK22dlM0e2A=", "owner": "vpsfreecz", "repo": "vpsadminos", - "rev": "483e04c5556e7a42a0dcd176caab7ad450244515", + "rev": "94f162b0a1194115a289b2f1e0f9d13b200d6d0e", "type": "github" }, "original": { diff --git a/home/modules/gui/sway.nix b/home/modules/gui/sway.nix index eeb51c6..5465d68 100644 --- a/home/modules/gui/sway.nix +++ b/home/modules/gui/sway.nix @@ -15,7 +15,6 @@ in { home.sessionVariables = { "BEMENU_BACKEND" = "wayland"; - "BEMENU_RENDERER" = "bemenu-wlroots"; }; services = { @@ -146,7 +145,7 @@ in { "${mod}+l" = "exec ${getExe pkgs.gtklock} -d"; "${mod}+Return" = "exec ${lib.getExe pkgs.kitty} ${lib.getExe pkgs.tmux}"; "${mod}+Shift+s" = "exec ${grimshot} copy area"; - "${mod}+Shift+a" = "exec ${grimshot} copy active"; + "${mod}+Shift+a" = "exec ${grimshot} copy output"; "${mod}+Tab" = "focus right"; "${mod}+Shift+Tab" = "focus left"; "${mod}+Shift+w" = "move workspace to output right"; diff --git a/sys/modules/gtklock.nix b/sys/modules/gtklock.nix index 1450704..3600b41 100644 --- a/sys/modules/gtklock.nix +++ b/sys/modules/gtklock.nix @@ -24,7 +24,7 @@ in { style = '' /* Main lockscreen window */ window { - background-color: rgba(20, 20, 20, 0.9); /* dark, slightly translucent */ + background-color: black; color: #eaeaea; font-family: "JetBrains Mono", monospace; font-size: 14px; @@ -32,7 +32,7 @@ in { /* Container for clock + prompt */ #main-box { - background: transparent; + background: black; border: none; border-radius: 0; padding: 0; @@ -56,7 +56,7 @@ in { /* Password entry */ entry { - background-color: rgba(0, 0, 0, 0.5); + background-color: black; color: #ffffff; border: none; border-radius: 0;