Add some more things to startup
This commit is contained in:
parent
aced2a5b14
commit
5f984138ad
1 changed files with 19 additions and 0 deletions
19
modules/i3/manifests/autostart.pp
Normal file
19
modules/i3/manifests/autostart.pp
Normal 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"
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue