diff options
author | johannst <stoelp@eit.uni-kl.de> | 2018-03-05 21:53:20 +0100 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2018-03-05 21:53:20 +0100 |
commit | fa2d74b51be70eb5d7dc24b909e0d7370d316457 (patch) | |
tree | 92c71f504e0f9589a0ff82bddd9bcba880462712 | |
parent | bc9a72c21ab78c440be126e424ffd7367467c1e8 (diff) | |
download | dotfiles-fa2d74b51be70eb5d7dc24b909e0d7370d316457.tar.gz dotfiles-fa2d74b51be70eb5d7dc24b909e0d7370d316457.zip |
Added termite config files + install handler
-rwxr-xr-x | install | 19 | ||||
-rw-r--r-- | install.config | 1 | ||||
-rw-r--r-- | termite | 11 |
3 files changed, 31 insertions, 0 deletions
@@ -17,6 +17,7 @@ gToolsConfig=( "i3config:i3:i3ConfigInstaller" "i3status:i3status:i3statusConfigInstaller" "i3blocks:i3blocks:i3blocksConfigInstaller" +"termite:termite:termiteConfigInstaller" ) gMagicNumber=e2718281 @@ -198,6 +199,24 @@ function i3blocksConfigInstaller() { } #}}} +#{{{ termiteConfigInstaller + +function termiteConfigInstaller() { + local tm_dir=~/.config/termite + local tm_conf=$tm_dir/config + [[ ! -d $tm_dir ]] && mkdir -p $tm_dir + touch $tm_conf + grep $gMagicNumber $tm_conf > /dev/null 2>&1 + if [[ $? = 0 ]]; then + return 1 + fi + echo -e "\n# $gMagicNumber - Auto generated, do not delete or modify!" >> $tm_conf + echo -e "$(cat termite)" >> $tm_conf + + return 0 +} + +#}}} #{{{ Installer Main Loop diff --git a/install.config b/install.config index 42b8c9c..c337212 100644 --- a/install.config +++ b/install.config @@ -14,3 +14,4 @@ n - Xresources n - i3config n - i3status n - i3blocks +n - termite @@ -0,0 +1,11 @@ +# dotfiles -- termite +# author: johannst + +[options] +font = xos4 Terminus 12 +#font = xos4 Terminus 12px + +[colors] +foreground = #ffffff +background = #000000 +#background = rgba(63, 63, 63, 0.8) |