Add tilix config in a dumb way
This commit is contained in:
parent
66e5850554
commit
165549600c
2 changed files with 29 additions and 0 deletions
19
modules/config/files/tilix.conf
Normal file
19
modules/config/files/tilix.conf
Normal 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
|
|
@ -96,4 +96,14 @@ class config {
|
||||||
path => '/home/jake/.config/Caret/Preferences.md',
|
path => '/home/jake/.config/Caret/Preferences.md',
|
||||||
source => 'puppet:///modules/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'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue