Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matiaslina/sound-of-interrupts
A small program that make sounds depending on the amount of disruption that has the processor using pulseaudio.
https://github.com/matiaslina/sound-of-interrupts
Last synced: 12 days ago
JSON representation
A small program that make sounds depending on the amount of disruption that has the processor using pulseaudio.
- Host: GitHub
- URL: https://github.com/matiaslina/sound-of-interrupts
- Owner: matiaslina
- Created: 2014-01-05T07:15:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-06T15:05:03.000Z (almost 11 years ago)
- Last Synced: 2024-11-05T22:03:16.402Z (2 months ago)
- Language: C
- Size: 180 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sound of interrupts
## Overview
Little program that makes your computer do some
sounds depending on the amount of interrupts in the cpus.## Compilation.
You'll need the pulseaudio development libraries for the cli.
Graphical interface will need the Qt libraries.```bash
mkdir build && cd build
cmake ..
make# and you can launch it with
./src/play-cli
```
## QT interfaceIf you want to build a qt interface that shows a graphic with the
number of interruptions of the CPU and play sounds as well. Just run```bash
mkdir build && cd build
WITH_QT=1 cmake ..
make./src/qtgui/soi_qtgui
```*Remember that you need the development files of qt4 to be able to
compile this*## To do
* The gui need to be finished (doesn't play any sound :p)
* Put some output in the cli