summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorLines
2016-08-28update manpageDaniel Friesel-35/+8
2016-08-28merge next(_img), prev(_img) and (toggle_)menuDaniel Friesel-3/+3
2016-08-27feh(1): BUTTONS: Note that key actions can also be bound to buttonsDaniel Friesel-2/+5
2016-07-25feh(1): Details on in place editingDaniel Friesel-12/+8
2016-07-22Small typo in man pageThibaut Selingue-1/+1
2016-05-28Add prev_dir and next_dir navigation actionsguns-0/+6
Many image collections are organized by directory, so it is nice to have jump-to-adjacent-directory navigation. e.g. Given the following file hierarchy: . ├── A │   ├── 1.jpg │   ├── 2.jpg │   └── C │   ├── 1.jpg │   ├── 2.jpg │   └── 3.jpg └── B ├── 1.jpg ├── 2.jpg └── 3.jpg `feh --recursive` creates the following filelist: A/1.jpg <---- current_file A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg If we press [next_dir], we move the current_file pointer to: A/1.jpg A/2.jpg A/C/1.jpg <-- current_file A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg Pressing [next_dir] again moves the pointer to: A/1.jpg A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg <---- current_file B/2.jpg B/3.jpg [next_dir] now moves the pointer back to the top of the list: A/1.jpg <---- current_file A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg Pressing [prev_dir] from here moves backwards to the first image of the previous directory: A/1.jpg A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg <---- current_file B/2.jpg B/3.jpg When starting from an position that is not the first image of a directory, [prev_dir] moves the pointer to the first image of the current directory. These actions combine well with `--sort dirname` since all regular files in a directory will be sorted before any subdirectories, avoiding a filelist like the following: A/1.jpg A/SUBDIR/2.jpg A/SUBDIR/3.jpg A/4.jpg With `--sort dirname` that filelist becomes: A/1.jpg A/4.jpg A/SUBDIR/2.jpg A/SUBDIR/3.jpg
2016-05-28New sort option: dirnameguns-4/+4
Sort filelist by dirname, then by name. This results in file entries sorting before subdirectory entries. Useful in conjunction with upcoming prev_dir and next_dir navigation actions.
2016-04-24update feh(1) --geometry and --scale-downDaniel Friesel-3/+6
2016-04-14also respect w key in --geometry mode, update changelog and manualDaniel Friesel-0/+3
2016-04-09changelog, BC case or [ -L %F ] and similar actions using /bin/[Daniel Friesel-2/+10
2016-04-09feh(1): update --action partDaniel Friesel-6/+8
2016-02-26Add "--no-recursive" to man pageguraga-0/+5
Add description of option "--no-recursive" to man page.
2016-02-20update year in copyright noticeDaniel Friesel-1/+1
2016-02-16update test skip conditions and noticeDaniel Friesel-3/+5
Turns out giflib 5.1.2 is the culprit and it isn't Deban-specific after all.
2016-02-15skip all tests on debian arm* / mips* (broken Imlib2, again)Daniel Friesel-3/+7
2016-02-10add preliminary action-title support (#224)Daniel Friesel-1/+11
2016-02-04manpages: Set date to release date instead of build dateDaniel Friesel-1/+1
This should also help distributions working towards reproducible builds.
2016-02-04Hi, I'd like one bugfix release to go please!Daniel Friesel-0/+9
2016-01-26feh(1): --index-info: Add note about empty info stringDaniel Friesel-0/+4
2016-01-07Changes:William Woodruff-0/+6
* Added an --insecure option to disable host/peer verification in libcurl. This allows feh to load images on HTTPS hosts with self-signed certificates. For security, this is not the default. * Fixed an include in show_usage.
2015-09-30update --xinerama-screen documentation in feh(1)Daniel Friesel-15/+24
2015-07-14feh(1): note that feh displays the cwd by default (closes #202, #203)Daniel Friesel-1/+5
2015-07-14feh(1): improve EXIF noteDaniel Friesel-4/+5
2015-06-26feh(1): move --xinerama-index to background setting section, extend descriptionDaniel Friesel-7/+15
2015-06-22support background setter for specific screenJames Knight-1/+13
The following adds the ability, when using `feh` as a background setter, to use a specific Xinerama screen to render a provided image. Along with the provided '--bg-*' option, the '--xinerama-index' argument will be used to identify the index of the detected Xinerama screen to use. Signed-off-by: James Knight <james.d.knight@live.com>
2015-04-13feh(1): themes config syntax: mention details about quoting and filename ↵Daniel Friesel-5/+13
generation
2015-04-06feh(1): Mention keys which work in thumbnail modeDaniel Friesel-3/+4
2015-04-06--max-dimension: ignore width/height limit of 0 pixelsDaniel Friesel-2/+2
2015-04-03feh(1): --start-at: add hint about absolute/relative path limitationsDaniel Friesel-1/+12
2015-01-09Make --scale-down work with --geometry.Ilion Beyst-1/+3
2014-08-28feh(1): 'exec' is not required for .fehbgDaniel Friesel-5/+10
While at it: Add some notes about .fehbg in general and the fact that it is an executable shell script now.
2014-08-28Update man pages to reflect fehbg changesDrew DeVault-1/+1
2014-05-15feh(1): mention Paul Duncan (gib_hash is now incorporated in feh, after all)Daniel Friesel-1/+2
2014-05-08feh(1): Add %% format specifierDaniel Friesel-0/+4
2014-04-26respect --image-bg=checks in fullscreen mode (closes #156)Daniel Friesel-1/+3
2014-04-22man/feh: escape %V (mdoc macro)Daniel Friesel-1/+1
2014-04-14add --scroll-step optionDaniel Friesel-0/+11
2014-04-13update changelog and documentationDaniel Friesel-1/+2
2013-11-24thumbnail mode: if --action is set, run it instead of opening imagesDaniel Friesel-1/+2
2013-09-26add "--info ;cmd" to disable info display on startup (closes #142)Daniel Friesel-1/+8
2013-09-26Updating man page for new geometry optionsJoel Bradshaw-1/+14
2013-05-06Add %L format code (temporary copy of filelist)David Gowers-0/+4
2013-02-14release v2.9.12.9.1Daniel Friesel-4/+0
2013-02-12patch by sdaau: button bindings for zoom in / outDaniel Friesel-0/+9
2013-02-09feh(1): stdin now behaves when used with other files / filelistsDaniel Friesel-2/+0
2013-02-01support "feh -" to read from stdin. closes #118Daniel Friesel-0/+4
2013-01-30New sort option: mtimeguns-2/+7
Sort filelist by modification time, newer files first. Useful for perusing a directory of images by most recently added or changed.
2013-01-30Add option and keybinding to keep zoom and viewport settings.Daniel Friesel-5/+16
Patch by sdaau on IRC. Thanks!
2012-12-19feh(1): fix typoDaniel Friesel-1/+1
2012-12-19treat quick, low-offset drags as clicks (closes #113)Daniel Friesel-5/+9