dotnix/modules/home/scripts/volumemute.nix
2025-03-29 19:05:05 +01:00

6 lines
165 B
Nix

{ pkgs }:
pkgs.writeShellScriptBin "volumemute" ''
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
notify-send -t 1250 "$(wpctl get-volume @DEFAULT_AUDIO_SINK@)"
''