2017-09-13 13:31:10 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2017-09-22 22:42:37 +02:00
|
|
|
with builtins;
|
2017-09-13 13:31:10 +02:00
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.compton;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
configFile = pkgs.writeText "compton.conf" (optionalString cfg.fade ''
|
|
|
|
# fading
|
|
|
|
fading = true;
|
|
|
|
fade-delta = ${toString cfg.fadeDelta};
|
|
|
|
fade-in-step = ${elemAt cfg.fadeSteps 0};
|
|
|
|
fade-out-step = ${elemAt cfg.fadeSteps 1};
|
|
|
|
fade-exclude = ${toJSON cfg.fadeExclude};
|
|
|
|
'' + optionalString cfg.shadow ''
|
|
|
|
|
|
|
|
# shadows
|
|
|
|
shadow = true;
|
|
|
|
shadow-offset-x = ${toString (elemAt cfg.shadowOffsets 0)};
|
|
|
|
shadow-offset-y = ${toString (elemAt cfg.shadowOffsets 1)};
|
|
|
|
shadow-opacity = ${cfg.shadowOpacity};
|
|
|
|
shadow-exclude = ${toJSON cfg.shadowExclude};
|
|
|
|
no-dock-shadow = ${toJSON cfg.noDockShadow};
|
|
|
|
no-dnd-shadow = ${toJSON cfg.noDNDShadow};
|
|
|
|
'' + optionalString cfg.blur ''
|
|
|
|
|
|
|
|
# blur
|
|
|
|
blur-background = true;
|
|
|
|
blur-background-exclude = ${toJSON cfg.blurExclude};
|
|
|
|
'' + ''
|
|
|
|
|
|
|
|
# opacity
|
|
|
|
active-opacity = ${cfg.activeOpacity};
|
|
|
|
inactive-opacity = ${cfg.inactiveOpacity};
|
2020-02-01 20:18:29 +01:00
|
|
|
inactive-dim = ${cfg.inactiveDim};
|
2020-02-02 00:39:17 +01:00
|
|
|
menu-opacity = ${cfg.menuOpacity};
|
|
|
|
opacity-rule = ${toJSON cfg.opacityRule};
|
|
|
|
|
|
|
|
# other options
|
|
|
|
backend = ${toJSON cfg.backend};
|
|
|
|
vsync = ${toJSON cfg.vSync};
|
|
|
|
refresh-rate = ${toString cfg.refreshRate};
|
|
|
|
'' + cfg.extraOptions);
|
2017-09-22 22:42:37 +02:00
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.services.compton = {
|
|
|
|
enable = mkEnableOption "Compton X11 compositor";
|
|
|
|
|
2018-04-15 04:19:37 +02:00
|
|
|
blur = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable background blur on transparent windows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
blurExclude = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
example = [ "class_g = 'slop'" "class_i = 'polybar'" ];
|
2018-04-15 04:19:37 +02:00
|
|
|
description = ''
|
|
|
|
List of windows to exclude background blur.
|
2018-06-13 23:51:53 +02:00
|
|
|
See the
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>compton</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
man page for more examples.
|
2018-04-15 04:19:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
fade = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Fade windows in and out.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
fadeDelta = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 10;
|
|
|
|
example = 5;
|
|
|
|
description = ''
|
|
|
|
Time between fade animation step (in ms).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
fadeSteps = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "0.028" "0.03" ];
|
|
|
|
example = [ "0.04" "0.04" ];
|
|
|
|
description = ''
|
|
|
|
Opacity change between fade steps (in and out).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
fadeExclude = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
example = [ "window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1" ];
|
2017-09-22 22:42:37 +02:00
|
|
|
description = ''
|
|
|
|
List of conditions of windows that should not be faded.
|
2018-06-13 23:51:53 +02:00
|
|
|
See the
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>compton</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
man page for more examples.
|
2017-09-22 22:42:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
shadow = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Draw window shadows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
shadowOffsets = mkOption {
|
|
|
|
type = types.listOf types.int;
|
|
|
|
default = [ (-15) (-15) ];
|
|
|
|
example = [ (-10) (-15) ];
|
|
|
|
description = ''
|
2018-04-15 21:48:08 +02:00
|
|
|
Horizontal and vertical offsets for shadows (in pixels).
|
2017-09-22 22:42:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
shadowOpacity = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "0.75";
|
|
|
|
example = "0.8";
|
|
|
|
description = ''
|
|
|
|
Window shadows opacity (number in range 0 - 1).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
shadowExclude = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
example = [ "window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1" ];
|
2017-09-22 22:42:37 +02:00
|
|
|
description = ''
|
|
|
|
List of conditions of windows that should have no shadow.
|
2018-06-13 23:51:53 +02:00
|
|
|
See the
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>compton</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
man page for more examples.
|
2017-09-22 22:42:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-10-12 20:26:15 +02:00
|
|
|
noDockShadow = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Avoid shadow on docks.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
noDNDShadow = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Avoid shadow on drag-and-drop windows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
activeOpacity = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "1.0";
|
|
|
|
example = "0.8";
|
|
|
|
description = ''
|
|
|
|
Opacity of active windows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-02-01 20:18:29 +01:00
|
|
|
inactiveDim = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "0.0";
|
|
|
|
example = "0.2";
|
|
|
|
description = ''
|
|
|
|
Dim inactive windows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
inactiveOpacity = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "1.0";
|
|
|
|
example = "0.8";
|
|
|
|
description = ''
|
|
|
|
Opacity of inactive windows.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
menuOpacity = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "1.0";
|
|
|
|
example = "0.8";
|
|
|
|
description = ''
|
|
|
|
Opacity of dropdown and popup menu.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-04-15 04:06:44 +02:00
|
|
|
opacityRule = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
example = [ "87:class_i ?= 'scratchpad'" "91:class_i ?= 'xterm'" ];
|
2018-04-15 04:06:44 +02:00
|
|
|
description = ''
|
|
|
|
List of opacity rules.
|
2018-06-13 23:51:53 +02:00
|
|
|
See the
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>compton</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
man page for more examples.
|
2018-04-15 04:06:44 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
backend = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "glx";
|
|
|
|
description = ''
|
|
|
|
Backend to use: <literal>glx</literal> or <literal>xrender</literal>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
vSync = mkOption {
|
2018-06-13 23:51:53 +02:00
|
|
|
type = types.str;
|
|
|
|
default = "none";
|
|
|
|
example = "opengl-swc";
|
|
|
|
description = ''
|
|
|
|
Enable vertical synchronization using the specified method.
|
|
|
|
See the
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>compton</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
man page for available methods.
|
|
|
|
'';
|
2017-09-22 22:42:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
refreshRate = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 0;
|
|
|
|
example = 60;
|
|
|
|
description = ''
|
2020-02-02 00:39:17 +01:00
|
|
|
Screen refresh rate (0 = automatically detect).
|
2017-09-22 22:42:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.compton;
|
2019-08-28 00:12:28 +02:00
|
|
|
defaultText = literalExample "pkgs.compton";
|
2017-09-22 22:42:37 +02:00
|
|
|
example = literalExample "pkgs.compton";
|
|
|
|
description = ''
|
|
|
|
Compton derivation to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
unredir-if-possible = true;
|
|
|
|
dbe = true;
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Additional Compton configuration.
|
|
|
|
'';
|
2017-09-13 13:31:10 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:42:37 +02:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
2017-09-13 13:31:10 +02:00
|
|
|
systemd.user.services.compton = {
|
2018-11-15 00:16:56 +01:00
|
|
|
Unit = {
|
|
|
|
Description = "Compton X11 compositor";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2018-11-15 00:16:56 +01:00
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = "${cfg.package}/bin/compton --config ${configFile}";
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 3;
|
2020-02-02 00:39:17 +01:00
|
|
|
} // optionalAttrs (cfg.backend == "glx") {
|
2018-11-15 00:16:56 +01:00
|
|
|
# Temporarily fixes corrupt colours with Mesa 18.
|
|
|
|
Environment = [ "allow_rgb10_configs=false" ];
|
|
|
|
};
|
2017-09-13 13:31:10 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|