From 0aa568c823a9e6384b5930e55ee6789c6863eab2 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Fri, 5 Apr 2019 14:21:46 +0100 Subject: [PATCH] Use termite as the default terminal emulator. --- sway/.config/sway/config.base | 2 +- termite/.config/termite/config | 87 ++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 termite/.config/termite/config diff --git a/sway/.config/sway/config.base b/sway/.config/sway/config.base index 813c36e..fee46f4 100644 --- a/sway/.config/sway/config.base +++ b/sway/.config/sway/config.base @@ -97,7 +97,7 @@ mode "$ratpoison" { bindsym o exec 'swaymsg mode "default"; swaymsg split h' - bindsym c exec 'swaymsg mode "default"; swaymsg exec urxvt' + bindsym c exec 'swaymsg mode "default"; swaymsg exec termite' bindsym q exec 'swaymsg mode "default"; swaymsg kill' bindsym Shift+e exec 'swaymsg mode "default"; swaymsg exec dmenu_run' diff --git a/termite/.config/termite/config b/termite/.config/termite/config new file mode 100644 index 0000000..d96168b --- /dev/null +++ b/termite/.config/termite/config @@ -0,0 +1,87 @@ +[options] +#allow_bold = true +#audible_bell = false +#clickable_url = true +#dynamic_title = true +font = Monospace 11 +#fullscreen = true +#geometry = 640x480 +#icon_name = terminal +#mouse_autohide = false +#scroll_on_output = false +#scroll_on_keystroke = true +# Length of the scrollback buffer, 0 disabled the scrollback buffer +# and setting it to a negative value means "infinite scrollback" +scrollback_lines = 10000 +#search_wrap = true +#urgent_on_bell = true +#hyperlinks = false + +# $BROWSER is used by default if set, with xdg-open as a fallback +#browser = xdg-open + +# "system", "on" or "off" +#cursor_blink = system + +# "block", "underline" or "ibeam" +#cursor_shape = block + +# Hide links that are no longer valid in url select overlay mode +#filter_unmatched_urls = true + +# Emit escape sequences for extra modified keys +#modify_other_keys = false + +# set size hints for the window +#size_hints = false + +# "off", "left" or "right" +#scrollbar = off + +[colors] +# If both of these are unset, cursor falls back to the foreground color, +# and cursor_foreground falls back to the background color. +#cursor = #dcdccc +#cursor_foreground = #dcdccc + +#foreground = #dcdccc +#foreground_bold = #ffffff +#background = #3f3f3f + +# 20% background transparency (requires a compositor) +background = rgba(27, 28, 22, 0.8) + +# If unset, will reverse foreground and background +highlight = #2f2f2f + +foreground =#f8f8f3 +background = rgba(27, 28, 22, 0.8) +color0 =#000000 +color8 = #555555 +color1 = #f92672 +color9 = #dd4278 +color2 = #74e22e +color10 = #9dc54b +color3 = #e6db74 +color11 = #d1ca89 +color4 = #66d9ef +color12 = #7accda +color5 = #ae81ff +color13 = #b392ef +color6 = #00d9d9 +color14 = #c8f0f0 +color7 = #f5deb3 +color15 = #ffffff + +[hints] +#font = Monospace 12 +#foreground = #dcdccc +#background = #3f3f3f +#active_foreground = #e68080 +#active_background = #3f3f3f +#padding = 2 +#border = #3f3f3f +#border_width = 0.5 +#roundness = 2.0 + +# vim: ft=dosini cms=#%s -- 2.44.0