Autostart compton

This commit is contained in:
Jake Howard 2017-10-19 13:30:41 +01:00
parent aeb31a4904
commit afe0656eca
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 12 additions and 10 deletions

View file

@ -6,6 +6,8 @@ puppet apply manifests/main.pp --modulepath=modules/ --verbose
patch /usr/bin/makepkg -N < makepkg.patch
puppet apply manifests/packages.pp --modulepath=modules/ --verbose
puppet apply manifests/packages.pp --verbose
patch /usr/bin/makepkg -NR < makepkg.patch
puppet apply manifests/post-packages.pp --verbose

View file

@ -0,0 +1,9 @@
node default {
file {"autostart compton":
ensure => link,
path => '/home/jake/.config/autostart/compton.desktop',
mode => '0644',
owner => 'jake',
source => '/usr/share/applications/compton.desktop'
}
}

View file

@ -26,13 +26,4 @@ class i3::autostart {
source => "/etc/xdg/autostart/$program.desktop"
}
}
file {"autostart compton":
ensure => link,
path => '/home/jake/.config/autostart/compton.desktop',
mode => '0644',
owner => 'jake',
source => '/usr/share/applications/compton.desktop'
}
}