nix-config/home/modules/graphical/mouse-actions/actions/deafen.nix

7 lines
172 B
Nix

{ pkgs, ... }:
{
package = pkgs.writeShellScriptBin "deafen-action" ''
${pkgs.hyprland}/bin/hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(vesktop)$'
'';
}