Files
nixos-config/modules/home/scripts/wm-controls/s_check.nix
2024-11-02 17:12:00 -04:00

10 lines
128 B
Nix
Executable File

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