change font to "Propo" variant

This commit is contained in:
Arthur Khachaturov 2024-08-18 13:13:00 +03:00
parent 775a43810c
commit 59daa951f9
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
12 changed files with 15 additions and 9 deletions

View file

@ -34,7 +34,7 @@ font:
x: 0 x: 0
y: 0 y: 0
normal: normal:
family: "Mononoki Nerd Font" family: "Mononoki Nerd Font Propo"
offset: offset:
x: 1 x: 1
y: 2 y: 2

View file

@ -111,7 +111,7 @@
### Text ### ### Text ###
font = Mononoki Nerd Font 10 font = Mononoki Nerd Font Propo 10
# The spacing between lines. If the height is smaller than the # The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height. # font height, it will get raised to the font height.

View file

@ -49,6 +49,7 @@ zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}:ma=48;5;8;38;5;15"
autoload -U colors && colors autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# ls aliases # ls aliases
alias ls="lsd --color=auto" alias ls="lsd --color=auto"
alias l="ls -lh" alias l="ls -lh"
@ -82,12 +83,11 @@ alias 7z="7zz" # for whatever reason 7z provides 7zz binary in debian
alias wt="watch -d -cn 0.1 " alias wt="watch -d -cn 0.1 "
# function aliases # function aliases
bl () { brightnessctl set $1% &> /dev/null } bl() { brightnessctl set "$1"% &> /dev/null; }
clines() { find $@ \( -name '*.cpp' -o -name '*.[ch]' \) -a ! -path '*cmake-build*' | xargs wc -l } nosw() { alacritty --class 'noswallow' -e "$@"; }; compdef _command nosw
nosw() { alacritty --class 'noswallow' -e "$@" }; compdef _command nosw t() { taskell "${1:-${HOME}/.taskell.md}"; }
t() { [ -z "$1" ] && taskell ~/.taskell.md || taskell "$1" } vims() { vim "$(whereis "$1" | rev | cut -d ' ' -f 1 | rev)"; }; compdef _command vims
vims() { vim "$(whereis $1 | rev | cut -d ' ' -f 1 | rev)" }; compdef _command vims bc() { unbuffer "$@" | bat; }; compdef _command bc
bc() { unbuffer "$@" | bat }; compdef _command bc
# git aliases # git aliases
@ -107,7 +107,11 @@ alias gcl="git clone"
alias dc="docker compose" alias dc="docker compose"
# tmux aliases # tmux aliases
alias tn="tmux new-session -s" tn() {
tmux new-session -s "${1-"$(basename "$(pwd)")"}"
}
alias ta="tmux a -t" alias ta="tmux a -t"
# disable xon controll chars # disable xon controll chars

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

2
.local/bin/scripts/dmenu Executable file
View file

@ -0,0 +1,2 @@
exec /usr/bin/dmenu -fn 'Mononoki Nerd Font Propo:size=12' -nb '#3a3a3a' -nf '#bbbbbb' -sb '#db8402' -sf '#eeeeee' "$@"
# vim: ft=sh