Metadata-Version: 1.2
Name: astrality
Version: 0.6
Summary: A dynamic configuration file manager.
Home-page: http://github.com/JakobGM/astrality
Author: Jakob Gerhard Martinussen
Author-email: jakobgm@gmail.com
License: MIT
Description: .. _readme:
        
        .. |pypi_version| image:: https://badge.fury.io/py/astrality.svg
            :target: https://badge.fury.io/py/astrality
        
        .. |travis-ci| image:: https://travis-ci.org/JakobGM/astrality.svg?branch=master
            :target: https://travis-ci.org/JakobGM/astrality
        
        .. |coveralls| image:: https://coveralls.io/repos/github/JakobGM/astrality/badge.svg?branch=master
            :target: https://coveralls.io/github/JakobGM/astrality?branch=master
        
        .. |rtfd| image:: https://readthedocs.org/projects/astrality/badge/?version=latest
            :target: http://astrality.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation Status
        
        .. |logo| image:: https://github.com/JakobGM/astrality/raw/master/docs/images/astrality_logo.png
        
        =====================================================================================================
        |logo| Astrality - A Dynamic Configuration File Manager |pypi_version| |travis-ci| |rtfd| |coveralls|
        =====================================================================================================
        
        What does it do?
        ================
        
        Astrality is a tool for managing configuration files and scheduling tasks related to those files.
        
        You can create templates for your configuration files, and Astrality will replace placeholders within those templates with ``context`` values defined in a central configuration file. Furthermore, you can dynamically manipulate that ``context`` at predefined times and events.
        
        By publishing an Astrality module to GitHub, others can try out your configuration by only pasting one line into their configuration. The use of template placeholders in your configuration files make such sharing portable on cross of different systems and user preferences.
        
        **Here is gif demonstrating how Astrality is used to**:
        
        #) Automatically change the desktop wallpaper based on the sun's position in the sky.
        #) Dynamically change the font size, and implicitly the bar height, of `polybar <https://github.com/jaagr/polybar>`_.
        #) Simultaneously change the color scheme of `alacritty <https://github.com/jwilm/alacritty>`_, `kitty <https://github.com/kovidgoyal/kitty>`_, and polybar at the same time.
        
        .. image:: https://user-images.githubusercontent.com/10655778/36535609-934488ec-17ca-11e8-860e-4af5e1464997.gif
        
        **Possible use cases are:**
        
        * Create a single source of truth for configuration options. Change your preferred font type or color scheme, and see that change be applied across several different graphical applications.
        * Receive rapid feedback when editing configuration files by specifying commands to run when specific configuration files are modified.
        * Conditionally copy (or compile) configuration files to specific paths. For example, only copy `neovim's <https://neovim.io/>`_ configuration if it is available on the system.
        * Configure dynamic behaviour for applications that do not support it. For example, set your desktop wallpaper based on the sun's position in the sky at your location.
        * Couple configurations across your applications. When you change your desktop wallpaper, automatically change the font type and color of your `conky modules <https://github.com/brndnmtthws/conky>`_.
        * Insert environment variables, by writing ``{{ env.USER }}``, and command substitutions, by writing ``{{ 'xrandr | grep -cw connected' | shell }}``), into configuration files that do not natively support them.
        * Modularize your desktop configuration, allowing you to switch between different combinations of applications and/or configurations by only editing one line. With Astrality you can, for example, quickly switch between `different <https://github.com/jaagr/polybar>`_ `status <https://github.com/LemonBoy/bar>`_ `bars <https://i3wm.org/i3bar/>`_ with little effort.
        * Share ``modules`` with others who can effortlessly try out your configuration, and easily switch back to their old configuration if they wish, making experimentation frictionless.
        * And much more...  An example configuration with several examples is included.
        
        The configuration format uses the flexible `YAML <http://docs.ansible.com/ansible/latest/YAMLSyntax.html#yaml-basics>`_ format, and the template language uses the `Jinja2 syntax <http://jinja.pocoo.org/docs/2.10/>`_, which is easy to get started with, but allows complex templating for those who need it.
        
        It is relatively easy to create ``modules`` to your own liking. Pull requests with new example modules are welcome.
        
        Getting started
        ===============
        
        Prerequisites
        -------------
        Astrality requires `python 3.6 <https://www.python.org/downloads/>`_ or greater. Make sure to install it if you do not already have it:
        
        .. code-block:: console
        
            # Example installation on ArchLinux
            $ sudo pacman -Syu python
        
        
        Installation
        ------------
        
        Create a new `virtualenv <https://virtualenv.pypa.io/en/stable/>`_ for python 3.6 (or use your system python 3.6 if you prefer). Install Astrality from `pypi <https://pypi.org/project/astrality/>`_ like so:
        
        .. code-block:: console
        
            $ python3.6 -m pip install astrality
        
        You should now be able to start `astrality` from your command line, but first, let us create an example configuration:
        
        .. code-block:: console
        
            $ astrality --create-example-config
        
        And now start `astrality`:
        
        .. code-block:: console
        
            $ astrality
        
        If you have ``feh`` installed, your desktop wallpaper should now be changed according to the sun's position in the sky at `Null Island <https://en.wikipedia.org/wiki/Null_Island>`_. Since you probably don't live there, you should now configure Astrality.
        
        Optional dependencies
        ---------------------
        The included example configuration for Astrality contains modules which are dependent on `conky <https://wiki.archlinux.org/index.php/Conky>`_ and `feh <https://wiki.archlinux.org/index.php/feh>`_. These modules are automatically disabled if their dependencies are not satisfied.
        If you want to use them, you should install ``conky`` and ``feh``.  An example installation on ArchLinux would be:
        
        .. code-block:: console
        
            $ sudo pacman -Syu conky feh
        
        The default configuration also uses the `Nerd Font <https://github.com/ryanoasis/nerd-fonts>`_ "FuraCode Nerd Font". Install it if you don't change the font in your configuration. On ArchLinux, it can be installed with the ``nerd-fonts-complete`` AUR package:
        
        .. code-block:: console
        
            $ yaourt -S nerd-fonts-complete
        
        Configuration and further documentation
        ---------------------------------------
        
        I recommend taking a look at the `full documentation <https://astrality.readthedocs.io/>`_ of Astrality hosted at `Read the Docs <https://readthedocs.org>`_.
        
Keywords: unix configuration management
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Desktop Environment :: File Managers
Classifier: Topic :: Text Processing
Requires-Python: >=3.6
