jahnf / Projecteur

Linux Desktop Application for the Logitech Spotlight device (and similar devices) - Digital Laser Pointer
MIT License
379 stars 33 forks source link

Add alsa-utils to Package Deps #152

Closed mayanksuman closed 3 years ago

mayanksuman commented 3 years ago

The Projecteur uses amixer to control volume in Volume Control Action. The binary amixer is provided by alsa-utils package.

Hence, als-utils is added as package dependency.

jahnf commented 3 years ago

I disagree on the alsa implementation. I plan to change your alsa code to just emit multimedia keys codes for volume up /down .. almost all Linux desktops will react to this... And not all systems have alsa.

mayanksuman commented 3 years ago

I plan to change your alsa code to just emit multimedia keys codes for volume up /down ..

Good Idea. I was improving the behavior of all repeated action by introducing time gap between them. Based on your idea, I have changed the voulme control action to emit multimedia key codes.

I have submitted a PR #154 with these changes.