a little tidying

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2022-02-07 08:53:36 -05:00
parent 713059fdfb
commit e53565a4fb
Signed by: vbatts
GPG Key ID: 10937E57733F1362
4 changed files with 13 additions and 21 deletions

View File

@ -7,8 +7,3 @@
-- Added notification support. Default IS notify-send, but you can redefine it in the source. variable is named notify (MUTU)
-- GTK-STOCK-QUIT fix

View File

@ -1,5 +1,4 @@
# surf - simple browser
# See LICENSE file for copyright and license details.
#See LICENSE file for copyright and license details.
include config.mk

View File

@ -1,31 +1,31 @@
README
# mocicon
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
Mocicon.sourceforge.net
https://sourceforge.net/projects/mocicon
OPTIONS/SOURCE:
## OPTIONS/SOURCE:
The source is fairly simple, and there are plenty of options to go around.
I don't do much source commenting, but it is all fairly self explanitory.
compiling without make:gcc -Wall -g -O2 mocicon.c -o mocicon `pkg-config --cflags --libs gtk+-2.0`
compiling without make:
```shell
gcc -Wall -g -O2 mocicon.c -o mocicon $(pkg-config --cflags --libs gtk+-2.0)
```
with make it is the regular as root:
Make clean install
```shell
make clean install
```
it's simple enough. you'll need the gtk+ 2.0 libs and that's it.
run ./install as root. it just installs mocicon in /usr/local/bin/
run `./install` as root. It just installs mocicon in `/usr/local/bin/`

View File

@ -7,9 +7,7 @@ VERSION = 0.1.4
PREFIX = /usr
MANPREFIX = ${PREFIX}/share/man
# includes and libs
GTKINC=$(shell pkg-config --cflags gtk+-2.0)
GTKLIB=$(shell pkg-config --libs gtk+-2.0 )