aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
Commit message (Collapse)AuthorAgeFilesLines
* make width of navigation area configurable (#155)LuXu2021-11-041-0/+5
| | | | | | | | | this allows users to configure navigation width from config.h. it also allows disabling the navigation function entirely by using a 0 width. one extra functionality this adds is being able to define an absolute width (in pixels) instead of just percentage via `NAV_IS_REL`. Co-authored-by: NRK <nrk@disroot.org>
* Add colors and fonts to config.h (#115)Arthur Williams2021-10-291-1/+9
| | | | | | | | Adds a set of config vars to control window fg/bg, bar fg/bg, mark color and bar font. This allows everything that can be done from .Xresources to be configurable from config.h. Co-authored-by: N-R-K <79544946+N-R-K@users.noreply.github.com>
* Add default key-binding for DRAG_RELATIVE (#117)LuXu2021-10-271-0/+1
| | | | | | | | Ctrl-Button1 now has a relative drag using the XC_fleur cursor. XC_fleur is normally the cursor for "size all" action, which has 4 arrows pointing to 4 directions. Co-authored-by: NRK <nrk@disroot.org>
* Make imgcursor a config variable.Arthur Williams2021-10-131-0/+5
| | | | | | | | Previously, the value of imgcursor was determined by where a pointer binding was set to a ci_cursor_navigate. If it was then the pointer would change to left/right arrows depending on the position relative to the window. Now the user has full control of over it which also allows them to preserve the behavior in case they wrap the function.
* code-style: fix consistency issues all over the codebase (#94)Berke Kocaoğlu2021-10-111-1/+1
| | | | | | | | | | | | | | | * remove duplicate comment * remove empty tabs and blank lines * move macros and globals ontop * comment to seprate function implementation * fix alignment * switch to *argv[] similar to other suckless code * kill all empty last lines * append comment to endif * reuse existing ARRLEN macro * comment fall through * use while (true) everywhere Co-authored-by: NRK <nrk@disroot.org>
* update outdated comment in config.def.h (#105)N-R-K2021-09-301-3/+2
| | | | we're not using 'background', 'foreground' and 'font' anymore. see: 0b20783 and f7557c5
* Use zoom steps instead of hard-coding levels (#92)Lu Xu2021-09-251-7/+4
| | | | | Co-authored-by: NRK <nrk@disroot.org> Co-authored-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr>
* make keyhandler abort key configurable via config.hNRK2021-09-241-0/+3
|
* Allow any set of modifiers to be used in keybindingsArthur Williams2021-09-201-0/+3
| | | | | | | | | | | | | Previous the code only allowed ShiftMask,ControlMask or Mod1Mask to be used in keybindings and the presence of any others modifiers would be ignored. Most problems generally allow certain modifiers to be be ignored but not most and certainly don't allow Super-A to be treated like A. Now users can use any modifiers they want in keybindings and can also ignore any modifiers they want. By default only ModMask2 (commonly numlock is ignored) Co-authored-by: N-R-K <79544946+N-R-K@users.noreply.github.com>
* config.def.h: change enums to static const intsNRK2021-09-171-7/+3
|
* Rename, Update Docs and Prepare for Release (#9)Berke Kocaoğlu2021-09-161-1/+1
| | | | | | | Co-authored-by: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Co-authored-by: N-R-K <79544946+N-R-K@users.noreply.github.com> Co-authored-by: NRK <nrk@disroot.org> Co-authored-by: Arthur Williams <taaparthur@gmail.com> Co-authored-by: eylles <ed.ylles1997@gmail.com>
* set title based on prefix and suffix (#23)qsmodo2021-09-161-0/+15
| | | | | | Co-authored-by: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Co-authored-by: NRK <nrk@disroot.org> Co-authored-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr>
* add new keybind, Ctrl-a to toggle animation (#33)N-R-K2021-09-161-0/+1
| | | | | | | | | | | | * add new keybind, Ctrl-a to toggle animation Closes: https://github.com/nsxiv/nsxiv/issues/27 * Format consistency This keeps in line with other actions that have multiple keybinds Co-authored-by: eylles <ed.ylles1997@gmail.com> Co-authored-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr>
* Implement fill scale modeBerke Kocaoğlu2021-09-161-0/+1
|
* Change colors and font only via X resourcesBert Münnich2019-04-191-11/+3
|
* Add Xresources font supportvxid2019-04-191-0/+1
|
* New colorsBert Münnich2019-01-261-2/+2
|
* Mention X resource properties in build-time color configBert Münnich2019-01-261-0/+1
|
* Align compile-time color options with X resource colorsBert Münnich2019-01-231-5/+2
| | | | Two colors are more than enough!
* Simplify X resource retrievalBert Münnich2019-01-231-5/+5
| | | | Also makes the color names in config.def.h constant again.
* Add Xresources capabilitynoamcore2019-01-231-5/+5
|
* Change default key-bindings of mark commandsBert Münnich2018-06-091-3/+3
| | | | | *Shift-m* feels much more natural for *mark_range* and *Ctrl-u* is decent enough for *unmark_all*.
* Add mark range functionDaniel Lublin2018-06-091-0/+1
| | | | | Sets the marked state of all images ranging from the latest marked/unmarked image to the current image, to the state of that latest toggled image.
* Use argument to select between two drag methodsphi2018-01-221-1/+1
|
* Improve mouse supportBert Münnich2017-10-061-10/+4
| | | | | | | | | | | | None of the mouse mappings uses a keyboard modifier, making it possible to access the most basic features by only using the mouse. Next/previous image with left button depending on cursor position, middle button for dragging, right button for switching to thumnail mode and wheel for zooming. Users can keep the old behaviour by simply not adapting the changes to the buttons array in config.def.h to their config.h file.
* Make pan fraction configurablejcalve2017-09-061-0/+3
|
* Use Xft for font loading and text drawingBert Münnich2016-08-061-2/+2
|
* Build-time option for default thumbnail size; fixes issue #207Bert Münnich2015-12-201-0/+3
|
* Simplified command argumentsBert Münnich2015-01-111-88/+88
|
* Apply gamma value on thumbnails too; fixes issue #193Bert Münnich2015-01-051-3/+3
|
* Moved thumbnail sizes array to config.def.hBert Münnich2014-09-291-0/+6
|
* Removed obsolete thumbnail dimension configuration settingBert Münnich2014-09-281-6/+0
|
* Added thumbnail zooming...Bert Münnich2014-09-281-6/+6
| | | | | | - Key mappings +/- are now general commands - Use JPG as thumbnail cache file format instead of PNG - Fixes issue #161
* Increased contrast in default color setBert Münnich2014-08-171-2/+2
|
* Added command to remove all image marks, bound to Ctrl-m; fixes issue #163Bert Münnich2014-08-171-0/+1
|
* Revised handling of GIF animationsBert Münnich2014-07-251-7/+0
| | | | | | - New option `-a`: Play animations at startup - Ctrl-Space toggles animation for all GIF files - Infinite loop for all animations
* Added support for multiple commands per key/button mapping; elegant fix for ↵Bert Münnich2014-07-231-0/+2
| | | | issue #150
* Revised command structure and key and mouse button mappingsBert Münnich2014-07-231-51/+47
|
* Use integers for mouse mappings and buttons 6+7 for horizontal scrollingBert Münnich2014-05-311-9/+11
| | | | Fixes issue #143
* Use a checkerboard background for alpha layer; fixes issue #138Bert Münnich2014-04-061-13/+10
|
* Revised scale mode and zoom level handlingBert Münnich2014-02-041-9/+2
| | | | | | | - Scale mode is not reset to default value upon image loading anymore - New default key binding to change mode to scale-down - Removed scale mode setting from config.h - Removed -d command line option, as this is now the default at startup
* Removed fit-win-to-img commandBert Münnich2014-02-041-1/+0
|
* Merged pull request #129Bert Münnich2014-01-311-1/+3
|\
| * Use a prefix key to execute the key handlerAndrás Mohari2014-01-311-0/+6
|/ | | | | | The default prefix key is C-x, and can be changed in config.def.h. The first key pressed after the prefix key will be passed the external key handler, unless the key is Escape, which is used to cancel the prefix.
* Slideshow mode is back, in a simplified versionBert Münnich2014-01-041-0/+5
|
* Moved external shell commands into exec/key-handler scriptBert Münnich2014-01-021-17/+0
| | | | | Gets called on all unset key mappings. Arguments are: key combo and current file. Thanks to Francesco Orsenigo (xarvh) for the idea.
* Proper support for Ctrl/Shift/Alt modifiers in key & mouse mappingsBert Münnich2014-01-021-93/+92
|
* Refactored remote changesBert Münnich2013-12-311-1/+1
|
* Read GIF's repeat information from file.Aleksander Nitecki2013-12-301-1/+1
|
* Merge remote-tracking branch 'baskerville/reverse-marks'Bert Münnich2013-11-141-0/+1
|\