From 06e9f920c051bf5395248d138512dbe66bcdf246 Mon Sep 17 00:00:00 2001 From: azpsen Date: Mon, 10 Mar 2025 11:03:49 -0500 Subject: [PATCH] separate desktop and laptop configs --- .config/bspwm/bspwmrc | 9 +++++---- .config/bspwm/scripts/launch-polybar.sh | 6 +++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index 27e754c..f6f005b 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -2,11 +2,12 @@ pgrep -x sxhkd > /dev/null || sxhkd & -# use DP-0 on desktop -bspc monitor eDP-1 -d 1 2 3 4 5 +# cerritos setup +bspc monitor DP-0 -d 1 2 3 4 5 +bspc monitor HDMI-0 -d 6 7 8 9 0 -# enable on desktop -#bspc monitor HDMI-0 -d 6 7 8 9 0 +# defiant setup +# bspc monitor eDP-1 -d 1 2 3 4 5 bspc config remove_disabled_monitors false bspc config remove_unplugged_monitors false diff --git a/.config/bspwm/scripts/launch-polybar.sh b/.config/bspwm/scripts/launch-polybar.sh index 342a6f4..2e7f762 100755 --- a/.config/bspwm/scripts/launch-polybar.sh +++ b/.config/bspwm/scripts/launch-polybar.sh @@ -2,5 +2,9 @@ killall -q polybar +# cerritos setup polybar primary 2>&1 | tee -a /tmp/polybar.log & disown -# polybar secondary 2>&1 | tee -a /tmp/polybar.log & disown +polybar secondary 2>&1 | tee -a /tmp/polybar.log & disown + +# defiant setup +# polybar primary 2>&1 | tee -a /tmp/polybar.log & disown