mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: quick commit don't care lolololol
This commit is contained in:
parent
e49994251e
commit
bc2d8762c9
10 changed files with 48 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
|||
{ colourHelpers, flake, ... }:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes) wmGaps;
|
||||
inherit (flake.config.aesthetics.themes) windowManager;
|
||||
in
|
||||
{
|
||||
layout = {
|
||||
|
@ -15,11 +15,11 @@ in
|
|||
];
|
||||
border = {
|
||||
enable = true;
|
||||
width = 2;
|
||||
width = windowManager.borders;
|
||||
active.color = colourHelpers.makeColour colourHelpers.el.base0E;
|
||||
inactive.color = colourHelpers.makeColour colourHelpers.el.base02;
|
||||
};
|
||||
gaps = wmGaps;
|
||||
gaps = windowManager.gaps;
|
||||
shadow = {
|
||||
enable = true;
|
||||
color = colourHelpers.el.base11;
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{ workspaceStrings, ... }:
|
||||
{ flake, workspaceStrings, ... }:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes) windowManager;
|
||||
in
|
||||
{
|
||||
window-rules = [
|
||||
{
|
||||
|
@ -113,7 +116,7 @@
|
|||
focus-ring.enable = false;
|
||||
geometry-corner-radius =
|
||||
let
|
||||
radius = 10.0;
|
||||
radius = windowManager.rounding + 0.0;
|
||||
in
|
||||
{
|
||||
top-left = radius;
|
||||
|
|
|
@ -61,7 +61,7 @@ let
|
|||
};
|
||||
startup = import (configPath + /startup.nix) { inherit lib pkgs; };
|
||||
style = import (configPath + /style.nix) { inherit flake; };
|
||||
windowrules = import (configPath + /windowrules.nix) { inherit workspaceStrings; };
|
||||
windowrules = import (configPath + /windowrules.nix) { inherit flake workspaceStrings; };
|
||||
workspaces = import (configPath + /workspaces.nix) { inherit workspaceStrings; };
|
||||
in
|
||||
binds // layout // main // outputs // startup // style // windowrules // workspaces;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue