Move i3 to separate module

This commit is contained in:
Jake Howard 2017-08-13 12:19:01 +01:00
parent 0a4923e238
commit b0b92c1056
Signed by: jake
GPG Key ID: 57AFB45680EDD477
4 changed files with 9 additions and 6 deletions

View File

@ -10,4 +10,5 @@ node default {
include gnome
include config
include shell
include i3
}

View File

@ -20,10 +20,4 @@ class config {
mode => "0644",
source => 'puppet:///modules/config/uniemoji.json'
}
file { '/home/jake/.config/i3/config':
ensure => file,
mode => "0644",
source => 'puppet:///modules/config/i3.conf'
}
}

View File

@ -0,0 +1,8 @@
class i3 {
file { "i3 config":
path => '/home/jake/.config/i3/config',
ensure => file,
mode => "0644",
source => 'puppet:///modules/i3/i3.conf'
}
}