Adjust colors and titlebars in Sway, and fix .zshrc .zsh file loading.

This commit is contained in:
the_4n0nym0u53 2021-12-24 00:47:53 +01:00
parent c4d066a7d3
commit 8b4c1dbb42
No known key found for this signature in database
GPG Key ID: 35EE09F5481049BB
2 changed files with 10 additions and 7 deletions

View File

@ -8,22 +8,25 @@
default_border pixel 2 default_border pixel 2
hide_edge_borders smart hide_edge_borders smart
# Titlebars
title_align center
# Gaps # Gaps
gaps inner 8 gaps inner 8
gaps outer 4 gaps outer 4
# Font # Font
font pango:Ubuntu Condensed 10 font pango:Fira Sans Condensed SemiBold 10
### COLORS ### ### COLORS ###
# border, bground and text only apply to window titlebars # border, bground and text only apply to window titlebars
# class border bground text indicator child_border # class border bground text indicator child_border
client.focused #268bd2 #000000 #eee8d5 #839496 #268bd2 client.focused #268bd2 #268bd2 #eee8d5 #839496 #268bd2
client.focused_inactive #073642 #000000 #eee8d5 #002b36 #073642 client.focused_inactive #002b36 #002b36 #eee8d5 #002b36 #002b36
client.unfocused #073642 #000000 #eee8d5 #002b36 #073642 client.unfocused #002b36 #002b36 #eee8d5 #002b36 #002b36
client.urgent #dc322f #000000 #eee8d5 #cb4b16 #dc322f client.urgent #dc322f #dc322f #eee8d5 #cb4b16 #dc322f
client.placeholder #073642 #000000 #eee8d5 #002b36 #073642 client.placeholder #002b36 #002b36 #eee8d5 #002b36 #002b36
client.background #fdf6e3 client.background #fdf6e3

View File

@ -8,7 +8,7 @@ ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern regexp root line)
# Load the .zsh files # Load the .zsh files
for file in $ZDOTDIR/.*.zsh; do for file in $ZDOTDIR/.*.zsh; do
[[ -L $file ]] && source $file [[ $file == $ZDOTDIR/.p10k.zsh ]] || source $file
done done
# Initialize PZ # Initialize PZ