summaryrefslogtreecommitdiff
path: root/src/options.c
AgeCommit message (Collapse)AuthorLines
2012-03-16document --magick-timeoutDaniel Friesel-1/+1
2012-03-13Experimental code to limit imagemagick convert runtime (see #82)Daniel Friesel-0/+5
Problems so far: * leaks zombie processes * does not work when terminating feh with a signal (since the convert process is no longer in feh's process group)
2012-02-01No -Q for exif=1, long option and key binding are enoughDaniel Friesel-13/+9
2012-01-28Show exif flag in manpage / --versionDaniel Friesel-0/+4
2012-01-27optional exif support (build with exif=1), initial patch importDaniel Friesel-1/+13
2012-01-25Use 'feh: foo' instead of mixed 'feh: foo' and 'feh - foo' messagesDaniel Friesel-1/+1
2012-01-25Do not refer to --help unless it is compiled in (Debian #657171)Daniel Friesel-2/+6
2011-11-03Minor manpage syntax fix, remove --no-fehbg without --bg-* warningDaniel Friesel-6/+0
2011-11-03Chaning the name of the option to suppress .fehbgFelix Crux-4/+4
2011-11-03Adds an option --bg-no-bgfile that prevents the writing of a ~/.fehbg file.Felix Crux-0/+10
2011-10-10Code cleanupDaniel Friesel-8/+1
2011-10-09options.c: Show stat64 if enabledDaniel Friesel-0/+4
2011-09-30Apply changes to thumbnail modeDaniel Friesel-13/+1
2011-09-30Add --index-info optionDaniel Friesel-1/+5
2011-09-29start --index-{name,dim,size} -> printf transitionDaniel Friesel-12/+3
2011-09-28Use buttons config instead of button optionsDaniel Friesel-58/+1
2011-09-26Add support for multiple files in --bg-options (closes #64)Daniel Friesel-13/+5
Squashed commit of the following: commit 55e66e15af898f4c01d7d265013124fefce795e4 Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 19:59:46 2011 +0200 Save all filenames in ~/.fehbg commit afc2774f315fc379aa96de58decf8370772036af Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 19:24:38 2011 +0200 Update test/bg --bg-fill images (off-by-one due to changed implementation) commit bd4210cff2e895414df12868f6cab7f193c5adf5 Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 14:47:00 2011 +0200 Fix feh_wm_set_bg_maxed commit d9ada9dc2a74aef6ae0924e9c0ff296b94ee25bc Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 14:39:11 2011 +0200 Fix for non-xinerama setups commit be2cf0f1f8c00b737e7141a372d3cbc9db4c949f Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 14:24:44 2011 +0200 Move wallpaper calculation code into separate functions commit 4e07c1f9734569fdd778a813c5a85c63b51b3175 Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 13:01:46 2011 +0200 Remove unnecessary temporary variable commit 23d1d733b21d1560e1fbcadddc34cae3d666b21d Author: Daniel Friesel <derf@finalrewind.org> Date: Mon Sep 26 12:46:25 2011 +0200 Initial conversion, works with --bg-scale
2011-09-13Use enum for opt.image_bg, rename --image-bg default to --image-bg checksDaniel Friesel-3/+8
2011-08-29Various code fixupsDaniel Friesel-13/+3
* remove unused variable Im1 in filelist.c * options are initialised as 0, so only explicitly set those to 0 for which it makes sense because of their context * Make a few warnings about wrong option combinations fatal
2011-08-24--filelist: Support reading from /dev/stdin ("-" as shortcut)Daniel Friesel-1/+4
Note that read_filelist used to check if its argument was an image (for people accidentaly typing "feh -df *" instead of "feh -dF *"); this was removed because it failed on /dev/stdin. I might re-add it, but I'm not yet sure about the future of feh's automatic filelist saving.
2011-08-23Add --draw-tinted option to draw overlay text on a semi-transparent ↵Daniel Friesel-0/+4
background (closes #60, #61) By default, feh draws white text with a black drop-shadow, which is well readable in most, but not all cases. The --draw-tinted option draws a semi-transparent black box around all texts. This improves readability, but does not look as nice, so it won't become default behaviour. It was suggested to use #7f7f7f7f for the background, but I decided that for small images surrounded by a black border.
2011-08-15Fix some compiler warningsDaniel Friesel-3/+3
2011-08-13Add reload functionality for directories (derf#14)Yu-Jie Lin-0/+2
2011-08-10Remove unused variablesDaniel Friesel-3/+2
2011-08-01options.c: Fix getopt/optind handling (closes #49, patch by Yu-Jie Lin)Daniel Friesel-1/+1
2011-06-07Add toggle_info key (closes #48)Daniel Friesel-0/+1
2011-05-11feh_parse_options_from_string: Make sure not to write beyond array boundariesDaniel Friesel-0/+5
2011-05-11feh_parse_options_from_string: allocate argv list on stackDaniel Friesel-8/+2
This fixes a really weird bug where continued theme definitions containing just one option/value pair caused feh to mis-parse parts of the following line. Apparently, subsequent realloc calls mixed with strdups in another function caused parts of the list (argv) content to be overwritten by the content of the list pointer itself. I wasn't able to find out the exact causes / conditions.
2011-04-30Do not include help text by defaultDaniel Friesel-0/+4
2011-04-30Replace some printf calls by fputs/putcDaniel Friesel-2/+3
2011-04-27Deprecate --menu-bg option (closes #27)Daniel Friesel-1/+2
2011-04-26Improve '.fehrc -> .config/feh/themes' warning messageDaniel Friesel-2/+4
2011-04-16options.c: Do not read current directory when setting a background (closes #40)Daniel Friesel-1/+1
2011-04-01options.c: Do not run "feh ." when calling "feh nonexistant"Daniel Friesel-8/+8
2011-03-21Add method to forcefully disable antialiasing (closes GH-17)Daniel Friesel-0/+4
2011-03-19When called without file arguments: Show files in $PWDDaniel Friesel-2/+4
2011-03-02Switch --zoom max/fill to make them work like --bg-max/-fill (closes GH-8)Daniel Friesel-1/+1
2011-02-27options.c: Remove obsolete feh_parse_environment_options declarationDaniel Friesel-1/+0
2011-02-16Remove builtin HTTP clientDaniel Friesel-7/+1
2011-02-16feh -v: Show compiletime switchesDaniel Friesel-1/+17
2011-02-16Remove wget support, use libcurl by defaultDaniel Friesel-6/+1
2011-02-15Add libcurl option -{Andrew Potter-1/+6
2011-01-29Deprecate --menu-styleDaniel Friesel-0/+1
2011-01-25options.c: Move hold-action check to check_options.Daniel Friesel-8/+8
In feh_parse_option_array, when a hold-action is set from a theme it would behave differently than one set from commandline. Theme: ;;foo would become foo (incorrect) cmdline: ;;foo would become ;foo (correct) I doubt anybody would ever have noticed it, since ;foo is a shell syntax error anyways, but it's definitely better to be on the safe side.
2011-01-24Remove support for FEH_OPTIONS (it was deprecated over 5 years ago)Daniel Friesel-20/+0
2011-01-23Parse commandline options _after_ theme options (closes GH-23)Daniel Friesel-4/+26
2011-01-22Add --zoom fill as equivalent to --auto-zoomDaniel Friesel-2/+7
2011-01-17Copyright FooDaniel Friesel-0/+1
2011-01-15BC for ~/.fehrcDaniel Friesel-0/+9
2011-01-15Screw --rcpath, check XDG_CONFIG_HOME insteadDaniel Friesel-24/+16