From 5f984138adc0fd5913274b481996452420206204 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 13 Aug 2017 13:30:30 +0100 Subject: [PATCH] Add some more things to startup --- modules/i3/manifests/autostart.pp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/i3/manifests/autostart.pp 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" + + } + } +}