···11+# Plotinus {#module-program-plotinus}
22+33+*Source:* {file}`modules/programs/plotinus.nix`
44+55+*Upstream documentation:* <https://github.com/p-e-w/plotinus>
66+77+Plotinus is a searchable command palette in every modern GTK application.
88+99+When in a GTK 3 application and Plotinus is enabled, you can press
1010+`Ctrl+Shift+P` to open the command palette. The command
1111+palette provides a searchable list of of all menu items in the application.
1212+1313+To enable Plotinus, add the following to your
1414+{file}`configuration.nix`:
1515+```
1616+programs.plotinus.enable = true;
1717+```
+2
nixos/modules/programs/plotinus.nix
···88{
99 meta = {
1010 maintainers = pkgs.plotinus.meta.maintainers;
1111+ # Don't edit the docbook xml directly, edit the md and generate it:
1212+ # `pandoc plotinus.md -t docbook --top-level-division=chapter --extract-media=media -f markdown-smart --lua-filter ../../../doc/build-aux/pandoc-filters/myst-reader/roles.lua --lua-filter ../../../doc/build-aux/pandoc-filters/docbook-writer/rst-roles.lua > plotinus.xml`
1113 doc = ./plotinus.xml;
1214 };
1315
+25-27
nixos/modules/programs/plotinus.xml
···11-<chapter xmlns="http://docbook.org/ns/docbook"
22- xmlns:xlink="http://www.w3.org/1999/xlink"
33- xmlns:xi="http://www.w3.org/2001/XInclude"
44- version="5.0"
55- xml:id="module-program-plotinus">
66- <title>Plotinus</title>
77- <para>
88- <emphasis>Source:</emphasis>
99- <filename>modules/programs/plotinus.nix</filename>
1010- </para>
1111- <para>
1212- <emphasis>Upstream documentation:</emphasis>
1313- <link xlink:href="https://github.com/p-e-w/plotinus"/>
1414- </para>
1515- <para>
1616- Plotinus is a searchable command palette in every modern GTK application.
1717- </para>
1818- <para>
1919- When in a GTK 3 application and Plotinus is enabled, you can press
2020- <literal>Ctrl+Shift+P</literal> to open the command palette. The command
2121- palette provides a searchable list of of all menu items in the application.
2222- </para>
2323- <para>
2424- To enable Plotinus, add the following to your
2525- <filename>configuration.nix</filename>:
2626-<programlisting>
11+<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="module-program-plotinus">
22+ <title>Plotinus</title>
33+ <para>
44+ <emphasis>Source:</emphasis>
55+ <filename>modules/programs/plotinus.nix</filename>
66+ </para>
77+ <para>
88+ <emphasis>Upstream documentation:</emphasis>
99+ <link xlink:href="https://github.com/p-e-w/plotinus" role="uri">https://github.com/p-e-w/plotinus</link>
1010+ </para>
1111+ <para>
1212+ Plotinus is a searchable command palette in every modern GTK
1313+ application.
1414+ </para>
1515+ <para>
1616+ When in a GTK 3 application and Plotinus is enabled, you can press
1717+ <literal>Ctrl+Shift+P</literal> to open the command palette. The
1818+ command palette provides a searchable list of of all menu items in
1919+ the application.
2020+ </para>
2121+ <para>
2222+ To enable Plotinus, add the following to your
2323+ <filename>configuration.nix</filename>:
2424+ </para>
2525+ <programlisting>
2726programs.plotinus.enable = true;
2827</programlisting>
2929- </para>
3028</chapter>