summaryrefslogtreecommitdiffstats
path: root/source
AgeCommit message (Collapse)Author
2021-07-02[Theme] Remove listview backwards compatibility hack.Dave Davenport
2021-06-30[Icon|Button] Make action available on icon and use keyb name.Dave Davenport
You can now bind a key-binding on mouse click to icons and buttons by setting "action" property. For example: ```css icon-paste { expand: false; filename: "gtk-paste"; size: 24; vertical-align: 0.5; action: "kb-primary-paste"; } ```
2021-06-30[View] User-timeout: reset timeout on actionDave Davenport
2021-06-30[View] Add support for user timeout + keybinding actionDave Davenport
Configuration looks like: ```css configuration { timeout { delay: 15; action: "kb-cancel"; } } ``` Both delay and action need to be set. Action can be any of the keybindings as shown in `rofi -show keys`. (-timeout-delay 15 -timeout-action "kb-cancel" on commandline.). Fixes: #1066
2021-06-27[Config] Remove some debug printfs.Dave Davenport
2021-06-27[Config system] Add a bit of a hack to auto-add commandline options.Dave Davenport
For new config system.
2021-06-27[View] Don't refilter when no mode is selected.Dave Davenport
2021-06-27[FileBrowser] Add sorting-method. (#1340)TonCherAmi
* [FileBrowser] Add sorting-method. * [FileBrowser] Convert -file-browser-directory to new config format.
2021-06-24[FileBrowser] rename file-browser to filebrowserDave Davenport
In preperation to a overhaul of config system.
2021-06-15[Widget] Add scaling option to background-image.Dave Davenport
2021-06-15[DRun] Add advanced parse-user and parse-system config option.Dave Davenport
2021-06-15Fix regression in commit e52094ee7a2c216ddf74660a0b4a2e51d7433948 (#1317)nick87720z
I forgot about line style (dash) support which had to be tested too.
2021-06-15New keybinding Ctrl-Shift-Enter (#874)Markus Gräb
This function combines accept-custom with the functionality to start the command in terminal Co-authored-by: Markus Gräb <m_graeb11@cs.uni-kl.de> Co-authored-by: Dave Davenport <DaveDavenport@users.noreply.github.com>
2021-06-15Made it so the presence of a field in drun-display-format is enough to parse ↵Zachary Freed
the .desktop files for that field. Also fixed helper_string_replace_if_exists only allowing one guarded field in the display format by making the regex ungreedy (#911) Co-authored-by: Dave Davenport <DaveDavenport@users.noreply.github.com>
2021-06-15[Doc] Add new -display-{mode} method to manpage.Dave Davenport
2021-06-15[Test] Fix the test.Dave Davenport
2021-06-14[Configuration] Add start of more 'theme' based configuration.Dave Davenport
Nested CSS blocks in configuration {} are parsed into rofi_configuration.
2021-06-14[Theme] Add angle support to linear-gradient.Dave Davenport
2021-06-14[Theme] Add direction support to linear-gradient.Dave Davenport
2021-06-13[Theme] Support multiple stops in linear-gradientDave Davenport
* Fix anchor dumping * Fix image dumping
2021-06-13[Widget] with background image, draw background-color first.Dave Davenport
2021-06-13[Widget] Extend the pattern when loading, good for bg patterns.Dave Davenport
2021-06-13[Widget] Change scaling of background-imageDave Davenport
2021-06-13[Widget] Add initial support for background-image.Dave Davenport
* Supports url("path") and linear-gradient(start,stop).
2021-06-10[Widget] Fix small compile warning.Dave Davenport
2021-06-09Update copyright header.Dave Davenport
2021-06-09[DRun] Do not use show-icons options, handle no-icon desktopfile better.Dave Davenport
2021-06-09[Theme] Allow theme to set icon independent of show-icons option.Dave Davenport
2021-06-08[Config] Remove fake-transparency/background option.Dave Davenport
* fake-transparency * fake-background
2021-06-08[Config] Remove old unused options.Dave Davenport
2021-06-08Remove deprecated theme optionsDave Davenport
* color_window * color_urgent * color_active * color_normal
2021-06-08Remove some deprecated options.Dave Davenport
* lines * columns * width
2021-06-08Remove deprecated option, fix typo in manpage.Dave Davenport
2021-06-08[Combi] Disable completer.Dave Davenport
2021-06-08[Doc] Document -drun-url-launcher. (#1328)TonCherAmi
2021-06-08Add fallback icon option.Dave Davenport
2021-06-08[DRun] Only go to file completer if desktop file support url.Dave Davenport
2021-06-08[DRun] Add file completer to drun mode.Dave Davenport
Add icons to run mode.
2021-06-08[Doc,Config] Remove line-margin|padding and fix doc mistake.Dave Davenport
*Deprecated* option.
2021-06-05[FileBrowser] Allow setting startup directory (#1325)TonCherAmi
2021-06-01[Run] Allow (Ctrl-L) to complete files using file-browser.Dave Davenport
Merge old setup from #1116 issue: #1116 #659
2021-06-01[Config] Quick hackish workaround for handling dynamic options from config fileDave Davenport
Quick hackish workaround for having options that are added *after* config file is parsed. This needs to be replaced once the config system is revamped. Fixes: #905
2021-06-01Re-indent the code using indenter.Dave Davenport
2021-06-01[Configuration] Remove old configuration format.Dave Davenport
2021-05-31[Script] Don't enable custom keybindings by default, script needs to enable ↵Dave Davenport
this. Having it on by default broke the default rofi workflow. Make it an option now. Fixes: #1286,#1226
2021-05-31[X11Helper] Add exception for bspwm window placing above window.Dave Davenport
fixes: #1169
2021-05-30[DRun] Add support for service filesDave Davenport
Untested as I do not have these files myself. Issue: #1152
2021-05-29add prefix matching method feature (#1237)unisgn
* add prefix matching method feature * Update helper.c * prefix matching regex memory leak fix * prefix matching regex memory leak fix Co-authored-by: francis <oxfrancis@outlook.com>
2021-05-29Implement pango markup for -window-format (#1288)Jas
* Implement pango markup for -window-format * Make sure role != null Since g_markup_escape_text doesn't like null it seems * Update formatting To bring it more in line with surrounding code * Address review comments * Fix memory leaks * Fix formatting
2021-05-23[DRun] Fix sorting when name is NULL.Dave Davenport
Thanks to nick87720z