Files
en2z-dotfiles/rockethype/local/bin/night-mode
T
2023-07-12 17:02:27 +07:00

12 lines
150 B
Bash
Executable File

#!/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