s_check now uses -eq 1 again instead of = "true"

This commit is contained in:
2024-11-17 03:58:21 -05:00
parent 1e8c5a5354
commit 654a5f8777

View File

@@ -4,6 +4,6 @@ pkgs.writeShellApplication {
text = ''
#!/run/current-system/sw/bin/bash
[ "$SOUNDS_ENABLED" = "true" ]
[ "$SOUNDS_ENABLED" -eq 1 ]
'';
}