Fix waybar startup latency problem

This commit is contained in:
Andrea Ciceri 2024-09-25 14:18:52 +02:00
parent 27fdc7a92e
commit d97229fa11
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
3 changed files with 13 additions and 9 deletions

View file

@ -8,7 +8,6 @@
systemd.user.services.zmkBATx = {
Install.WantedBy = [
"graphical-session.target"
"waybar.service"
];
@ -17,7 +16,7 @@
};
Service = {
ExecStart = lib.getExe pkgs.zmkBATx;
ExecStart = "sleep 5 && ${lib.getExe pkgs.zmkBATx}";
Restart = "on-failure";
RestartSec = 3;
};