From 9823d3772c2898da9f6e49fac0406392b29ed346 Mon Sep 17 00:00:00 2001 From: oasido Date: Tue, 11 Jun 2024 00:53:17 +0300 Subject: [PATCH] update through script - 2024-06-11 00:53:17 --- .bashrc | 12 +++--- .config/alacritty/alacritty.toml | 64 ++++++++++++++++++-------------- 2 files changed, 41 insertions(+), 35 deletions(-) diff --git a/.bashrc b/.bashrc index 75baddb..267e5d9 100644 --- a/.bashrc +++ b/.bashrc @@ -30,10 +30,8 @@ alias topcpu="/bin/ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10" alias f="find . | grep " alias countfiles="for t in files links directories; do echo \`find . -type \${t:0:1} | wc -l\` \$t; done 2> /dev/null" alias openports='netstat -nape --inet' # show open ports -alias v="nvim" alias vi="nvim" alias vim="nvim" -alias neovim="nvim" alias c="clear" alias pn="pnpm" alias rm="trash" @@ -58,13 +56,13 @@ alias sb="cd $SECOND_BRAIN" alias scripts="cd $SCRIPTS" alias startup="cd $STARTUP" alias dot="cd $DOTFILES" -alias dotc="cd $DOTFILES/.config && v" +alias dotc="cd $DOTFILES/.config && vi" # ricing -alias es="v $SCRIPTS" -alias ev="cd $HOME/.config/nvim && v" -alias ez="v $HOME/.zshrc" -alias eb="v $HOME/.bashrc" +alias es="vi $SCRIPTS" +alias ev="cd $HOME/.config/nvim && vi" +alias ez="vi $HOME/.zshrc" +alias eb="vi $HOME/.bashrc" alias sz="source $HOME/.zshrc" alias sbr="source $HOME/.bashrc" alias heb="setxkbmap -layout us,il -option 'caps:ctrl_modifier,grp:alt_shift_toggle'" diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index db3fc07..d3018b3 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -6,49 +6,57 @@ size = 14 [font.normal] family = "JetBrainsMono Nerd Font" -[window] -opacity = 0.95 +# [window] +# opacity = 0.98 [window.padding] x = 7 y = 1 [window.dimensions] -columns = 95 -lines = 26 +columns = 140 +lines = 36 -[keyboard] -bindings = [ -{ key = "V", mods = "Control", action = "Paste" } -] - -# Theme: Gnome (Gnome Terminal Default) +# TokyoNight Alacritty Colors # Default colors [colors.primary] -background = '#1e1e1e' -foreground = '#ffffff' +background = '#1a1b26' +foreground = '#c0caf5' + +#[colors.cursor] +#cursor = '#c0caf5' +#text = '#1a1b26' # Normal colors [colors.normal] -black = '#171421' -red = '#c01c28' -green = '#26a269' -yellow = '#a2734c' -blue = '#12488b' -magenta = '#a347ba' -cyan = '#2aa1b3' -white = '#d0cfcc' +black = '#15161e' +red = '#f7768e' +green = '#9ece6a' +yellow = '#e0af68' +blue = '#7aa2f7' +magenta = '#bb9af7' +cyan = '#7dcfff' +white = '#a9b1d6' # Bright colors [colors.bright] -black = '#5e5c64' -red = '#f66151' -green = '#33d17a' -yellow = '#e9ad0c' -blue = '#2a7bde' -magenta = '#c061cb' -cyan = '#33c7de' -white = '#ffffff' +black = '#414868' +red = '#f7768e' +green = '#9ece6a' +yellow = '#e0af68' +blue = '#7aa2f7' +magenta = '#bb9af7' +cyan = '#7dcfff' +white = '#c0caf5' + +# Indexed Colors +[[colors.indexed_colors]] +index = 16 +color = '#ff9e64' + +[[colors.indexed_colors]] +index = 17 +color = '#db4b4b' [env] TERM = "xterm-256color"