2022-02-07 13:53:36 +00:00
|
|
|
# mocicon
|
2010-04-02 13:44:43 +00:00
|
|
|
|
|
|
|
Mocicon is a Music On Console tray icon for quick access.
|
|
|
|
Report Bugs (which there aren't any) or suggestions to MutantTurkey@gmail.com, MutantTurkey@freenode.net
|
|
|
|
|
|
|
|
By Calvin Morrison 2009
|
|
|
|
|
2022-02-07 13:53:36 +00:00
|
|
|
https://sourceforge.net/projects/mocicon
|
2010-04-02 13:44:43 +00:00
|
|
|
|
|
|
|
|
2022-02-07 13:53:36 +00:00
|
|
|
## OPTIONS/SOURCE:
|
2010-04-02 13:44:43 +00:00
|
|
|
|
2022-02-07 14:01:43 +00:00
|
|
|
On debian, build dependencies install with:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
apt install -y build-essential libgtk-3-dev
|
|
|
|
```
|
|
|
|
|
2010-04-02 13:44:43 +00:00
|
|
|
|
2022-02-07 13:53:36 +00:00
|
|
|
compiling without make:
|
|
|
|
|
|
|
|
```shell
|
2022-02-07 14:01:43 +00:00
|
|
|
gcc -Wall -g -O2 mocicon.c -o mocicon $(pkg-config --cflags --libs gtk+-3.0)
|
2022-02-07 13:53:36 +00:00
|
|
|
```
|
2010-04-02 13:44:43 +00:00
|
|
|
|
|
|
|
with make it is the regular as root:
|
|
|
|
|
2022-02-07 13:53:36 +00:00
|
|
|
```shell
|
|
|
|
make clean install
|
|
|
|
```
|
2010-04-02 13:44:43 +00:00
|
|
|
|
2022-02-07 14:01:43 +00:00
|
|
|
it's simple enough. you'll need the gtk+ 3.0 libs and that's it.
|
2010-04-02 13:44:43 +00:00
|
|
|
|
2022-02-07 13:53:36 +00:00
|
|
|
run `./install` as root. It just installs mocicon in `/usr/local/bin/`
|
2010-04-02 13:44:43 +00:00
|
|
|
|