1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-01 10:47:29 +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 = '' description = ''
List of windows to exclude background blur. 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 = '' description = ''
List of conditions of windows that should not be faded. 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 = '' description = ''
List of conditions of windows that should have no shadow. 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 = '' description = ''
List of opacity rules. 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 { vSync = mkOption {
type = types.str; type = types.str;
default = "none"; default = "none";
example = "opengl-swc"; example = "opengl-swc";
description = '' description = ''
Enable vertical synchronization using the specified method. Enable vertical synchronization using the specified method.
See <literal>compton(1)</literal> man page available methods. See the
''; <citerefentry>
<refentrytitle>compton</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
man page for available methods.
'';
}; };
refreshRate = mkOption { refreshRate = mkOption {