Custoized Termite, Powerlevel9k and their color scheme
parent
7700c73a1b
commit
29d69699f8
|
@ -7,7 +7,7 @@ font = Monospace 9
|
||||||
#fullscreen = true
|
#fullscreen = true
|
||||||
#geometry = 640x480
|
#geometry = 640x480
|
||||||
#icon_name = terminal
|
#icon_name = terminal
|
||||||
#mouse_autohide = false
|
mouse_autohide = true
|
||||||
#scroll_on_output = false
|
#scroll_on_output = false
|
||||||
#scroll_on_keystroke = true
|
#scroll_on_keystroke = true
|
||||||
# Length of the scrollback buffer, 0 disabled the scrollback buffer
|
# Length of the scrollback buffer, 0 disabled the scrollback buffer
|
||||||
|
@ -15,7 +15,7 @@ font = Monospace 9
|
||||||
scrollback_lines = 10000
|
scrollback_lines = 10000
|
||||||
#search_wrap = true
|
#search_wrap = true
|
||||||
#urgent_on_bell = true
|
#urgent_on_bell = true
|
||||||
#hyperlinks = false
|
hyperlinks = true
|
||||||
|
|
||||||
# $BROWSER is used by default if set, with xdg-open as a fallback
|
# $BROWSER is used by default if set, with xdg-open as a fallback
|
||||||
#browser = xdg-open
|
#browser = xdg-open
|
||||||
|
@ -55,11 +55,11 @@ background = rgba(63, 63, 63, 0.75)
|
||||||
highlight = #2f2f2f
|
highlight = #2f2f2f
|
||||||
|
|
||||||
# Colors from color0 to color254 can be set
|
# Colors from color0 to color254 can be set
|
||||||
color0 = #3f3f3f
|
color0 = #303462
|
||||||
color1 = #705050
|
color1 = #705050
|
||||||
color2 = #60b48a
|
color2 = #60b48a
|
||||||
color3 = #dfaf8f
|
color3 = #dfaf8f
|
||||||
color4 = #506070
|
color4 = #5294E2
|
||||||
color5 = #dc8cc3
|
color5 = #dc8cc3
|
||||||
color6 = #8cd0d3
|
color6 = #8cd0d3
|
||||||
color7 = #dcdccc
|
color7 = #dcdccc
|
||||||
|
@ -70,7 +70,7 @@ color11 = #f0dfaf
|
||||||
color12 = #94bff3
|
color12 = #94bff3
|
||||||
color13 = #ec93d3
|
color13 = #ec93d3
|
||||||
color14 = #93e0e3
|
color14 = #93e0e3
|
||||||
color15 = #ffffff
|
color15 = #123456
|
||||||
|
|
||||||
[hints]
|
[hints]
|
||||||
#font = Monospace 12
|
#font = Monospace 12
|
||||||
|
|
30
.zshrc
30
.zshrc
|
@ -25,19 +25,37 @@ plugins=(
|
||||||
git
|
git
|
||||||
)
|
)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
|
||||||
|
|
||||||
# User configuration
|
# User configuration
|
||||||
|
|
||||||
POWERLEVEL9K_MODE='awesome-patched'
|
#POWERLEVEL
|
||||||
|
|
||||||
|
POWERLEVEL9K_MODE='awesome-fontconfig'
|
||||||
|
|
||||||
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon dir vcs)
|
||||||
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status time)
|
||||||
|
|
||||||
|
POWERLEVEL9K_STATUS_OK_BACKGROUND="blue"
|
||||||
|
POWERLEVEL9K_STATUS_OK_FOREGROUND="orange"
|
||||||
|
POWERLEVEL9K_STATUS_ERROR_BACKGROUND="blue"
|
||||||
|
POWERLEVEL9K_STATUS_ERROR_FOREGROUND="red"
|
||||||
|
|
||||||
|
#POWERLEVEL9K_BATTERY_BACKGROUND="color6"
|
||||||
|
#POWERLEVEL9K_BATTERY_DISCONNECTED="color6"
|
||||||
|
#POWERLEVEL9K_BATTERY_STAGES="▁▂▃▄▅▆▇█"
|
||||||
|
|
||||||
|
POWERLEVEL9K_TIME_BACKGROUND="black"
|
||||||
|
POWERLEVEL9K_TIME_FOREGROUND="color7"
|
||||||
|
POWERLEVEL9K_TIME_FORMAT="%D{%H:%M:%S} "
|
||||||
|
|
||||||
|
# PATHS
|
||||||
export TERM="xterm-256color" # in case you are using urxvt, to bypass an error during sshing
|
export TERM="xterm-256color" # in case you are using urxvt, to bypass an error during sshing
|
||||||
PATH=$PATH:~/.local/bin
|
PATH=$PATH:~/.local/bin
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# User alias
|
# User alias
|
||||||
alias df="df -h"
|
alias df="df -h"
|
||||||
alias mkvirtenv="python -m virtualenv --system-site-packages"
|
alias mkvirtenv="python -m virtualenv --system-site-packages"
|
||||||
alias emacs="emacs -nw"
|
alias emacs="emacs -nw"
|
||||||
alias rm="rm -i"
|
alias rm="rm -i"
|
||||||
|
|
||||||
|
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
Loading…
Reference in New Issue