dotfiles/modules/i3/manifests/init.pp

31 lines
681 B
ObjectPascal
Raw Normal View History

2017-08-13 12:19:01 +01:00
class i3 {
2017-08-13 14:00:26 +01:00
include 'i3::autostart'
2017-08-13 12:19:01 +01:00
file { "i3 config":
path => '/home/jake/.config/i3/config',
ensure => file,
mode => "0644",
2017-08-14 09:18:59 +01:00
owner => "jake",
group => "users",
2017-08-13 12:19:01 +01:00
source => 'puppet:///modules/i3/i3.conf'
}
2017-08-13 16:06:49 +01:00
2017-08-14 08:32:49 +01:00
file { "i3status-rust config":
2017-08-13 20:15:14 +01:00
path => '/home/jake/.config/i3/status.toml',
ensure => file,
mode => "0644",
2017-08-14 09:18:59 +01:00
owner => "jake",
group => "users",
2017-08-14 08:32:49 +01:00
source => 'puppet:///modules/i3/i3status-rust.toml'
}
file { "i3status config":
path => '/home/jake/.config/i3status/config',
ensure => file,
mode => "0644",
2017-08-14 09:18:59 +01:00
owner => "jake",
group => "users",
2017-08-14 08:32:49 +01:00
source => 'puppet:///modules/i3/i3status.conf'
2017-08-13 20:15:14 +01:00
}
2017-08-13 12:19:01 +01:00
}