i'm setting up arch linux and trying to get a workable interface to mess around with my configuration files and the like. i got bspwm working with bar and sxhkd works fine to open termite or firefox/vimperator for starters. i set up ~/.config/termite/config for both root and my user the best i could based on the information available on the 'net. the fg/bg colors seem to have changed, but all my other colors are just default like in the login shell, when all my colorn = #digits options are obviously all blue-hued.
~/.config/termite/config:
Code:
[options]
resize_grip = false
scroll_on_output = true
scroll_on_keystroke = true
audible_bell = true
visible_bell = false
mouse_autohide = true
dynamic_title = true
urgent_on_bell = true
clickable_url = true
scrollback_lines = 1024
icon_name = terminal
transparency = 1.7
pseudo_transparency = false
cursor_blink = system
cursor_shape = block
padding = 2
border_width = 0.5
roundness = 2.0
browser = firefox
font = Terminus 12
foreground = #9999ff
background = rgba(33, 33, 66, 0.6)
hilight = #333366
color0 = #333366
color8 = #333399
color1 = #6666cc
color9 = #9999ff
color2 = #0099cc
color10 = #00ccff
color3 = #3366cc
color11 = #6699ff
color4 = #006699
color12 = #0099cc
color5 = #0066ff
color13 = #0099ff
color6 = #669999
color14 = #66cccc
color7 = #99cccc
color15 = #ccffff
i'm still having trouble getting around and figuring out to ex. copy from vim to vimperator and stuff so i'll add any of my dotfiles if anyone thinks they'll help.
edit: i also made zsh my default shell on all of my accounts. this is the global zshrc in /etc/zsh/zshrc:
Code:
autoload -U run-help
autoload run-help-git
autoload run-help-svn
autoload run-help-svk
unalias run-help
alias help=run-help
setopt HIST_IGNORE_DUPS
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export EDITOR="vim"
export SXHKD_SHELL=$(which sh)
eval $(dircolors ~/.dircolors)
alias ls="ls -a --color"
autoload -U colors && colors
PROMPT="{$fg_no_bold[green]%}%# %{$reset_color%}"
RPROMPT="%{$fg_no_bold[blue]%}%~%{$reset_color%}"