diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 3c1f9dc..5ad5910 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -34,7 +34,7 @@ font: x: 0 y: 0 normal: - family: "Mononoki Nerd Font" + family: "Mononoki Nerd Font Propo" offset: x: 1 y: 2 diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index c3e8cee..8fa52cf 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -111,7 +111,7 @@ ### Text ### - font = Mononoki Nerd Font 10 + font = Mononoki Nerd Font Propo 10 # The spacing between lines. If the height is smaller than the # font height, it will get raised to the font height. diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 0982d1f..ecb2e3f 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -49,6 +49,7 @@ zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}:ma=48;5;8;38;5;15" autoload -U colors && colors PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " + # ls aliases alias ls="lsd --color=auto" 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 " # function aliases -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 -t() { [ -z "$1" ] && taskell ~/.taskell.md || taskell "$1" } -vims() { vim "$(whereis $1 | rev | cut -d ' ' -f 1 | rev)" }; compdef _command vims -bc() { unbuffer "$@" | bat }; compdef _command bc +bl() { brightnessctl set "$1"% &> /dev/null; } +nosw() { alacritty --class 'noswallow' -e "$@"; }; compdef _command nosw +t() { taskell "${1:-${HOME}/.taskell.md}"; } +vims() { vim "$(whereis "$1" | rev | cut -d ' ' -f 1 | rev)"; }; compdef _command vims +bc() { unbuffer "$@" | bat; }; compdef _command bc # git aliases @@ -107,7 +107,11 @@ alias gcl="git clone" alias dc="docker compose" # tmux aliases -alias tn="tmux new-session -s" +tn() { + tmux new-session -s "${1-"$(basename "$(pwd)")"}" +} + + alias ta="tmux a -t" # disable xon controll chars diff --git a/.fonts/MononokiNerdFont-Bold.ttf b/.fonts/MononokiNerdFont-Bold.ttf deleted file mode 100644 index 29413a5..0000000 Binary files a/.fonts/MononokiNerdFont-Bold.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFont-BoldItalic.ttf b/.fonts/MononokiNerdFont-BoldItalic.ttf deleted file mode 100644 index e1e7dca..0000000 Binary files a/.fonts/MononokiNerdFont-BoldItalic.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFont-Italic.ttf b/.fonts/MononokiNerdFont-Italic.ttf deleted file mode 100644 index e26dbbf..0000000 Binary files a/.fonts/MononokiNerdFont-Italic.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFont-Regular.ttf b/.fonts/MononokiNerdFont-Regular.ttf deleted file mode 100644 index 15e2421..0000000 Binary files a/.fonts/MononokiNerdFont-Regular.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFontMono-Bold.ttf b/.fonts/MononokiNerdFontMono-Bold.ttf deleted file mode 100644 index ebd5610..0000000 Binary files a/.fonts/MononokiNerdFontMono-Bold.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFontMono-BoldItalic.ttf b/.fonts/MononokiNerdFontMono-BoldItalic.ttf deleted file mode 100644 index 340a75f..0000000 Binary files a/.fonts/MononokiNerdFontMono-BoldItalic.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFontMono-Italic.ttf b/.fonts/MononokiNerdFontMono-Italic.ttf deleted file mode 100644 index 7373c41..0000000 Binary files a/.fonts/MononokiNerdFontMono-Italic.ttf and /dev/null differ diff --git a/.fonts/MononokiNerdFontMono-Regular.ttf b/.fonts/MononokiNerdFontMono-Regular.ttf deleted file mode 100644 index 0a627cb..0000000 Binary files a/.fonts/MononokiNerdFontMono-Regular.ttf and /dev/null differ diff --git a/.local/bin/scripts/dmenu b/.local/bin/scripts/dmenu new file mode 100755 index 0000000..a7e193e --- /dev/null +++ b/.local/bin/scripts/dmenu @@ -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