Compare commits
4 Commits
b3b41ada13
...
1103a1ca1b
Author | SHA1 | Date | |
---|---|---|---|
|
1103a1ca1b | ||
|
a5a1f9a42c | ||
|
4eccdd9275 | ||
|
e6d9652fd4 |
@ -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"
|
||||||
|
@ -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"
|
||||||
];
|
];
|
||||||
@ -240,7 +240,9 @@ mark-ovredir-focused = false;
|
|||||||
detect-rounded-corners = true;
|
detect-rounded-corners = true;
|
||||||
|
|
||||||
rounded-corners-exclude = [
|
rounded-corners-exclude = [
|
||||||
"window_type = 'dock'"
|
"window_type = 'dock'",
|
||||||
|
"class_g = 'dmenu'"
|
||||||
|
|
||||||
];
|
];
|
||||||
# Detect '_NET_WM_OPACITY' on client windows, useful for window managers
|
# Detect '_NET_WM_OPACITY' on client windows, useful for window managers
|
||||||
# not passing '_NET_WM_OPACITY' of client windows to frame windows.
|
# not passing '_NET_WM_OPACITY' of client windows to frame windows.
|
||||||
|
@ -144,7 +144,7 @@ super + ctrl + shift + space
|
|||||||
# Focus of Nodes
|
# Focus of Nodes
|
||||||
|
|
||||||
# Focus the Node For the Given Path Jump
|
# 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}
|
bspc node -f @{parent,brother,first,second}
|
||||||
# Focus the Last Node/Desktop
|
# Focus the Last Node/Desktop
|
||||||
# super + {grave,Tab}
|
# super + {grave,Tab}
|
||||||
@ -155,14 +155,10 @@ super + {o,i}
|
|||||||
bspc node {older,newer} -f; \
|
bspc node {older,newer} -f; \
|
||||||
bspc wm -h on
|
bspc wm -h on
|
||||||
# Switch Focus of Monitors
|
# Switch Focus of Monitors
|
||||||
super + ctrl + alt {h,l}
|
super + {comma,period}
|
||||||
bspc monitor --focus {prev,next}
|
|
||||||
super + shift {comma,period}
|
|
||||||
bspc monitor --focus {prev,next}
|
bspc monitor --focus {prev,next}
|
||||||
# Send Window to other monitor
|
# Send Window to other monitor
|
||||||
super + ctrl + shift {h,l}
|
super + shift {comma,period}
|
||||||
bspc node -m {prev,next} --follow
|
|
||||||
super + ctrl {comma,period}
|
|
||||||
bspc node -m {prev,next} --follow
|
bspc node -m {prev,next} --follow
|
||||||
|
|
||||||
# gaps
|
# gaps
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user