bspwm (975B)
1 #!/bin/sh 2 3 bspc monitor DP-4 -d 1 2 3 4 5 6 7 8 9 4 bspc monitor HDMI-0 -d 10 5 6 bspc config border_width 2 7 bspc config window_gap 10 8 bspc config top_padding 0 9 bspc config bottom_padding 0 10 bspc config left_padding 0 11 bspc config right_padding 0 12 13 bspc config normal_border_color "#aaaaaa" 14 bspc config active_border_color "#aaaaaa" 15 bspc config focused_border_color "#ffffff" 16 bspc config presel_border_color "#aaaaaa" 17 18 bspc config borderless_monocle 1 19 bspc config gapless_monocle 1 20 bspc config focus_follows_pointer true 21 bspc config pointer_follow_focus false 22 23 bspc rule -a '*:qemu:*' state=floating 24 bspc rule -a 'window' state=floating 25 26 # mouse settings 27 xinput set-prop 13 "libinput Accel Profile Enabled" 0 1 0 28 29 "$dotfiles/bin/screenlayout" & 30 31 # background script 32 hsetroot -solid "#008080" 33 # feh --no-fehbg --bg-fill "$dotfiles/wallpapers/18.png" 34 35 # bar script 36 # "$dotfiles/bin/polybar_launch" 37 38 # compositor 39 killall picom 40 #picom --config "$dotfiles/configs/picom" &