|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
colors = import ./colors;
|
|
|
|
|
mod = "Mod4";
|
|
|
|
|
in {
|
|
|
|
|
# Dependencies
|
|
|
|
@ -22,25 +23,25 @@ in {
|
|
|
|
|
};
|
|
|
|
|
colors = {
|
|
|
|
|
focused = {
|
|
|
|
|
border = "#4c566a";
|
|
|
|
|
background = "#4c566a";
|
|
|
|
|
text = "#eceff4";
|
|
|
|
|
indicator = "#ff00ff";
|
|
|
|
|
childBorder = "#ff00ff";
|
|
|
|
|
border = "${colors.background-alt}";
|
|
|
|
|
background = "${colors.background-alt}";
|
|
|
|
|
text = "${colors.foreground}";
|
|
|
|
|
indicator = "${colors.undefined}";
|
|
|
|
|
childBorder = "${colors.undefined}";
|
|
|
|
|
};
|
|
|
|
|
focusedInactive = {
|
|
|
|
|
border = "#434c5e";
|
|
|
|
|
background = "#434c5e";
|
|
|
|
|
text = "#e5e9f0";
|
|
|
|
|
indicator = "#ff00ff";
|
|
|
|
|
childBorder = "#ff00ff";
|
|
|
|
|
border = "${colors.background-alt}";
|
|
|
|
|
background = "${colors.background-alt}";
|
|
|
|
|
text = "${colors.foreground}";
|
|
|
|
|
indicator = "${colors.undefined}";
|
|
|
|
|
childBorder = "${colors.undefined}";
|
|
|
|
|
};
|
|
|
|
|
unfocused = {
|
|
|
|
|
border = "#2e3440";
|
|
|
|
|
background = "#2e3440";
|
|
|
|
|
text = "#e5e9f0";
|
|
|
|
|
indicator = "#ff00ff";
|
|
|
|
|
childBorder = "#ff00ff";
|
|
|
|
|
border = "${colors.background}";
|
|
|
|
|
background = "${colors.background}";
|
|
|
|
|
text = "${colors.foreground}";
|
|
|
|
|
indicator = "${colors.undefined}";
|
|
|
|
|
childBorder = "${colors.undefined}";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
startup = [
|
|
|
|
|