commit c6c9dd4f684d7e31a210a46fbc94c37e6051cf48
parent 795d00258c5028674505a0a48014df674adb0c1c
Author: Vincent Demeester <vincent@sbr.pm>
Date: Tue, 3 Sep 2024 13:40:29 +0200
users/vincent: update sway colours…
… stole from chmouel.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 23 insertions(+), 4 deletions(-)
diff --git a/flake.nix b/flake.nix
@@ -176,10 +176,6 @@
url = "github:cachix/devenv/latest";
inputs.nixpkgs.follows = "nixpkgs";
};
- # hyprland = {
- # url = "github:hyprwm/Hyprland";
- # inputs.nixpkgs.follows = "nixpkgs";
- # };
buildkit-tekton = { url = "github:vdemeester/buildkit-tekton"; inputs.nixpkgs.follows = "nixpkgs"; };
diff --git a/users/vincent/desktop/sway.nix b/users/vincent/desktop/sway.nix
@@ -28,6 +28,29 @@ in
inner = 2;
outer = 2;
};
+ colors = {
+ focused = {
+ border = "#BD93F9";
+ background = "#282A36";
+ text = "#ffffff";
+ indicator = "#8BE9FD";
+ childBorder = "#BD93F9";
+ };
+ focusedInactive = {
+ border = "#BD93F9";
+ background = "#282A36";
+ text = "#F8F8F2";
+ indicator = "#44475A";
+ childBorder = "#44475A";
+ };
+ unfocused = {
+ border = "#44475A";
+ background = "#282A36";
+ text = "#BFBFBF";
+ indicator = "#282A36";
+ childBorder = "#282A36";
+ };
+ };
modifier = "Mod4";
terminal = "${pkgs.kitty}/bin/kitty";
menu = "${pkgs.wofi}/bin/wofi -G --show drun -modi 'drun,run,window,ssh'";