From 7dbaaaf3d2e9e85c521d97a55b2c23fa170130cc Mon Sep 17 00:00:00 2001 From: Samae Date: Tue, 24 Oct 2023 10:02:31 +0300 Subject: [PATCH] Add bindings for dunstctl set-paused --- lib/KeyBindings.hs | 1 + shell.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/KeyBindings.hs b/lib/KeyBindings.hs index a47480d..ecbbb2f 100644 --- a/lib/KeyBindings.hs +++ b/lib/KeyBindings.hs @@ -70,6 +70,7 @@ modify conf = conf -- Dunst , ("C-", spawn "dunstctl close") , ("C-S-", spawn "dunstctl close-all") + , ("M-n p", spawn "dunstctl set-paused toggle") ] viewProject :: WorkspaceId -> X () diff --git a/shell.nix b/shell.nix index 4f58065..d807092 100644 --- a/shell.nix +++ b/shell.nix @@ -12,6 +12,6 @@ in mkShell { buildInputs = [ - #easy-hls + easy-hls ]; }