summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-04-24[Theme] Add modulo to calc.i1088Dave Davenport
2020-04-24[Theme] Don't print unneeded ().Dave Davenport
2020-04-24[Theme] Fix the precedense ordering in parsing. Also avoid making copies.Dave Davenport
2020-04-24[Theme] Add * and / to calc().Dave Davenport
2020-04-23[Theme] use calc() syntax.Dave Davenport
2020-04-23[THEME] Fix printing theme with math in distance.Dave Davenport
2020-04-23Initial test to allow math in distances.Dave Davenport
Support + and - Needs spaces around + and -.
2020-04-22Add dependency to INSTALL.Dave Davenport
2020-04-22[Script] Add no-custom mode.Dave Davenport
2020-04-20Update doc/readme to be markdown.Dave Davenport
2020-04-20Update manpage and manpage build instructionsDave Davenport
2020-04-19fix xetc to config_path (#1097)Jaakko Luttinen
2020-04-19check before xresource config file parsing if it existDave Davenport
2020-04-19Clearify system configuration file loading process.Dave Davenport
2020-04-19Parse XDG_CONFIG_DIRS for default configuration file.Dave Davenport
2020-04-19Add ROFI_PLUGIN_PATH environment variable.Dave Davenport
2020-04-16[DMenu] Implement -keep-rightDave Davenport
Fixes: #1089
2020-04-15[DRun] cleanup debug message.Dave Davenport
2020-04-15[DRun] Adding %% as escape character.Dave Davenport
2020-04-07[Script] Update example and doc.Dave Davenport
2020-04-07[Script|Dmenu] Don't -1 in a unsigned variable.Dave Davenport
2020-04-07[Combi] Remove strchrnullDave Davenport
Issue: #1083
2020-04-06[Dmenu] Fix possible crash.Dave Davenport
Don't pass empty string. Issue: #1083
2020-04-05[Script] Fix crash when custom input with custom keybinding.Dave Davenport
2020-04-05[Script] Add environment variable to indicate state.Dave Davenport
* ROFI_RETV shows the state rofi was in before calling rofi.
2020-04-05[Script] Free g_shell_parse result.Dave Davenport
2020-04-01[Script] Small update manpage rofi-script.Dave Davenport
2020-04-01[Script] Update manpage with delim option.Dave Davenport
2020-04-01[Script] Add option to set deliminter and example script.Dave Davenport
Issue: #1041
2020-03-31add missing -eh (line height) option to man pages (#1080)fogine
2020-03-31[Textbox] Round estimated size up.Dave Davenport
2020-03-30Fix hack for height calc.Dave Davenport
2020-03-29[Textbox|Listview] Fix sizing of textbox.Dave Davenport
- don't get height of layout, but calculate height using metrics. - listview, set string with right number of lines. Issue: #925, #1069
2020-03-29Update manpage -selected-row option.Dave Davenport
2020-03-29Add selected-row option to normal operation.Dave Davenport
2020-03-20Remove gnome-terminal from rofi-sensible-terminal (#1074)Sebastiaan Lokhorst
gnome-terminal is no longer compatible, as noted in #1003
2020-03-14man: Fix typo (#1068)Sidou
Removed a duplicate word "the" on rofi.1.markdown.
2020-03-02Fix detection no theme.Dave Davenport
2020-02-21man: update default matches for desktop files (#1061)asymmetric
Taken from [`config.c`](https://github.com/davatorium/rofi/blob/d777d0ed4bec1fe363d35eb0b3e19a7ab17b1485/config/config.c#L120).
2020-02-17[Meson] Add libjpeg as dependency.Dave Davenport
Issue: #1060
2020-02-14[IconFetcher] Do faster scaling.Dave Davenport
2020-02-14[IconFetcher] Add jpeg support, scale on load.Dave Davenport
TODO: fix scaling speed.
2020-02-13[Script] Reload dialog, on selecting non-selectable item.Dave Davenport
2020-02-13[Script] Fix next dialog option.Dave Davenport
Error slipped in from previous patch. Issue: #1059
2020-02-13[Script] init nonselectable.Dave Davenport
Issue: #1057
2020-02-02Add missing compiled manpage.Dave Davenport
2020-02-02Add rofi-script manpage, add meta option support to dmenu.Dave Davenport
update ronn to go-md2man
2020-02-02Add option to make entry non-selectable in dmenu/script.Dave Davenport
Fixes: #1024
2020-02-02Indent all the code.Dave Davenport
2020-02-01Add support for additional field on script entries `meta` (#1052)Jeff
* Add test for hidden meta data in script mode The purpose of this is to provide support for "hidden" fields on a script item that work for search but don't get displayed. This is mostly to provide something similar to the optional display (but still matchable) fields in drun like "categories" or "keywords". This also enables the choice to display unicode icons but still allow for searching for the keywords without needing to print them. * Ignore the output file from test runs * Add support for the "meta" field on script entries This fields provides a matchable but unprinted string for entries in a script mode list match. This means you can use one thing but provide multiple options that can match that item without polluting the list view or make confusing output. * Add new test to test suite file