Autostart compton
This commit is contained in:
parent
aeb31a4904
commit
afe0656eca
3 changed files with 12 additions and 10 deletions
|
@ -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
|
||||
|
|
9
manifests/post-packages.pp
Normal file
9
manifests/post-packages.pp
Normal 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'
|
||||
}
|
||||
}
|
|
@ -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'
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue