add scripts and config

This commit is contained in:
2023-07-12 17:02:27 +07:00
parent 520fb7cd75
commit 4b1d0cd562
12 changed files with 365 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
NM=$(pidof gammastep)
if [[ $NM > 0 ]]; then
killall gammastep
else
gammastep -b 1:0.9 -l 56.01:92.86 -t 5600:4500 &
fi
exit 0