From 1a67311469f886995240b518409f9a2180f35210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Thu, 8 May 2025 06:35:01 +0000 Subject: [PATCH] +qalc; add a shortcut for it --- modules/profiles/desktop/default.nix | 3 ++- modules/profiles/desktop/rc.lua | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/profiles/desktop/default.nix b/modules/profiles/desktop/default.nix index 73b8c6b..b7c47d0 100644 --- a/modules/profiles/desktop/default.nix +++ b/modules/profiles/desktop/default.nix @@ -232,7 +232,8 @@ in ghostscript libva-utils # intel video tests pavucontrol - qalculate-qt + libqalculate # qalc + qalculate-qt # qalculate google-chrome wirelesstools poppler_utils diff --git a/modules/profiles/desktop/rc.lua b/modules/profiles/desktop/rc.lua index 37b111f..c15b591 100644 --- a/modules/profiles/desktop/rc.lua +++ b/modules/profiles/desktop/rc.lua @@ -387,6 +387,9 @@ globalkeys = gears.table.join( -- My customizations awful.key({ modkey }, "x", function() awful.spawn.with_shell("loginctl lock-session") + end), + awful.key({ modkey }, "q", function() + awful.spawn.with_shell("qalculate-qt") end) )