Go to file
Davide Andreoli 3be11c24e8 Use a more recent meson to silence deprecations 2023-12-10 07:38:39 +01:00
GADGETS_OLD Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
gadgets Audio: Better support for stereo channels 2020-05-02 12:10:39 +02:00
python Edgar: switch to meson 2020-04-21 11:49:02 +02:00
src Remove bryce integration, making the module work again 2020-07-12 10:44:06 +02:00
.gitignore Audio: do not show the indicator in sliders 2020-04-24 17:30:54 +02:00
AUTHORS Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
COPYING Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
ChangeLog Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
INSTALL Use a more recent meson to silence deprecations 2023-12-10 07:38:39 +01:00
NEWS Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
README Make bytecompile works again 2020-04-23 08:32:14 +02:00
e-module-edgar.edc Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00
meson.build Use a more recent meson to silence deprecations 2023-12-10 07:38:39 +01:00
meson_bytecompile.py Make bytecompile works again 2020-04-23 08:32:14 +02:00
module.desktop Edgar: switch to meson 2020-04-21 11:49:02 +02:00
module_icon.png Say welcome to Edgar, the python gadget loader. 2014-08-27 21:40:56 +02:00

README

Edgar Gadget Loader
===================

This module load python gadgets in Enlightenment.


Requirements
============

* Enlightenment >= 0.24
* Python >= 3.5 (also the -dev package if your disto need them)
* Python-EFL >= 1.11 (built for python3)
* python3-dbus


Install
=======

To install the edgar and all the included gadgets just use:

  meson build
  ninja -C build
  ninja -C build install


The Audio gadget
================

The gadget provide PulseAudio + mpris2 integration.

It dbus to speak with PulseAudio, thus you need to enable dbus in pulse,
in the /etc/pulse/default.pa you need to have the line:

  load-module module-dbus-protocol

Usage tips:
  * the main speaker act on the pulse fallback channel, you can change that
    using the pavucontrol application.
  * mouse-wheel on the speaker to change volume.
  * middle-click on the speaker or any slider to toggle mute.


The Dropbox gadget
==================

A simple gadget that show the dropbox daemon status, it also have the ability
to start/stop the daemon.


The LedClock gadget
====================

Usage tips:
  * click on the first led column to trigger fancy animations.


How to write your own gadget
============================

I suggest to start from an existing gadget, just copy it's folder and
start hacking, a minimal gadget require:

base_folder/   (need to have the same name as the gadget)
  __init__.py  (the gadget python script)
  gadget.edc   (the gadget edje file)
  images/
    ...
  fonts/
    ...

Look at the e.py file (in the python/ folder in sources) for more
documentation.