[docs] some more updates
This commit is contained in:
parent
0b7f61b62e
commit
0b0780b213
7 changed files with 54 additions and 54 deletions
|
@ -1,8 +1,8 @@
|
||||||
bumblebee-status
|
API Reference
|
||||||
================
|
================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 4
|
:maxdepth: 4
|
||||||
|
|
||||||
core
|
src/core
|
||||||
util
|
src/util
|
|
@ -8,9 +8,3 @@ Developer's Guide
|
||||||
module
|
module
|
||||||
theme
|
theme
|
||||||
|
|
||||||
Indices and tables
|
|
||||||
==================
|
|
||||||
|
|
||||||
* :ref:`genindex`
|
|
||||||
* :ref:`modindex`
|
|
||||||
* :ref:`search`
|
|
||||||
|
|
9
docs/docstring.tmpl
Normal file
9
docs/docstring.tmpl
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
"""<desc>
|
||||||
|
|
||||||
|
:param <name>: <desc>
|
||||||
|
|
||||||
|
:raises <error>: <desc>
|
||||||
|
|
||||||
|
:return: <desc>
|
||||||
|
:rtype: <type>
|
||||||
|
"""
|
|
@ -6,6 +6,43 @@
|
||||||
Welcome to bumblebee-status's documentation!
|
Welcome to bumblebee-status's documentation!
|
||||||
============================================
|
============================================
|
||||||
|
|
||||||
|
bumblebee-status is a modular, theme-able status line generator for the
|
||||||
|
`i3 window manager <https://i3wm.org/>`__.
|
||||||
|
|
||||||
|
Focus is on:
|
||||||
|
|
||||||
|
- ease of use, sane defaults (no mandatory configuration file)
|
||||||
|
- custom modules: :doc:`development/module`
|
||||||
|
- custom themes: :doc:`development/theme`
|
||||||
|
|
||||||
|
I hope you like it and I appreciate any kind of feedback: bug reports,
|
||||||
|
feature requests, etc. :)
|
||||||
|
|
||||||
|
Thanks a lot!
|
||||||
|
|
||||||
|
+------------------------------------+-------------------------+
|
||||||
|
| **Required i3wm version** | 4.12+ |
|
||||||
|
+------------------------------------+-------------------------+
|
||||||
|
| **Supported Python versions** | 3.4, 3.5, 3.6, 3.7, 3.8 |
|
||||||
|
+------------------------------------+-------------------------+
|
||||||
|
| **Supported FontAwesome versions** | 4 only |
|
||||||
|
+------------------------------------+-------------------------+
|
||||||
|
| **Per-module requirements** | see :doc:`modules` |
|
||||||
|
+------------------------------------+-------------------------+
|
||||||
|
|
||||||
|
see :doc:`FAQ` for details on this
|
||||||
|
|
||||||
|
Example usage:
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
bar {
|
||||||
|
status_command <path>/bumblebee-status \
|
||||||
|
-m cpu memory battery time pasink pasource \
|
||||||
|
-p time.format="%H:%M" \
|
||||||
|
-t solarized
|
||||||
|
}
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
:caption: Contents
|
:caption: Contents
|
||||||
|
@ -17,7 +54,7 @@ Welcome to bumblebee-status's documentation!
|
||||||
themes
|
themes
|
||||||
development/index
|
development/index
|
||||||
|
|
||||||
src/modules
|
api
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
==================
|
==================
|
||||||
|
|
|
@ -1,41 +1,6 @@
|
||||||
Introduction
|
Introduction
|
||||||
================
|
================
|
||||||
|
|
||||||
General
|
|
||||||
----------------
|
|
||||||
bumblebee-status is a modular, theme-able status line generator for the
|
|
||||||
`i3 window manager <https://i3wm.org/>`__.
|
|
||||||
|
|
||||||
Focus is on:
|
|
||||||
|
|
||||||
- ease of use, sane defaults (no mandatory configuration file)
|
|
||||||
- custom modules: :doc:`development/module`
|
|
||||||
- custom themes: :doc:`development/theme`
|
|
||||||
|
|
||||||
I hope you like it and I appreciate any kind of feedback: bug reports,
|
|
||||||
feature requests, etc. :)
|
|
||||||
|
|
||||||
Thanks a lot!
|
|
||||||
|
|
||||||
Required i3wm version: 4.12+ (in earlier versions, blocks won’t have
|
|
||||||
background colors)
|
|
||||||
|
|
||||||
Supported Python versions: 3.4, 3.5, 3.6, 3.7, 3.8
|
|
||||||
|
|
||||||
Supported FontAwesome version: 4 (free version of 5 doesn’t include some
|
|
||||||
of the icons)
|
|
||||||
|
|
||||||
Example usage:
|
|
||||||
|
|
||||||
.. code-block::
|
|
||||||
|
|
||||||
bar {
|
|
||||||
status_command <path>/bumblebee-status \
|
|
||||||
-m cpu memory battery time pasink pasource \
|
|
||||||
-p time.format="%H:%M" \
|
|
||||||
-t solarized
|
|
||||||
}
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -124,8 +89,3 @@ As a simple example, this is what my i3 configuration looks like:
|
||||||
|
|
||||||
Restart i3wm and - that’s it!
|
Restart i3wm and - that’s it!
|
||||||
|
|
||||||
Examples
|
|
||||||
---------
|
|
||||||
|
|
||||||
.. include:: themes.rst
|
|
||||||
|
|
||||||
|
|
|
@ -21,3 +21,5 @@
|
||||||
|
|
||||||
# documentation
|
# documentation
|
||||||
Add info about error widget and events for error logging
|
Add info about error widget and events for error logging
|
||||||
|
- generate rst instead of markdown (list of modules)
|
||||||
|
- add module contributor doc
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
Themes
|
List of available themes
|
||||||
======
|
========================
|
||||||
|
|
||||||
Here are some screenshots of various themes:
|
|
||||||
|
|
||||||
.. warning:: Some themes (e.g. all ‘powerline’ themes) require `Font
|
.. warning:: Some themes (e.g. all ‘powerline’ themes) require `Font
|
||||||
Awesome <http://fontawesome.io/>`__ and a powerline-compatible font
|
Awesome <http://fontawesome.io/>`__ and a powerline-compatible font
|
||||||
|
|
Loading…
Reference in a new issue