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",
|
|
|
|
source => 'puppet:///modules/i3/i3.conf'
|
|
|
|
}
|
2017-08-13 16:06:49 +01:00
|
|
|
|
2017-08-13 20:15:14 +01:00
|
|
|
file { "i3status config":
|
|
|
|
path => '/home/jake/.config/i3/status.toml',
|
|
|
|
ensure => file,
|
|
|
|
mode => "0644",
|
|
|
|
source => 'puppet:///modules/i3/i3status.toml'
|
|
|
|
}
|
2017-08-13 12:19:01 +01:00
|
|
|
}
|