Add tilix config in a dumb way

This commit is contained in:
Jake Howard 2018-05-17 09:28:23 +01:00
parent 66e5850554
commit 165549600c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,19 @@
[/]
new-window-inherit-state=true
tab-position='top'
terminal-title-style='none'
theme-variant='dark'
session-name='Default'
control-scroll-zoom=true
window-style='normal'
[profiles/2b7c4080-0ddd-46c5-8f23-563fd3ba789d]
visible-name='Default'
badge-color-set=false
cursor-colors-set=false
highlight-colors-set=false
use-theme-colors=false
bold-color-set=false
background-color='#000000'
background-transparency-percent=40
dim-transparency-percent=0

View File

@ -96,4 +96,14 @@ class config {
path => '/home/jake/.config/Caret/Preferences.md',
source => 'puppet:///modules/config/caret-preferences.md'
}
file { 'Tilix file temporary location':
ensure => file,
path => '/tmp/tilix.conf',
source => 'puppet:///modules/config/tilix.conf'
}
-> exec { 'Load Tilix config':
command => 'dconf load /etc/gexperts/Tilix/ < /tmp/tilix.conf',
user => 'jake'
}
}