From 8644894f358758707b4479106fa2bde88723ee40 Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Thu, 1 Feb 2018 22:54:18 -0500 Subject: [PATCH] Changed Terminator file to be hard link Terminator file now actually contains the config lines rather than just the path to the config. --- X1-Carbon-terminator | 44 +++++++++++++++++++++++++++++++++++++++++- aliases/.my_pc_aliases | 1 + set-from-git.sh | 2 +- 3 files changed, 45 insertions(+), 2 deletions(-) mode change 120000 => 100644 X1-Carbon-terminator diff --git a/X1-Carbon-terminator b/X1-Carbon-terminator deleted file mode 120000 index 86c78ed..0000000 --- a/X1-Carbon-terminator +++ /dev/null @@ -1 +0,0 @@ -/home/kevin/.config/terminator/config \ No newline at end of file diff --git a/X1-Carbon-terminator b/X1-Carbon-terminator new file mode 100644 index 0000000..2efb60e --- /dev/null +++ b/X1-Carbon-terminator @@ -0,0 +1,43 @@ +[global_config] + inactive_color_offset = 1.0 + title_font = Noto Sans 10 + title_transmit_bg_color = "#3d3d3d" +[keybindings] + close_term = w + cycle_next = Tab + edit_window_title = r + go_down = j + go_left = h + go_right = l + go_up = k + new_tab = t + new_window = n + next_tab = End + prev_tab = Home + resize_down = j + resize_left = h + resize_right = l + resize_up = k + split_horiz = i + split_vert = o +[layouts] + [[default]] + [[[child1]]] + parent = window0 + type = Terminal + [[[window0]]] + parent = "" + type = Window +[plugins] +[profiles] + [[default]] + background_image = None + copy_on_selection = True + cursor_color = "#b9b9b9" + custom_command = env TERM=xterm-256color bash + font = Monospace 11 + foreground_color = "#0077ff" + palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff" + scrollbar_position = hidden + use_custom_command = True + use_system_font = False diff --git a/aliases/.my_pc_aliases b/aliases/.my_pc_aliases index 04415f3..c0aebcd 100644 --- a/aliases/.my_pc_aliases +++ b/aliases/.my_pc_aliases @@ -2,5 +2,6 @@ if [ "$(whoami)" == "kevin" ]; then alias vbn="cvlc --loop ~/Downloads/brown-noise.mp3" alias mt="ok ~/Documents/School/136/calc-textbook.pdf" + alias clc="gcalccmd" alias 36t="ok ~/Documents/School/236/236-textbook.pdf" fi diff --git a/set-from-git.sh b/set-from-git.sh index 83b71f2..fea35bd 100755 --- a/set-from-git.sh +++ b/set-from-git.sh @@ -12,4 +12,4 @@ done term_dir=~/.config/terminator pc=$(hostname) rm "$dot_dir"/"$pc"-terminator -ln -s "$term_dir"/config $dot_dir/"$pc"-terminator +ln "$term_dir"/config $dot_dir/"$pc"-terminator