mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
13 lines
259 B
Nix
13 lines
259 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
script = pkgs.writeShellScriptBin "deafen-action" ''
|
|
hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(discord)$'
|
|
'';
|
|
in
|
|
{
|
|
package = pkgs.symlinkJoin {
|
|
name = "deafen-action";
|
|
paths = [ script pkgs.hyprland ];
|
|
};
|
|
}
|