From b62472fe5c1b2d410c585a3648412829603c161c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 8 Oct 2016 19:22:15 -0700 Subject: [PATCH] [Linux] Fix compton service For some reason running compton in forking mode does not work. --- dotfiles/config/systemd/user/compton.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/config/systemd/user/compton.service b/dotfiles/config/systemd/user/compton.service index 5e9f214e..55be46b1 100644 --- a/dotfiles/config/systemd/user/compton.service +++ b/dotfiles/config/systemd/user/compton.service @@ -2,8 +2,8 @@ Description=compton [Service] -Type=forking -ExecStart=/usr/bin/compton -cC -f -b +Type=simple +ExecStart=/usr/bin/compton -cC ExecStop=/usr/bin/pkill compton [Install]