From 0659773daf96dc8703bba6a12a3890131b3441a7 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Fri, 29 Aug 2025 14:20:41 +0500 Subject: [PATCH 1/7] changed swaybar font --- .config/sway/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/sway/config b/.config/sway/config index e0ffdee..b1d173d 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -29,7 +29,7 @@ exec xrandr --output DP-2 --primary bar { id 1 tray_output none - font Input Nerd Font 9 + font Hack Nerd Font 9 status_command "~/Scripts/sway/bar.sh" gaps 0 6 0 0 colors { From f83ad4c21e05f3c5ee5384a0ea9afb5b9c347079 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Fri, 29 Aug 2025 22:25:33 +0500 Subject: [PATCH 2/7] remove background color for tmux command line --- .config/tmux/tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 72842cd..9ea4f27 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -57,6 +57,8 @@ set -g pane-active-border-style "fg=#938AA9" # status bar set-option -g status-style bg=default +set -g message-command-style bg=default +set -g message-style bg=default set -g status-left '| #S | ' set -g status-right '' set -g status-left-length 500 From e43d39b957e683c3beba2b38139c83c2cf0dc7d9 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Sun, 7 Sep 2025 03:24:37 +0500 Subject: [PATCH 3/7] disable status bar for sway --- .config/sway/config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/sway/config b/.config/sway/config index b1d173d..409aea9 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -28,6 +28,7 @@ exec xrandr --output DP-2 --primary bar { id 1 + mode hide tray_output none font Hack Nerd Font 9 status_command "~/Scripts/sway/bar.sh" @@ -76,6 +77,9 @@ bindsym --to-code $mod+m exec $term msg create-window --class in_scratchpad -e n bindsym --to-code $mod+e exec $term msg create-window -e neomutt || $term -e neomutt bindsym --to-code $mod+n exec $term msg create-window -e newsboat || $term -e newsboat +# toggle showing bar +bindsym --to-code $mod+minus exec "swaymsg bar 1 mode toggle" + # open windows with id "in_scratchpad" in scratchpad for_window [app_id="in_scratchpad"] move container to scratchpad, focus From 1820a8eff5e62718bac6f10a18977433d997f967 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Sun, 14 Sep 2025 23:06:09 +0500 Subject: [PATCH 4/7] remove gaps from swaybar --- .config/sway/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/sway/config b/.config/sway/config index 409aea9..d3654f4 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -32,7 +32,7 @@ bar { tray_output none font Hack Nerd Font 9 status_command "~/Scripts/sway/bar.sh" - gaps 0 6 0 0 + gaps 0 0 0 0 colors { # focused_workspace #7E9CD8 #7E9CD8 #AAAAAA } From 0a6a42e0b7f32ac9d1cd313ffc96db7a823f4383 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Sun, 12 Oct 2025 10:31:08 +0500 Subject: [PATCH 5/7] try to fix mobile youtube --- .config/proxy/config.pac | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/proxy/config.pac b/.config/proxy/config.pac index 74ae5e9..a8ec5c8 100644 --- a/.config/proxy/config.pac +++ b/.config/proxy/config.pac @@ -17,6 +17,7 @@ function FindProxyForURL(url, host) { "googlevideo.com", "ytimg.com", "*.ytimg.com", + "*.com" ]; for (var i = 0; i < proxy_domains.length; i++) { From 51515037b3fa8703f42804b8df18943a0eeae0a8 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Sun, 12 Oct 2025 10:33:04 +0500 Subject: [PATCH 6/7] revert test for mobile devices --- .config/proxy/config.pac | 1 - 1 file changed, 1 deletion(-) diff --git a/.config/proxy/config.pac b/.config/proxy/config.pac index a8ec5c8..74ae5e9 100644 --- a/.config/proxy/config.pac +++ b/.config/proxy/config.pac @@ -17,7 +17,6 @@ function FindProxyForURL(url, host) { "googlevideo.com", "ytimg.com", "*.ytimg.com", - "*.com" ]; for (var i = 0; i < proxy_domains.length; i++) { From 95d80c31d5a3c73dae577d13d9f267bce31c1a35 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Tue, 14 Oct 2025 13:41:00 +0500 Subject: [PATCH 7/7] remove gopls --- .config/nvim/lua/user/plugins/lsp/init.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.config/nvim/lua/user/plugins/lsp/init.lua b/.config/nvim/lua/user/plugins/lsp/init.lua index 1cbfd5d..0f617c7 100644 --- a/.config/nvim/lua/user/plugins/lsp/init.lua +++ b/.config/nvim/lua/user/plugins/lsp/init.lua @@ -38,11 +38,6 @@ return { "lukas-reineke/lsp-format.nvim", event = "VeryLazy", config = function() - local on_attach = function(client) - require("lsp-format").on_attach(client) - end - - require("lspconfig").gopls.setup { on_attach = on_attach } end }, {