diff --git a/awesome/rc.lua b/awesome/rc.lua index 2584fe2..64da655 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -48,7 +48,7 @@ end beautiful.init(confFolder .. "/theme.lua") -- This is used later as the default terminal and editor to run. -terminal = "urxvtc" +terminal = "termite" editor = os.getenv("EDITOR") or "nano" editor_cmd = terminal .. " -e " .. editor diff --git a/misc/dot.json b/misc/dot.json index 757c3d3..33a1b7c 100644 --- a/misc/dot.json +++ b/misc/dot.json @@ -3,6 +3,10 @@ { "source": "mplayerrc", "target": "~/.mplayer/config" + }, + { + "soure": "termiterc", + "target": "~/.config/termite/config" } ] } \ No newline at end of file diff --git a/misc/termiterc b/misc/termiterc new file mode 100644 index 0000000..2d295fd --- /dev/null +++ b/misc/termiterc @@ -0,0 +1,72 @@ +[options] +resize_grip = false +scroll_on_output = false +scroll_on_keystroke = true +audible_bell = false +visible_bell = false +mouse_autohide = false +allow_bold = true +dynamic_title = true +urgent_on_bell = true +clickable_url = true +font = Envy Code R 6.5 +scrollback_lines = 1000 +search_wrap = true +#icon_name = terminal +#geometry = 640x480 + +# 0.0: opaque, 1.0: transparent +transparency = 0.05 +pseudo_transparency = false + +# "system", "on" or "off" +cursor_blink = system + +# "block", "underline" or "ibeam" +cursor_shape = block + +# $BROWSER is used by default +#browser = firefox + +# word characters used for word selection +# (default if unset: all graphic non-punctuation/space characters) +#word_chars = -A-Za-z0-9,./?%&#:_=+@~ + +[colors] +foreground = #bbbbbb +foreground_bold = #ffffff +#foreground_dim = #888888 +background = #202020 +#cursor = #dcdccc + +# if unset, will reverse foreground and background +highlight = #2f2f2f + +# colors from color0 to color254 can be set +color0 = #3f3f3f +color1 = #705050 +color2 = #60b48a +color3 = #dfaf8f +color4 = #506070 +color5 = #dc8cc3 +color6 = #8cd0d3 +color7 = #dcdccc +color8 = #709080 +color9 = #dca3a3 +color10 = #c3bf9f +color11 = #f0dfaf +color12 = #94bff3 +color13 = #ec93d3 +color14 = #93e0e3 +color15 = #ffffff + +[hints] +#font = Monospace 12 +#foreground = #dcdccc +#background = #3f3f3f +#padding = 2 +#border = #3f3f3f +#border_width = 0.5 +#roundness = 2.0 + +# vim: ft=dosini