From 386257dd6e98809a2873f8f4a5f2b16018626222 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sun, 25 May 2025 23:18:05 +0300 Subject: [PATCH 1/5] [tmux] #3 command prompt color fix --- tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.conf b/tmux.conf index 6b009aa..dc2f75b 100755 --- a/tmux.conf +++ b/tmux.conf @@ -71,7 +71,7 @@ bind -T copy-mode-emacs C-WheelDownPane send-keys -X halfpage-down # color status bar set -g status-style fg=white,bg=colour235 # color of message bar -set -g message-style fg=white,bold,bg=green +set -g message-style fg=black,bold,bg=colour107 # highlight current window setw -g window-status-style fg=cyan,bg=colour235 From 6a20ac709ac032dd0d4074c491a3c586bd7aa005 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sun, 25 May 2025 23:18:57 +0300 Subject: [PATCH 2/5] [alacritty] fontsize increase + mac docs --- alacritty/alacritty.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index 34165f3..b38e270 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -28,7 +28,7 @@ history = 0 multiplier = 3 [font] -size = 13 +size = 14 # use_thin_strokes = true # on mac - https://petar.dev/notes/crisp-fonts-alacritty/ @@ -74,6 +74,10 @@ bindings = [ { key = "C", mods = "Command", chars = "\u0003" }, { key = "D", mods = "Command", chars = "\u0004" }, { key = "E", mods = "Command", chars = "\u0005" }, + # to make Command-H work in MacOS one need to go to + # Settings > keyboard > Hotkeys > Apps' hotkeys + # and create some other hotkey for Alacritty's + # "Hide alacritty" { key = "H", mods = "Command", chars = "\u0008" }, { key = "I", mods = "Command", chars = "\u0009" }, { key = "J", mods = "Command", chars = "\u000a" }, From a3c78dfcba5902f966f435ecb084617e86674446 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sun, 25 May 2025 23:20:05 +0300 Subject: [PATCH 3/5] [alacritty] fontsize conflict fix --- alacritty/alacritty.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index c25e448..b38e270 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -28,7 +28,7 @@ history = 0 multiplier = 3 [font] -size = 12 +size = 14 # use_thin_strokes = true # on mac - https://petar.dev/notes/crisp-fonts-alacritty/ From 966b7c74ef196646a2da5a67cb79a5a9ad1df6b1 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Thu, 29 May 2025 13:45:45 +0500 Subject: [PATCH 4/5] [shell] alias to listen mac ports --- shell/alias.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/alias.sh b/shell/alias.sh index 11c27cb..9a0628b 100644 --- a/shell/alias.sh +++ b/shell/alias.sh @@ -2,3 +2,4 @@ alias l="ls -lah" alias lg="LANG=en_US-UTF-8 lazygit" alias v="vim" alias n="nvim" +alias mac-listen="sudo lsof -iTCP -sTCP:LISTEN -n -P" From e2bdd71b08394df31e7360ffb206620f17cd6ed7 Mon Sep 17 00:00:00 2001 From: Dmitrii Chumak Date: Mon, 2 Jun 2025 14:32:15 +0300 Subject: [PATCH 5/5] gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3819313..3cf9da1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.swp *.swo +.netrwhist