summaryrefslogtreecommitdiffstats
path: root/config
AgeCommit message (Collapse)Author
2021-06-27[FileBrowser] Add sorting-method. (#1340)TonCherAmi
* [FileBrowser] Add sorting-method. * [FileBrowser] Convert -file-browser-directory to new config format.
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-08Add fallback icon option.Dave Davenport
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-01Re-indent the code using indenter.Dave Davenport
2021-05-02Remove -fullscreen option, deprecated by new theme format.Dave Davenport
Use 'window {fullscreen: true;}' instead.
2021-05-02Remove -show-match option, deprecated.Dave Davenport
Use 'element {highlight: none;}' in theme/configuration to reproduce it.
2021-04-13Add 'steal-focus' option instead of 'restore-focus' option.Dave Davenport
Disable steal-focus by default. Fixes: #1275
2021-03-27Add [no]focus restore option.Dave Davenport
2020-11-03Indent round.Dave Davenport
2020-09-30[Helper] Add -normalize-match option.Dave Davenport
Decomposes string and remove accent characters before matching. This makes o match ö, é match e and more. It is not a perfect implementation but works. Currently disables the match highlighting. Fixes: #1119
2020-08-28Run indenter.Dave Davenport
2020-08-26Follow Type=Link standard desktop entries with drun (#1168)Mike Dalessio
* [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-05-12Add some ui benchmark codeDave Davenport
2020-04-26[Test] Fix compiler warning, theme test (bug in lexer) and more.Dave Davenport
2020-02-02Indent all the code.Dave Davenport
2020-01-26[DRun] Add desktop cacheDave Davenport
Add a desktop cache file. Usable for system with slow filesystems. * -drun-use-desktop-cache * -drun-reload-desktop-cache Fixes: #1040
2019-10-17[Window] Add thumbnail of windows as option.Dave Davenport
2019-08-20[DRun] Add keywords to match and printing.Dave Davenport
2019-08-09[DRUN] Add option to only show desktop files in certain categoriesDave Davenport
closes: #817
2019-03-29[Window] Fix default value and help comment.Dave Davenport
2019-02-10[SSH] Add support for parsing port number from known hosts file.Dave Davenport
* Store port number in history. * Parse the [host]:port format. * Update default ssh command to (optionally) add -p {port}. Fixes: #580
2019-02-08Add option to change location of cache dir.Dave Davenport
-cache-dir Fixes: #769
2019-01-21change default alt. window command to bring to current desktop.Dave Davenport
Xkill is duplicate of shift-del (build in close). This is more useful. Fix test-case. Fixes: #902
2018-12-31Add history ignore (#846)Yoav
2018-12-14Add an option to change the matching negation character.Dave Davenport
Fixes: #877
2018-10-17[DRUN] Add drun-display-format.Dave Davenport
2018-08-08Indent the code.Dave Davenport
2018-07-28[DRUN] Add option to show actions in drun.Dave Davenport
Fixes: #836
2018-06-13Sorting cleanup (#816)Dave Davenport
* Add `-sorting-method` option remove weird -sort-levenshtein. * Fix test for updated cmdline options. * Update manpage
2018-06-09Re-add icon-theme option.Dave Davenport
2017-12-31[DRun] Set the default for match fields in the config to the correct value.Dave Davenport
2017-11-07IndentDave Davenport
2017-11-07[Combi] Add hide prefix option.Dave Davenport
2017-10-21Added option -name-only to match only desktop entry name with drun (#690)Askrenteam
* Added option -name-only to match only desktop entry name with drun * fixed indent and xrdump test * fixed test * option -drun-match-fields * option -window-match-fields * matching fields as static in window/drun + enums for field indexes * prevent window_mode_parse_fields() from executing twice
2017-10-05Indent files.Dave Davenport
2017-10-03Allow maximum history size to be configured.Dave Davenport
Fixes: #613
2017-10-02config: Only default-enable window mode if builtQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-08-18Move more enums to rofi-types.hDave Davenport
2017-07-06Re-add some of the old theme options, so theme converter use them.Dave Davenport
- line margin - separator style. - fake transparency. - line padding. - scrollbar width
2017-07-03[OldTheme] Re-add the padding/bw option.Dave Davenport
2017-06-07drun: Use Adwaita and gnome as fallback themesQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-05-30config: Add a setting to disable icons loadingQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-05-30window: Add icons support (quick and dirty)Dave Davenport
2017-05-30drun: Implement icon supportQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>