diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2023-12-10 15:01:44 +0100 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2023-12-10 15:01:44 +0100 |
commit | af699f191d7106c46733ed63e596abc2265b8f06 (patch) | |
tree | 566d3b8bb24a9ef4e4924ce5f1527013b0e2ba03 /Common/bspwm | |
parent | c370d604fb6038aae5638ac4ca94b6102d104682 (diff) | |
download | dotfiles-af699f191d7106c46733ed63e596abc2265b8f06.tar.gz dotfiles-af699f191d7106c46733ed63e596abc2265b8f06.zip |
Some quick changes
Diffstat (limited to 'Common/bspwm')
-rwxr-xr-x | Common/bspwm/bspwmrc | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/Common/bspwm/bspwmrc b/Common/bspwm/bspwmrc index 304ae7e..717e1e5 100755 --- a/Common/bspwm/bspwmrc +++ b/Common/bspwm/bspwmrc @@ -16,8 +16,24 @@ bspc config split_ratio 0.52 bspc config borderless_monocle true bspc config gapless_monocle true +bspc config focus_follows_pointer true + +bspc config automatic_scheme longest_side +bspc config single_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 + +# Floating Apps +declare -a floatingApps=(xdman-Main Lxappearance Nextcloud Gparted Thunar \ +Viewnior Xarchiver Pavucontrol firefox:Dialog \ +firefox:Pop-up nitrogen Gpick) +for i in ${floatingApps[@]}; do + bspc rule -a $i state=floating focus=on follow=on; done + +declare -a floatingCust=(*:*:Picture-in-picture *:Toolkit:Picture-in-Picture mpv) +for i in ${floatingCust[@]}; do + bspc rule -a $i state=floating sticky=on follow=off focus=on \ + rectangle=500x300+1366+50; done |