diff --git a/modules/i3/manifests/autostart.pp b/modules/i3/manifests/autostart.pp new file mode 100644 index 0000000..ed424a1 --- /dev/null +++ b/modules/i3/manifests/autostart.pp @@ -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" + + } + } +}