summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kb@devnulllabs.io>2021-06-25 14:39:17 -0600
committerKenny Ballou <kb@devnulllabs.io>2021-06-25 14:39:17 -0600
commit0b1eff4b0b1e618db042cc28aaee24fe7f831cee (patch)
tree36a83f74ab1115c9a145aeed7f7545e5aec3521a
parentfbc743c890f72514c06022761805faaf15ea94ef (diff)
downloadcfg.nix-0b1eff4b0b1e618db042cc28aaee24fe7f831cee.tar.gz
cfg.nix-0b1eff4b0b1e618db042cc28aaee24fe7f831cee.tar.xz
services/compton: fix opacity type
Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
-rw-r--r--services/compton.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/compton.nix b/services/compton.nix
index 57a4d81..b10ef0b 100644
--- a/services/compton.nix
+++ b/services/compton.nix
@@ -4,7 +4,7 @@
services.compton = {
enable = true;
fade = true;
- inactiveOpacity = "0.9";
+ inactiveOpacity = 0.9;
shadow = true;
fadeDelta = 4;
};