From f954b746ce9ebecdf760f84f91ca1e2324c664f9 Mon Sep 17 00:00:00 2001 From: Pecha Date: Sun, 1 Mar 2020 16:25:51 +1000 Subject: [PATCH] added gentermcolour --- gentermcolour | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 gentermcolour diff --git a/gentermcolour b/gentermcolour new file mode 100755 index 0000000..de6beee --- /dev/null +++ b/gentermcolour @@ -0,0 +1,36 @@ +#!/bin/sh +# Generates terminator config file with wal's colours + +source $HOME/.cache/wal/colors.sh + +cat > $HOME/.config/terminator/config << CONF + +[global_config] +[keybindings] +[layouts] + [[default]] + [[[child1]]] + parent = window0 + profile = default + type = Terminal + [[[window0]]] + parent = "" + type = Window +[plugins] +[profiles] + [[default]] + background_color = "$background" + background_type = transparent + cursor_color = "$foreground" + font = Hack 7 + foreground_color = "$foreground" + icon_bell = False + palette = "$background:$color1:#color2:$color3:$color4:$color5:$color6:$foreground:$color7:$color2:#color2:$color7:$color4:$color5:$color6:$foreground" + scrollback_lines = 1000 + scrollbar_position = hidden + show_titlebar = False + use_system_font = False + + + +CONF \ No newline at end of file