From e6d9652fd471f87482c1a195be81303a1552dcf3 Mon Sep 17 00:00:00 2001 From: Michael Chalupiak Date: Wed, 6 Nov 2024 21:19:27 -0500 Subject: [PATCH 1/3] polybar: --- config/.config/nvim/lua/config/packer.lua | 12 ++++++++++++ config/.config/polybar/config.ini | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/config/.config/nvim/lua/config/packer.lua b/config/.config/nvim/lua/config/packer.lua index f8f9e56..1a75c7d 100755 --- a/config/.config/nvim/lua/config/packer.lua +++ b/config/.config/nvim/lua/config/packer.lua @@ -262,6 +262,18 @@ return require('packer').startup(function(use) use 'nvim-tree/nvim-web-devicons' + use({ + "utilyre/barbecue.nvim", + tag = "*", + requires = { + "SmiteshP/nvim-navic", + "nvim-tree/nvim-web-devicons", -- optional dependency + }, + after = "nvim-web-devicons", -- keep this if you're using NvChad + config = function() + require("barbecue").setup() + end, + }) use { 'nvim-lualine/lualine.nvim', diff --git a/config/.config/polybar/config.ini b/config/.config/polybar/config.ini index 3bf151b..40e0d9c 100644 --- a/config/.config/polybar/config.ini +++ b/config/.config/polybar/config.ini @@ -40,7 +40,7 @@ foreground = ${xrdb:foreground} override-redirect = true wm-restack = bspwm font-0 = Olympe Mono Hacked:style=Regular:pixelsize=11;2 -font-1 = Cascadia Code:style=Regular:pixelsize=11:2 +font-1 = CaskaydiaCove Nerd Font:style=Regular:pixelsize=11:2 font-2 = NotoColorEmoji:pixelsize=16 font-3 = Font Awesome 6 Brands:style=Regular:size=13;2 font-4 = Font Awesome 6 Free Solid:style=Regular:size=9;2 From 4eccdd92754facaff66d2b0ed0cb7ff9a2880c74 Mon Sep 17 00:00:00 2001 From: Michael Chalupiak Date: Thu, 7 Nov 2024 10:25:08 -0500 Subject: [PATCH 2/3] picom --- config/.config/picom/picom.conf | 4 +++- config/.config/sxhkd/sxhkdrc | 10 +++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/config/.config/picom/picom.conf b/config/.config/picom/picom.conf index 0758d3a..7d92783 100644 --- a/config/.config/picom/picom.conf +++ b/config/.config/picom/picom.conf @@ -240,7 +240,9 @@ mark-ovredir-focused = false; detect-rounded-corners = true; rounded-corners-exclude = [ - "window_type = 'dock'" + "window_type = 'dock'", + "class_g = 'dmenu'" + ]; # Detect '_NET_WM_OPACITY' on client windows, useful for window managers # not passing '_NET_WM_OPACITY' of client windows to frame windows. diff --git a/config/.config/sxhkd/sxhkdrc b/config/.config/sxhkd/sxhkdrc index 8b78bf8..3d39710 100644 --- a/config/.config/sxhkd/sxhkdrc +++ b/config/.config/sxhkd/sxhkdrc @@ -144,7 +144,7 @@ super + ctrl + shift + space # Focus of Nodes # Focus the Node For the Given Path Jump -super + {p,b,comma,period} +super + ctrl {p,b,comma,period} bspc node -f @{parent,brother,first,second} # Focus the Last Node/Desktop # super + {grave,Tab} @@ -155,14 +155,10 @@ super + {o,i} bspc node {older,newer} -f; \ bspc wm -h on # Switch Focus of Monitors -super + ctrl + alt {h,l} - bspc monitor --focus {prev,next} -super + shift {comma,period} +super + {comma,period} bspc monitor --focus {prev,next} # Send Window to other monitor -super + ctrl + shift {h,l} - bspc node -m {prev,next} --follow -super + ctrl {comma,period} +super + shift {comma,period} bspc node -m {prev,next} --follow # gaps From a5a1f9a42c407ffe80d610aef85982a7e3a67f8b Mon Sep 17 00:00:00 2001 From: Michael Chalupiak Date: Thu, 7 Nov 2024 13:43:15 -0500 Subject: [PATCH 3/3] blur --- config/.Xresources | 2 ++ config/.config/picom/picom.conf | 2 +- config/.doom.d/config.el | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/.Xresources b/config/.Xresources index e236182..f218bb9 100644 --- a/config/.Xresources +++ b/config/.Xresources @@ -1,6 +1,8 @@ ! High DPI Settings for Window Managers !Xft.dpi: 192 +#define background_opacity 80 #include ".theme.xresources" +.alpha: 0.2 font: monospace:12 //*font: "Cascadia Code" diff --git a/config/.config/picom/picom.conf b/config/.config/picom/picom.conf index 7d92783..aba9b59 100644 --- a/config/.config/picom/picom.conf +++ b/config/.config/picom/picom.conf @@ -198,7 +198,7 @@ blur-kern = "3x3box"; # Exclude conditions for background blur. # blur-background-exclude = [] blur-background-exclude = [ - "window_type = 'dock'", +# "window_type = 'dock'", "window_type = 'desktop'", "_GTK_FRAME_EXTENTS@:c" ]; diff --git a/config/.doom.d/config.el b/config/.doom.d/config.el index ce1b375..4c5c746 100644 --- a/config/.doom.d/config.el +++ b/config/.doom.d/config.el @@ -145,3 +145,6 @@ (defun open-mpc () (interactive) (setq mpc-host (read-string "IP Address:")) (call-interactively 'mpc)) + +(set-frame-parameter nil 'alpha-background 80) ; For current frame +(add-to-list 'default-frame-alist '(alpha-background . 80)) ; For all new frames henceforth