Files
nixos-config/modules/home/scripts/wm-controls/s_check.nix
2024-11-01 21:01:52 -04:00

10 lines
128 B
Nix

{
self,
pkgs,
}:
pkgs.writeShellScriptBin "scheck" ''
#!/run/current-system/sw/bin/bash
[ "$SOUNDS_ENABLED" -eq 1 ]
''