This commit is contained in:
Michael Chalupiak 2024-11-07 13:43:15 -05:00
parent 4eccdd9275
commit a5a1f9a42c
3 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,8 @@
! High DPI Settings for Window Managers ! High DPI Settings for Window Managers
!Xft.dpi: 192 !Xft.dpi: 192
#define background_opacity 80
#include ".theme.xresources" #include ".theme.xresources"
.alpha: 0.2
font: monospace:12 font: monospace:12
//*font: "Cascadia Code" //*font: "Cascadia Code"

View File

@ -198,7 +198,7 @@ blur-kern = "3x3box";
# Exclude conditions for background blur. # Exclude conditions for background blur.
# blur-background-exclude = [] # blur-background-exclude = []
blur-background-exclude = [ blur-background-exclude = [
"window_type = 'dock'", # "window_type = 'dock'",
"window_type = 'desktop'", "window_type = 'desktop'",
"_GTK_FRAME_EXTENTS@:c" "_GTK_FRAME_EXTENTS@:c"
]; ];

View File

@ -145,3 +145,6 @@
(defun open-mpc () (interactive) (defun open-mpc () (interactive)
(setq mpc-host (read-string "IP Address:")) (setq mpc-host (read-string "IP Address:"))
(call-interactively 'mpc)) (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