gutu
v0.1.0
تدير gutu تطبيقات بدء التشغيل على سطح المكتب. لا سيما على مديري النوافذ المستقلة ، يمكن استخدامه لتوحيد الطريقة التي تتعامل بها مع العمليات التي تحتاجها إلى تشغيلها (على سبيل المثال ، Daemon Daemon ، معالج KeyBind إلخ)
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 التلقائي في بدء تشغيل Window Manager / Desktop Environment: قم بتنفيذ 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