feat(mouse-actions): add play-pause action

This commit is contained in:
toast 2025-11-09 21:29:36 +09:00
parent e9f087deed
commit 2c642a7e32
4 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
package = pkgs.writeShellScriptBin "play-pause-action" ''
${pkgs.playerctl}/bin/playerctl play-pause
'';
}