Fix dock/undock scripts
This commit is contained in:
parent
0a94eafad3
commit
5b1c018e90
4 changed files with 21 additions and 14 deletions
|
@ -42,16 +42,16 @@ if [ $# -gt 0 ]; then
|
|||
return
|
||||
fi
|
||||
|
||||
if [ $BAR_ON_TOP -eq 1 ]; then
|
||||
if [ "$BAR_ON_TOP" -eq 1 ]; then
|
||||
export BAR_BOTTOM="false"
|
||||
export POS_Y=$GAP
|
||||
bspc config -m ${BAR_MONITOR} top_padding "$EHEIGHT"
|
||||
bspc config -m ${BAR_MONITOR} bottom_padding "0"
|
||||
bspc config -m "${BAR_MONITOR}" top_padding "$EHEIGHT"
|
||||
bspc config -m "${BAR_MONITOR}" bottom_padding "0"
|
||||
else
|
||||
export BAR_BOTTOM="true"
|
||||
export POS_Y=$GAP
|
||||
bspc config -m ${BAR_MONITOR} top_padding "0"
|
||||
bspc config -m ${BAR_MONITOR} bottom_padding "$EHEIGHT"
|
||||
bspc config -m "${BAR_MONITOR}" top_padding "0"
|
||||
bspc config -m "${BAR_MONITOR}" bottom_padding "$EHEIGHT"
|
||||
fi
|
||||
|
||||
# bspc
|
||||
|
|
|
@ -23,6 +23,8 @@ bspc config split_ratio 0.3333333
|
|||
bspc config borderless_monocle true
|
||||
bspc config gapless_monocle true
|
||||
bspc config pointer_modifier "mod4"
|
||||
bspc config remove_unplugged_monitors true
|
||||
bspc config remove_disabled_monitors true
|
||||
|
||||
bspc config window_gap "$WINDOW_GAP"
|
||||
|
||||
|
|
|
@ -3,5 +3,7 @@
|
|||
resrc
|
||||
"${DOTFILES_PATH}/de/x/loadresources"
|
||||
autorandr --change
|
||||
"${DOTFILES_PATH}/de/bspwm/bspwmrc"
|
||||
"${DOTFILES_PATH}/de/x/loadresources"
|
||||
restartbar
|
||||
"${HOME}/.fehbg"
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
resrc
|
||||
"${DOTFILES_PATH}/de/x/loadresources" lodpi
|
||||
autorandr --change
|
||||
"${DOTFILES_PATH}/de/bspwm/bspwmrc"
|
||||
"${DOTFILES_PATH}/de/x/loadresources" lodpi
|
||||
restartbar
|
||||
"${HOME}/.fehbg"
|
||||
|
|
Reference in a new issue