From e53565a4fb3338d9eb7158c727cd5673b985b7b1 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 7 Feb 2022 08:53:36 -0500 Subject: [PATCH] a little tidying Signed-off-by: Vincent Batts --- CHANGELOG | 5 ----- Makefile | 3 +-- README => README.md | 24 ++++++++++++------------ config.mk | 2 -- 4 files changed, 13 insertions(+), 21 deletions(-) rename README => README.md (61%) diff --git a/CHANGELOG b/CHANGELOG index af4b962..e254d7b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 - - - - - diff --git a/Makefile b/Makefile index c3db02a..ee32fe4 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README b/README.md similarity index 61% rename from README rename to README.md index ccb726f..bea3943 100644 --- a/README +++ b/README.md @@ -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/` diff --git a/config.mk b/config.mk index ec568b6..4660fee 100644 --- a/config.mk +++ b/config.mk @@ -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 )