diff --git a/.config/bin/panel b/.config/bin/panel index b3d5cd9..a9f1bd5 100755 --- a/.config/bin/panel +++ b/.config/bin/panel @@ -23,19 +23,29 @@ clock -sf 'CT%H:%M' > "$PANEL_FIFO" & if [ "$HOST" = "hegp" ];then width=1660 + height=24 + size=10 volume -sf 'VS%s' -d hw:1 > "$PANEL_FIFO" & volume -sf 'VI%i' -d hw:1 > "$PANEL_FIFO" & +elif [ "$HOST" = "home" ];then + width=1900 + height=44 + size=20 + volume -sf 'VS%s' > "$PANEL_FIFO" & + volume -sf 'VI%i' > "$PANEL_FIFO" & else + height=24 width=1900 + size=10 volume -sf 'VS%s' > "$PANEL_FIFO" & volume -sf 'VI%i' > "$PANEL_FIFO" & fi cat "$PANEL_FIFO" \ | panel_bar \ - | lemonbar -g "$width"x24+10+0 \ - -f "monofur\ for\ Powerline:size=10" \ - -f "FontAwesome:size=10" \ + | lemonbar -g "$width"x"$height"+10+0 \ + -f "monofur\ for\ Powerline:size=$size" \ + -f "FontAwesome:size=$size" \ -u 0 \ -B '#00AAAAAA' \ -F '#FF202020' & diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index cb88688..b3b70bf 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -120,4 +120,8 @@ if [ "$HOST" = "laptop" ];then synergys & fi -bspc config top_padding 14 +if [ "$HOST" = "home" ];then + bspc config top_padding 34 +else + bspc config top_padding 14 +fi