From 8ad6dfe7b56183d19ea4d09d10a0624d9d317c82 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Wed, 3 Sep 2025 17:59:40 -0400 Subject: [PATCH] cleanup --- dot_config/flake/flake.nix | 1 - dot_config/flake/home/niri.nix | 54 +++++++++++++++++----------------- 2 files changed, 27 insertions(+), 28 deletions(-) diff --git a/dot_config/flake/flake.nix b/dot_config/flake/flake.nix index 1ddf857..f5f2eda 100644 --- a/dot_config/flake/flake.nix +++ b/dot_config/flake/flake.nix @@ -21,7 +21,6 @@ quickshell = { url = "github:outfoxxed/quickshell"; inputs.nixpkgs.follows = "nixpkgs-unstable"; - inputs.quickshell.follows = "quickshell"; }; darwin = { diff --git a/dot_config/flake/home/niri.nix b/dot_config/flake/home/niri.nix index 251cfff..17e21e1 100644 --- a/dot_config/flake/home/niri.nix +++ b/dot_config/flake/home/niri.nix @@ -171,39 +171,39 @@ in { # // `draw-border-with-background`. # You can change how the focus ring looks. - # focus-ring { - # // Uncomment this line to disable the focus ring. - # // off + focus-ring = { + # // Uncomment this line to disable the focus ring. + # // off - # // How many logical pixels the ring extends out from the windows. - # width 4 + # // How many logical pixels the ring extends out from the windows. + # width 4 - # // Colors can be set in a variety of ways: - # // - CSS named colors: "red" - # // - RGB hex: "#rgb", "#rgba", "#rrggbb", "#rrggbbaa" - # // - CSS-like notation: "rgb(255, 127, 0)", rgba(), hsl() and a few others. + # // Colors can be set in a variety of ways: + # // - CSS named colors: "red" + # // - RGB hex: "#rgb", "#rgba", "#rrggbb", "#rrggbbaa" + # // - CSS-like notation: "rgb(255, 127, 0)", rgba(), hsl() and a few others. - # // Color of the ring on the active monitor. - # active-color "#7fc8ff" + # // Color of the ring on the active monitor. + # active-color "#7fc8ff" - # // Color of the ring on inactive monitors. - # inactive-color "#505050" + # // Color of the ring on inactive monitors. + # inactive-color "#505050" - # // You can also use gradients. They take precedence over solid colors. - # // Gradients are rendered the same as CSS linear-gradient(angle, from, to). - # // The angle is the same as in linear-gradient, and is optional, - # // defaulting to 180 (top-to-bottom gradient). - # // You can use any CSS linear-gradient tool on the web to set these up. - # // Changing the color space is also supported, check the wiki for more info. - # // - # // active-gradient from="#80c8ff" to="#bbddff" angle=45 + # // You can also use gradients. They take precedence over solid colors. + # // Gradients are rendered the same as CSS linear-gradient(angle, from, to). + # // The angle is the same as in linear-gradient, and is optional, + # // defaulting to 180 (top-to-bottom gradient). + # // You can use any CSS linear-gradient tool on the web to set these up. + # // Changing the color space is also supported, check the wiki for more info. + # // + # // active-gradient from="#80c8ff" to="#bbddff" angle=45 - # // You can also color the gradient relative to the entire view - # // of the workspace, rather than relative to just the window itself. - # // To do that, set relative-to="workspace-view". - # // - # // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view" - # } + # // You can also color the gradient relative to the entire view + # // of the workspace, rather than relative to just the window itself. + # // To do that, set relative-to="workspace-view". + # // + # // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view" + }; # // You can also add a border. It's similar to the focus ring, but always visible. # border {