1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00

compton: use docbook man page references

This commit is contained in:
Robert Helgesson 2018-06-13 23:51:53 +02:00
parent 7190f46938
commit ad634c0a94
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -75,7 +75,12 @@ in {
];
description = ''
List of windows to exclude background blur.
See <literal>compton(1)</literal> man page for more examples.
See the
<citerefentry>
<refentrytitle>compton</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
man page for more examples.
'';
};
@ -115,7 +120,12 @@ in {
];
description = ''
List of conditions of windows that should not be faded.
See <literal>compton(1)</literal> man page for more examples.
See the
<citerefentry>
<refentrytitle>compton</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
man page for more examples.
'';
};
@ -155,7 +165,12 @@ in {
];
description = ''
List of conditions of windows that should have no shadow.
See <literal>compton(1)</literal> man page for more examples.
See the
<citerefentry>
<refentrytitle>compton</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
man page for more examples.
'';
};
@ -195,7 +210,12 @@ in {
];
description = ''
List of opacity rules.
See <literal>compton(1)</literal> man page for more examples.
See the
<citerefentry>
<refentrytitle>compton</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
man page for more examples.
'';
};
@ -208,13 +228,18 @@ in {
};
vSync = mkOption {
type = types.str;
default = "none";
example = "opengl-swc";
description = ''
Enable vertical synchronization using the specified method.
See <literal>compton(1)</literal> man page available methods.
'';
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.
'';
};
refreshRate = mkOption {