summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-bspwm.nix
diff options
context:
space:
mode:
authorbrustybee <beebeeb5k@gmail.com>2026-04-03 03:27:14 +0530
committerbrustybee <beebeeb5k@gmail.com>2026-04-03 03:27:14 +0530
commit415f9f859e5ee48bd7e28468b95cd3fadba33f7e (patch)
tree6ac11dd847a9f05742cd3498eabd7bcb7d19b284 /common/modules/matugen/templates/matugen-bspwm.nix
parent141855bcaed2d386107240f4090bf7f4a7364f7f (diff)
add bspwm and polybar ( kinda )
Diffstat (limited to 'common/modules/matugen/templates/matugen-bspwm.nix')
-rw-r--r--common/modules/matugen/templates/matugen-bspwm.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/common/modules/matugen/templates/matugen-bspwm.nix b/common/modules/matugen/templates/matugen-bspwm.nix
new file mode 100644
index 0000000..1e0a546
--- /dev/null
+++ b/common/modules/matugen/templates/matugen-bspwm.nix
@@ -0,0 +1,16 @@
+{
+ xdg.configFile = {
+ "matugen/templates/bspwm-colors" = {
+ enable = true;
+ text =
+ # sh
+ ''
+ #!/bin/bash
+ bspc config focused_border_color '{{colors.primary.default.hex}}'
+ bspc config active_border_color '{{colors.tertiary.default.hex}}'
+ bspc config normal_border_color '{{colors.outline.default.hex}}'
+ bspc config presel_feedback_color '{{colors.secondary.default.hex}}'
+ '';
+ };
+ };
+}