gutu
v0.1.0
gutu управляет вашим настольным запусками приложений. Особенно на автономных управляющих окон, его можно использовать для униформы, как вы обрабатываете процессы, необходимые для запуска (например, демон уведомления, обработчик корзины и т. Д.)
Гуту доступен на AUR.
Загрузите двоичный файл с github.com/alexcoder04/gutu/releases/latest и скопируйте его в каталог в вашем $PATH .
git clone " https://github.com/alexcoder04/gutu.git "
cd gutu
go build . # build the binary
go install . # install the executable to your $GOPATH Автоматическое gutu в вашем оконном диспетчете / среде рабочего стола: выполните gutu . Для настройки служб см. Ниже.
Каждый файл службы входит в отдельный файл в $XDG_CONFIG_HOME/gutu . Эти файлы могут иметь расширения .service , .yml и .yaml .
# your name for the service
Name : compositor
Command : picom
Args : ["--experimental-backends"]
# restart if fails, at most 3 times
KeepAlive : true
RetryNumber : 3
# start only on Xorg
When : x11
# kill picom instances that are still running
KillOld : true Для получения дополнительных примеров см. contrib .
Name # Name of service
Command # Command to run
Args # Arguments for the command (["-c", "arg1", "arg2"])
Interval # Re-run command periodically in this interval (in seconds, 0=never)
KeepAlive # Restart the command if it exits (true/false)
RetryNumber # How often try to restart the command (if KeepAlive=true)
When # "wayland" / "x11" / "always" / "never"
Delay # Number of seconds to wait before starting
KillOld # Kill running "Command" processes