From f679e781a7b10573dc699f26e97a31474a106ee8 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Fri, 8 Jul 2022 21:53:44 -0700 Subject: bspwmrc and picom --- .config/bspwm/bspwmrc | 11 ++--------- .config/picom/picom.conf | 8 ++++---- 2 files changed, 6 insertions(+), 13 deletions(-) (limited to '.config') diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index 558d1b8..651f853 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -1,12 +1,11 @@ #! /bin/sh - - ~/.screenlayout/work.sh nitrogen --restore ~/.config/polybar/forest/launch.sh 2> /dev/null #picom --config ~/.config/picom/picom.conf --experimental-backends 2> /dev/null & picom --config ~/.config/picom/picom.conf --experimental-backends 2> /dev/null & -pgrep -x sxhkd > /dev/null || sxhkd & +spgrep -x sxhkd > /dev/null || sxhkd & + dunst & xfce4-power-manager & @@ -20,11 +19,5 @@ bspc config split_ratio 0.52 bspc config borderless_monocle true bspc config gapless_monocle true -bspc rule -a Gimp desktop='^8' state=floating follow=on -bspc rule -a Chromium desktop='^2' -bspc rule -a mplayer2 state=floating -bspc rule -a Kupfer.py focus=on -bspc rule -a Screenkey manage=off - bspc config active_border_color '#0C1115' bspc config focused_border_color '#ebdbb2' diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 061d3c5..37ccd8e 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -117,7 +117,7 @@ shadow-exclude = [ # Fade windows in/out when opening/closing and when opacity changes, # unless no-fading-openclose is used. -fading = false; +fading = true; # fading = true; # Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028) @@ -181,7 +181,7 @@ inactive-dim-fixed = 1; # Note we don't make any guarantee about possible conflicts with other # programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows. # example: -# opacity-rule = [ "80:class_g = 'URxvt'" ]; + opacity-rule = [ "100:class_g = 'firefox'", "100:class_g = 'Polybar'" ]; # # opacity-rule = [] @@ -238,7 +238,8 @@ blur-background-exclude = [ #"window_type = 'dock'", #"window_type = 'desktop'", #"class_g = 'URxvt'", - #"class_g = 'Chromium'", + "class_g = 'firefox'", + "class_g = 'polybar'", # # prevents picom from blurring the background # when taking selection screenshot with `main` @@ -465,7 +466,6 @@ wintypes: { normal = { fade = false; shadow = false;} #normal = { fade = false; full-shadow = true;} - tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; } #tooltip = { fade = true; opacity = 0.75; focus = true; shadow = true; full-shadow = true; } dock = { shadow = false; } dnd = { shadow = false; } -- cgit