···4848Starts a systemd service if it is not already started, otherwise do nothing.
4949Useful if you only want to ask for the password when the service actually needs
5050to be started.
5151+5252+# kernel-blu checker
5353+5454+Notifies you if you're not using [kernel-blu](https://copr.fedorainfracloud.org/coprs/sentry/kernel-blu).
5555+Useful if you have multiple kernels installed.
+5
scripts/notify-blu-kernel.nu
···11+#!/usr/bin/nu
22+33+if not (uname | get kernel-release | str contains "blu.fc") {
44+ notify-send -u normal -i dialog-warning -t 1000 -a "Kernel Check" "Not using kernel-blu" "Gaming and VR may have slightly degraded performance or not function correctly."
55+}