Advertisement
PentaTrax

picom.service

Jul 5th, 2022
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.46 KB | None | 0 0
  1. [Unit]
  2. Description=Picom compositor fork
  3. Documentation=man:picom(1)
  4. PartOf=graphical-session.target
  5. # Don't try to restart after 60 seconds
  6. StartLimitIntervalSec=60
  7.  
  8. [Service]
  9. ExecStart=/usr/bin/picom --experimental-backends
  10. ExecReload=/usr/bin/killall picom
  11. # Try to restart no matter how the process ended
  12. Restart=always
  13. # Restart in 5 second intervals
  14. RestartSec=5
  15. # Try to restart up to 3 times
  16. StartLimitBurst=3
  17.  
  18. [Install]
  19. WantedBy=default.target
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement