diff options
Diffstat (limited to 'config/bspwm/bspwmrc')
-rwxr-xr-x | config/bspwm/bspwmrc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/config/bspwm/bspwmrc b/config/bspwm/bspwmrc new file mode 100755 index 0000000..89b0aee --- /dev/null +++ b/config/bspwm/bspwmrc @@ -0,0 +1,38 @@ +#!/bin/sh + +COLOR_BACKGROUND="#151515" +COLOR_PRIMARY="#f58f44" +COLOR_SECONDARY="#5977b3" + +xsetroot -cursor_name left_ptr & +xrdb ~/.Xdefaults +bash $HOME/.config/xrandr.alt.sh + + +bspc monitor DP-2 -n A +bspc monitor DP-1 -n B +bspc monitor DP-4 -n C +bspc monitor HDMI-0 -n D + +pgrep -x sxhkd > /dev/null || sxhkd & +pgrep -x picom > /dev/null || picom & + +/home/david/.config/polybar/launch.sh +/home/david/.scripts/bg.sh + +bspc monitor A -d a1 a2 a3 a4 a5 a6 a7 +bspc monitor B -d b1 b2 b3 b4 b5 +bspc monitor C -d c1 c2 c3 c4 c5 +bspc monitor D -d d1 d2 + +bspc config border_width 2 +bspc config window_gap 0 + +bspc config focus_follows_pointer false + +bspc config normal_border_color "$COLOR_BACKGROUND" +bspc config active_border_color "$COLOR_BACKGROUND" +bspc config focused_border_color "$COLOR_PRIMARY" +wmname bspwm + +sleep 1; $HOME/.scripts/start-mpd |