1
1
Fork 0

nautilus: always restart service

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-11-04 12:06:34 -06:00
parent 4140a1bb6c
commit 5dc23f50bf
Signed by: myned
GPG key ID: C7224454F7881A34

View file

@ -46,11 +46,13 @@ in {
BusName = "org.gnome.Nautilus"; BusName = "org.gnome.Nautilus";
ExecStart = "${nautilus} --gapplication-service"; ExecStart = "${nautilus} --gapplication-service";
ExecStop = "${nautilus} --quit"; ExecStop = "${nautilus} --quit";
Restart = "no"; Restart = "always"; #!! Benign exceptions cause nautilus to exit
Type = "dbus"; Type = "dbus";
}; };
}; };
# TODO: Check for official service
# BUG: Benign AttributeError when scanning on nautilus launch
# Git integration dependency # Git integration dependency
turtle = { turtle = {
Unit.Description = "Turtle Background Service"; Unit.Description = "Turtle Background Service";
@ -59,7 +61,7 @@ in {
Service = { Service = {
BusName = "de.philippun1.turtle"; BusName = "de.philippun1.turtle";
ExecStart = turtle_service; ExecStart = turtle_service;
Restart = "no"; Restart = "always";
Type = "dbus"; Type = "dbus";
}; };
}; };