diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-05-29 23:38:34 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-05-29 23:38:34 +0200 |
commit | 5c48d11da28dbedcb0c72f44cb284037f24dcd4f (patch) | |
tree | b815c3b3cdf763abc48391b777bbba9526204ad2 | |
parent | 4fb5d4159586e84b8c062d1734d2041a8175b8b5 (diff) |
Hyprland: Add configuration for Qalculate
-rw-r--r-- | .config/hypr/hyprland.conf.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/hypr/hyprland.conf.in b/.config/hypr/hyprland.conf.in index 6d49e45..7c7ee7f 100644 --- a/.config/hypr/hyprland.conf.in +++ b/.config/hypr/hyprland.conf.in @@ -92,7 +92,7 @@ bind = $modkey, Q, killactive bind = $modkey SHIFT, F, togglefloating # Global programs -__bind(C, emacsclient -que '(popup-command-full-calc)') +__bind(C, qalculate-gtk) __bind(E, emacsclient -ca emacs) __bind(M, foot aerc) __bind(W, firefox) @@ -191,3 +191,8 @@ bindm = $modkey, mouse:273, resizewindow windowrulev2 = float, class:^(org\.pwmt\.zathura)$ windowrulev2 = size 50% 90%, class:^(org\.pwmt\.zathura)$ windowrulev2 = center, class:^(org\.pwmt\.zathura)$ + +# Open calculator in a floating window +windowrulev2 = float, class:^(qalculate-gtk)$ +windowrulev2 = size 50% 50%, class:^(qalculate-gtk)$ +windowrulev2 = center, class:^(qalculate-gtk)$ |