summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-29 17:27:56 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-29 17:27:56 +0200
commit23029c351dacce90d78b5648ffc4bc7bcf6aa359 (patch)
tree47664d6cdc68797060268414b048232bdeb04bb3 /src/options.c
parent702db61e222518bf71383e471547c233322b6b7f (diff)
start --index-{name,dim,size} -> printf transition
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/options.c b/src/options.c
index 316f62d..6f44607 100644
--- a/src/options.c
+++ b/src/options.c
@@ -386,9 +386,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
{"action9" , 1, 0, 217},
{"bg-fill" , 0, 0, 218},
{"bg-max" , 0, 0, 219},
- {"index-name" , 1, 0, 230},
- {"index-size" , 1, 0, 231},
- {"index-dim" , 1, 0, 232},
{"thumb-redraw" , 1, 0, 'J'},
{"info" , 1, 0, 234},
{"force-aliasing", 0, 0, 235},
@@ -420,6 +417,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
break;
case 'i':
opt.index = 1;
+ opt.index_info = estrdup("%n");
opt.index_show_name = 1;
opt.index_show_size = 0;
opt.index_show_dim = 0;
@@ -429,6 +427,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
break;
case 'I':
opt.index = 1;
+ opt.index_info = estrdup("%n \n %S \n %wx%h");
opt.index_show_name = 1;
opt.index_show_size = 1;
opt.index_show_dim = 1;
@@ -612,6 +611,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
break;
case 't':
opt.thumbs = 1;
+ opt.index_info = ("%n");
opt.index_show_name = 1;
opt.index_show_size = 0;
opt.index_show_dim = 0;
@@ -701,15 +701,6 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
case 229:
opt.text_bg = TEXT_BG_TINTED;
break;
- case 230:
- opt.index_show_name = atoi(optarg);
- break;
- case 231:
- opt.index_show_size = atoi(optarg);
- break;
- case 232:
- opt.index_show_dim = atoi(optarg);
- break;
case 'J':
opt.thumb_redraw = atoi(optarg);
break;