fix(desktop): give calc its own key instead of combi (task 0024)

rofi-calc's live result only shows with the global -no-show-match flag,
which inside combi would unfilter the drun/run/window app search. Move
math evaluation to its own Super+C invocation carrying that flag, and
return combi to drun,run,window with emoji as the tab-away mode.
This commit is contained in:
2026-07-22 16:10:10 -04:00
parent 05044de33e
commit af5922b681
2 changed files with 11 additions and 5 deletions

View File

@@ -23,9 +23,11 @@ Structure it so it is reusable as the dmenu-style frontend for later utility men
- `rofi-wayland` no longer exists as a separate package: nixpkgs merged the Wayland fork into `pkgs.rofi` (now 2.0.0), and `rofi-emoji-wayland` into `rofi-emoji`. - `rofi-wayland` no longer exists as a separate package: nixpkgs merged the Wayland fork into `pkgs.rofi` (now 2.0.0), and `rofi-emoji-wayland` into `rofi-emoji`.
The module uses the plain `pkgs.rofi`, which is the Wayland-capable build. The module uses the plain `pkgs.rofi`, which is the Wayland-capable build.
- The combined prompt is rofi's `combi` mode: `combi-modi = "drun,run,window,calc"` merges the run/switch modes and calc (via the `rofi-calc` plugin) into one list, so math results appear inline in the same view. - The combined prompt is rofi's `combi` mode: `combi-modi = "drun,run,window"` merges the run/switch modes into one list, with emoji (via `rofi-emoji`) the one further mode the same window tabs to.
`modi = "combi,emoji"` leaves emoji (via `rofi-emoji`) as the one further mode the same window tabs to.
`Super+R` runs `rofi -show combi`. `Super+R` runs `rofi -show combi`.
- Math evaluation is a separate `Super+C` invocation, `rofi -show calc -modi calc -no-show-match -no-sort` (the `rofi-calc` plugin).
rofi-calc's live result is one generated entry that only survives with `-no-show-match`, a global rofi flag.
Inside `combi` that flag would also unfilter the `drun`/`run`/`window` app search, so calc cannot share the combi prompt and takes its own key.
- The dmenu-style reuse is the themed rofi itself, not a separate abstraction: any `rofi -dmenu` invocation reads the same config and Stylix theme, so the power menu — and later clipboard/utility menus — look uniform for free. - The dmenu-style reuse is the themed rofi itself, not a separate abstraction: any `rofi -dmenu` invocation reads the same config and Stylix theme, so the power menu — and later clipboard/utility menus — look uniform for free.
- The launcher and power-menu keybinds live in this module rather than in `hyprland.nix`, contributed through `settings.bind`, which the module system concatenates with the compositor's own binds in the single `hyprland.conf`. - The launcher and power-menu keybinds live in this module rather than in `hyprland.nix`, contributed through `settings.bind`, which the module system concatenates with the compositor's own binds in the single `hyprland.conf`.
This keeps each command next to its binding and referenced by store path, so a rename cannot silently break the bind. This keeps each command next to its binding and referenced by store path, so a rename cannot silently break the bind.

View File

@@ -41,19 +41,23 @@ in
enable = true; enable = true;
package = rofiPkg; package = rofiPkg;
# drun, run, window and calc share one prompt through combi. # drun, run and window share one prompt through combi.
# emoji is the separate mode the same window tabs to. # emoji is the separate mode the same window tabs to.
extraConfig = { extraConfig = {
modi = "combi,emoji"; modi = "combi,emoji";
combi-modi = "drun,run,window,calc"; combi-modi = "drun,run,window";
show-icons = true; show-icons = true;
}; };
}; };
# The launcher and the session menu, kept next to the tool they drive. # The launcher, a calculator and the session menu, each next to its tool.
# calc runs on its own key, not in combi.
# Its live result needs rofi's global -no-show-match flag, which would
# unfilter the combi prompt's own app search.
# $mod is defined by the compositor config these binds share. # $mod is defined by the compositor config these binds share.
wayland.windowManager.hyprland.settings.bind = [ wayland.windowManager.hyprland.settings.bind = [
"$mod, R, exec, ${rofiPkg}/bin/rofi -show combi" "$mod, R, exec, ${rofiPkg}/bin/rofi -show combi"
"$mod, C, exec, ${rofiPkg}/bin/rofi -show calc -modi calc -no-show-match -no-sort"
"$mod SHIFT, X, exec, ${powerMenu}" "$mod SHIFT, X, exec, ${powerMenu}"
]; ];
}; };