updates for hyprland

This commit is contained in:
Chris Cochrun 2023-01-10 09:39:27 -06:00
parent 8adb361b82
commit 7863e720c3
4 changed files with 213 additions and 176 deletions

14
scripts/ncsyncmon Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
while [ 1 ];
do
./ncsyncchk.sh
ncsync=$(cat /tmp/ncsync)
if rg -q "Syncing" /tmp/ncsync
then
echo true
else
echo false
fi
sleep 10
done