Various scripts that I maintain

Add kernel-blu checker script

Signed-off-by: Shiloh Fen <shiloh@shilohfen.com>

+10
+5
README.md
··· 48 48 Starts a systemd service if it is not already started, otherwise do nothing. 49 49 Useful if you only want to ask for the password when the service actually needs 50 50 to be started. 51 + 52 + # kernel-blu checker 53 + 54 + Notifies you if you're not using [kernel-blu](https://copr.fedorainfracloud.org/coprs/sentry/kernel-blu). 55 + Useful if you have multiple kernels installed.
+5
scripts/notify-blu-kernel.nu
··· 1 + #!/usr/bin/nu 2 + 3 + if not (uname | get kernel-release | str contains "blu.fc") { 4 + 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." 5 + }