From 942ba6b90e8885260c188b6625c16a9036c30183 Mon Sep 17 00:00:00 2001 From: Wiktor Zykubek Date: Sat, 19 Oct 2019 10:32:00 +0200 Subject: [PATCH] Add .Xresources --- .Xresources | 38 ++++++++++++++++++++++++++++++++++++++ .zshrc | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 .Xresources diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..1265f53 --- /dev/null +++ b/.Xresources @@ -0,0 +1,38 @@ +! special +*.foreground: #dfdfdf +*.background: #0a0200 + +! black +*.color0: #000000 +*.color8: #000000 + +! red +*.color1: #cf5252 +*.color9: #cf5252 + +! green +*.color2: #92ad4a +*.color10: #92ad4a + +! yellow +*.color3: #c9895b +*.color11: #c9895b + +! blue +*.color4: #6f97b8 +*.color12: #6f97b8 + +! magenta +*.color5: #ab6ba6 +*.color13: #ab6ba6 + +! cyan +*.color6: #6fa69f +*.color14: #6fa69f + +! white +*.color7: #cccccc +*.color15: #cccccc + +st.font: DejaVu Sans Mono:pixelsize=15:antialias=true:autohint=true:hintstyle=hintmedium + diff --git a/.zshrc b/.zshrc index ac7ce5c..6a31d9b 100644 --- a/.zshrc +++ b/.zshrc @@ -12,7 +12,7 @@ export ZSH="$HOME/.oh-my-zsh" #~~~~~~~ # Theme #~~~~~~~ -PROMPT='%B%F{blue}%n%F{blue}@%F{blue}%m%f%b in %B%F{green}%~%f%b$(git_prompt_info) +PROMPT='%B%F{blue}%n%F{blue}@%F{blue}%m%f%b in %B%F{green}%~%f%b$ (git_prompt_info) %(?:$ :%F{red}$ )%f' ZSH_THEME_GIT_PROMPT_PREFIX=' on %B%F{magenta}'