Add some more things to startup

This commit is contained in:
Jake Howard 2017-08-13 13:30:30 +01:00
parent aced2a5b14
commit 5f984138ad
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -0,0 +1,19 @@
class i3::autostart {
$programs = [
"gnome-keyring-pkcs11",
"gnome-keyring-secrets",
"gnome-keyring-ssh",
"mousewheelzoom",
];
$programs.each |String $program| {
file { "autostart $program":
path => "/home/jake/.config/autostart/$program",
ensure => link,
mode => "0744",
owner => "jake",
source => "/etc/xdg/autostart/$program"
}
}
}