From 709faac842cb2381b5d60602fa7794ecd05d8fe7 Mon Sep 17 00:00:00 2001 From: Qball Date: Sun, 18 May 2025 11:43:33 +0200 Subject: [PATCH] Add `rofi-actions` to website and update releasenotes. --- mkdocs/docs/current/rofi-actions.5.markdown | 1 + releasenotes/1.7.9/release-1.7.9.markdown | 32 +++++++++++++++++---- 2 files changed, 28 insertions(+), 5 deletions(-) create mode 120000 mkdocs/docs/current/rofi-actions.5.markdown diff --git a/mkdocs/docs/current/rofi-actions.5.markdown b/mkdocs/docs/current/rofi-actions.5.markdown new file mode 120000 index 00000000..a9c62270 --- /dev/null +++ b/mkdocs/docs/current/rofi-actions.5.markdown @@ -0,0 +1 @@ +../../../doc/rofi-actions.5.markdown \ No newline at end of file diff --git a/releasenotes/1.7.9/release-1.7.9.markdown b/releasenotes/1.7.9/release-1.7.9.markdown index 3da1038a..58c15e20 100644 --- a/releasenotes/1.7.9/release-1.7.9.markdown +++ b/releasenotes/1.7.9/release-1.7.9.markdown @@ -2,12 +2,12 @@ ## Custom commands on events -Giomatfois62 added a nice feature that you can execute a custom command on different events. -For example play a sound on moving around. +Giomatfois62 added a nice feature that allows you to execute a custom command +on different events. For example play a sound when accepting an entry. -This pull request addresses issue #2032, making it possible to execute custom user commands or scripts on a variety of rofi events. The following events are covered for now: - -See the rofi-actions(5) manpage for more information. +See the +[rofi-actions(5)](https://github.com/davatorium/rofi/blob/1.7.9/doc/rofi-actions.5.markdown) +manpage for more information. ## NVidia workaround workaround @@ -16,16 +16,38 @@ black if we used the 'over' operator in cairo. Working around this caused some drawing issues with anti-aliasing. There now exists two flags to to work around this workaround again. Either disable the workaround, or disable anti-aliasing. +You can set these options per widget: + +```css +widget { + border-disable-nvidia-workaround: true; + border-aa: false; +} +``` + +It's recommended to set it globally. + +```css +* { + border-disable-nvidia-workaround: true; + border-aa: false; +} +``` + ## IMDKit runtime disable option Because IMDKit can break some keybindings, this can now be disabled at runtime. For example if you try to bind only the 'Super' key, this can fix this. +For more information, see issue: #2124 + ## Smartcase support Thanks to Phanium, rofi now supports Vim style 'smartcase'. Can be enabled using `-case-smart`. +Fore more information, see issue: #2060 + ## Changelog * Add -imdkit config to toggle imdkit at runtime (#2124) (thx Amos Bird)