Added termite config
This commit is contained in:
parent
d497cf34a2
commit
262712ca12
@ -31,7 +31,7 @@ do
|
||||
git clone "$URL" "/tmp/i3config/" --depth=1
|
||||
|
||||
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying images...' '\e[m'
|
||||
install -d -m755 "$HOME/.config/i3/images/"
|
||||
install -d -m755 "$HOME/.config/i3/images"
|
||||
for i in background.png imagelock.png; do
|
||||
install -m644 -v /tmp/i3config/images/$i "$HOME/.config/i3/images/$i"
|
||||
done
|
||||
@ -50,6 +50,10 @@ do
|
||||
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying FontAwesome...' '\e[m'
|
||||
install -m644 -v /tmp/i3config/tmp/fontawesome.ttf "$HOME/.local/share/fonts/"
|
||||
|
||||
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying termite-config...' '\e[m'
|
||||
install -d -m755 "$HOME/.config/termite"
|
||||
install -m644 -v /tmp/i3config/tmp/termite "$HOME/.config/termite/config"
|
||||
|
||||
# clean up temp files
|
||||
rm -rf /tmp/i3config/
|
||||
}
|
||||
|
79
tmp/termite
Normal file
79
tmp/termite
Normal file
@ -0,0 +1,79 @@
|
||||
[options]
|
||||
scroll_on_output = false
|
||||
scroll_on_keystroke = true
|
||||
audible_bell = false
|
||||
mouse_autohide = false
|
||||
allow_bold = true
|
||||
dynamic_title = true
|
||||
urgent_on_bell = true
|
||||
clickable_url = true
|
||||
font = Monospace 9
|
||||
scrollback_lines = 10000
|
||||
search_wrap = true
|
||||
#icon_name = terminal
|
||||
#geometry = 640x480
|
||||
|
||||
# "system", "on" or "off"
|
||||
cursor_blink = system
|
||||
|
||||
# "block", "underline" or "ibeam"
|
||||
cursor_shape = block
|
||||
|
||||
# $BROWSER is used by default if set, with xdg-open as a fallback
|
||||
#browser = xdg-open
|
||||
|
||||
# set size hints for the window
|
||||
#size_hints = false
|
||||
|
||||
# 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
|
||||
|
||||
[colors]
|
||||
foreground = #FFFFFF
|
||||
foreground_bold = #FFFFFF
|
||||
cursor = #EEFFFF
|
||||
cursor_foreground = #263238
|
||||
background = rgba(38, 50, 56)
|
||||
|
||||
# 16 color space
|
||||
|
||||
# Black, Gray, Silver, White
|
||||
color0 = #000000
|
||||
color8 = #546E7A
|
||||
color7 = #FFFFFF
|
||||
color15 = #FFFFFF
|
||||
|
||||
# Red
|
||||
color1 = #F07178
|
||||
color9 = #F07178
|
||||
|
||||
# Green
|
||||
color2 = #5FD700
|
||||
color10 = #5FD700
|
||||
|
||||
# Yellow
|
||||
color3 = #FEBA02
|
||||
color11 = #FEBA02
|
||||
|
||||
# Indigo
|
||||
color4 = #09347A
|
||||
color12 = #09347A
|
||||
|
||||
# Purple
|
||||
color5 = #C792EA
|
||||
color13 = #C792EA
|
||||
|
||||
# Teal
|
||||
color6 = #89DDFF
|
||||
color14 = #89DDFF
|
||||
|
||||
# Extra colors
|
||||
color16 = #F78C6C
|
||||
color17 = #FF5370
|
||||
color18 = #2E3C43
|
||||
color19 = #314549
|
||||
color20 = #B2CCD6
|
||||
color21 = #EEFFFF
|
Loading…
x
Reference in New Issue
Block a user