diff --git a/i3/config b/i3/config index ce751b7..ecf1876 100644 --- a/i3/config +++ b/i3/config @@ -190,3 +190,20 @@ for_window [class="^.*"] border pixel 1 gaps inner 10 gaps outer 5 + +# Theming + +set $yellow #717f24 +set $green #2f7e25 +set $brightGreen #18e000 +set $text #637d75 +set $red #7f2b27 +set $blank #000000 + +# class border backgr text indic. child_border +client.focused $blank $green $blank $green +client.focused_inactive $blank $yellow $blank $yellow +client.unfocused $blank $text $blank $text +client.urgent $blank $red $blank $red +client.placeholder $blank $blank $blank $blank +client.background $blank diff --git a/x/xinitrc b/x/xinitrc index 51c8c6d..7b66157 100644 --- a/x/xinitrc +++ b/x/xinitrc @@ -60,6 +60,9 @@ setxkbmap gb # Set custom keybindings xmodmap ~/.Xmodmap +# Set background +feh --bg-fill /home/thomas/wallpapers/plain-arch.png + # Start i3 window manager exec i3 diff --git a/zsh/zshrc b/zsh/zshrc index 80ba14b..56adc9a 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -56,3 +56,5 @@ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || pr # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh + +export LC_ALL=en_GB.UTF-8