aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-12-26 02:51:26 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-12-26 02:51:26 +0000
commit5f006803eeeb8fc65a68881cc83ef43d113715a5 (patch)
treec9bc35393ca0ee4ff83494ee277e5c6563230656
parent3ae2fd34d3a35d9beefe94e719b25fa61e049997 (diff)
parent54560c988d2b420acb72c81ebf49818603af9591 (diff)
downloadimv-5f006803eeeb8fc65a68881cc83ef43d113715a5.tar.gz
Merge pull request #62 from czarkoff/font
Use default font
-rw-r--r--doc/imv.13
-rw-r--r--src/main.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/imv.1 b/doc/imv.1
index 2a6f867..ff6f661 100644
--- a/doc/imv.1
+++ b/doc/imv.1
@@ -45,7 +45,8 @@ Set the background color. Either 'checks' or a hex color value. Defaults to '#00
.TP
.BI "-e " FONT:SIZE
Set the font used by the overlay. FONT can be any valid system font, such as
-FreeSans, FreeMono, etc. Defaults to FreeMono:24.
+FreeSans, FreeMono, etc. Defaults to "Monospace:24", which is default monospace font, as configured in
+.BR fonts.conf (5).
.TP
.BI "-t " SECONDS
Set the slideshow delay in seconds. Setting this to zero disables slideshow
diff --git a/src/main.c b/src/main.c
index 3116f22..5c8c041 100644
--- a/src/main.c
+++ b/src/main.c
@@ -46,7 +46,7 @@ struct {
char *overlay_str;
const char *start_at;
const char *font;
-} g_options = {0,0,0,0,0,1,0,0,0,0,0,0,NULL,NULL,"FreeMono:24"};
+} g_options = {0,0,0,0,0,1,0,0,0,0,0,0,NULL,NULL,"Monospace:24"};
void print_usage(const char* name)
{
@@ -67,7 +67,7 @@ void print_usage(const char* name)
"Options:\n"
" -n <NUM|PATH>: Start at picture number NUM, or with the path PATH.\n"
" -b BG: Set the background. Either 'checks' or a hex color value.\n"
- " -e FONT:SIZE: Set the font used for the overlay. Defaults to FreeMono:24\n"
+ " -e FONT:SIZE: Set the font used for the overlay. Defaults to Monospace:24\n"
" -t SECONDS: Enable slideshow mode and set delay between images"
"\n"
"Mouse:\n"