I’d like to write a Python script for Amarok in Linux to automatically copy the stackoverflow podcast to my player. When I plug in the player, it would mount the drive, copy any pending podcasts, and eject the player. How can I listen for the ‘plugged in’ event? I have looked through hald but couldn’t find a good example.
Share
Update: As said in comments, Hal is not supported in recent distributions, the standard now is udev, Here is a small example that makes use of glib loop and udev, I keep the Hal version for historical reasons.
This is basically the example in the pyudev documentation, adapted to work with older versions, and with the glib loop, notice that the filter should be customized for your specific needing:
Old version with Hal and d-bus:
You can use D-Bus bindings and listen to
DeviceAddedandDeviceRemovedsignals. You will have to check the capabilities of the Added device in order to select the storage devices only.Here is a small example, you can remove the comments and try it.
You need to connect to Hal Manager using the System Bus.
And you need to connect a listener to the signals you are interested on, in this case
DeviceAdded.I’m using a filter based on capabilities. It will accept any
volumeand will calldo_somethingwith if, you can read Hal documentation to find the more suitable queries for your needs, or more information about the properties of the Hal devices.Example function that shows some information about the volume: