Metadata-Version: 2.3
Name: ewmh_m2m
Version: 2.1.1
Summary: Move window between monitor in EWMH compliant WM
Project-URL: Documentation, https://ewmh-m2m.readthedocs.io
Project-URL: Repository, https://github.com/AlexisBRENON/ewmh_m2m
Author-email: Alexis BRENON <brenon.alexis@gmail.com>
License: The MIT License (MIT)
        
        Copyright (c) 2019 Alexis BRENON
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: AUTHORS.rst
License-File: LICENSE.txt
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: xcffib==0.8.1
Requires-Dist: xpybutil==0.0.6
Provides-Extra: docs
Requires-Dist: sphinx~=7.4; extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'
Description-Content-Type: text/x-rst

.. _Authors: ./AUTHORS.rst
.. _Licence: ./LICENSE.txt
.. _Changelog: ./CHANGELOG.rst

.. |logo| image:: ./docs/_static/ewmh_m2m.svg
   :alt: Logo
   :width: 500

.. EndOfLinks

======================================
EWMH Compliant Move To Monitor utility
======================================

|logo|

📜 `Licence`_ − 👥 `Authors`_ − 📝 `Changelog`_

|version_badge| |test_badge| |doc_badge|

.. |doc_badge| image:: https://readthedocs.org/projects/ewmh-m2m/badge/?version=latest
   :target: https://ewmh-m2m.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

.. |test_badge| image:: https://github.com/AlexisBRENON/ewmh_m2m/workflows/Python/badge.svg
   :target: https://github.com/AlexisBRENON/ewmh_m2m/actions?query=workflow%3APython+branch%3Amaster
   :alt: Test Status

.. |version_badge| image:: https://img.shields.io/pypi/v/ewmh_m2m?label=Version
   :target: https://pypi.org/project/ewmh-m2m/
   :alt: GitHub tag (latest SemVer)

Rationale
=========

I love XFCE. I use it on almost all my computers.
However, in a multi head setup, it lacks a "move window to monitor" feature.
Some posts link to the `move-to-next-monitor`_ script, which as many dependencies and is not very customizable
(move to bottom, to right, etc.)

Hence, here it is ewmh_m2m.

Install
=======

Just install the package with pip::

    pip install ewmh-m2m  # Note the dash and not the underscore!

You should now have a ``move-to-monitor`` command available.

Usage
=====

You should bind the ``move-to-monitor`` command to your desired keyboard shortcut.
This command also accepts some arguments to control where the window is moved.
Type ``move-to-monitor --help`` in a terminal for the list of accepted options.


Development
===========

Feel free to ask some features on `GitHub`_.
You can also develop your own features and open Pull Requests.
Take a look at the `technical documentation`_.

.. _GitHub: https://github.com/AlexisBRENON/ewmh_m2m
.. _technical documentation: https://ewmh-m2m.readthedocs.io/


.. _move-to-next-monitor: https://github.com/jc00ke/move-to-next-monitor
