[HLWM] Refactored hlwm-display-switch.sh
This commit is contained in:
parent
614cdf0612
commit
4cd474411f
1 changed files with 7 additions and 4 deletions
|
@ -5,14 +5,17 @@ extern_2="DP-1"
|
||||||
intern="eDP-1"
|
intern="eDP-1"
|
||||||
polybar_top_padding=22
|
polybar_top_padding=22
|
||||||
|
|
||||||
|
common_adjustments() {
|
||||||
|
~/.fehbg &
|
||||||
|
xmodmap ~/.Xmodmap
|
||||||
|
}
|
||||||
|
|
||||||
switch_internal() {
|
switch_internal() {
|
||||||
xrandr --output "$extern_2" --off \
|
xrandr --output "$extern_2" --off \
|
||||||
--output "$extern_1" --off \
|
--output "$extern_1" --off \
|
||||||
--output "$intern" --auto --primary
|
--output "$intern" --auto --primary
|
||||||
herbstclient detect_monitors
|
herbstclient detect_monitors
|
||||||
herbstclient pad 0 "$polybar_top_padding"
|
herbstclient pad 0 "$polybar_top_padding"
|
||||||
~/.fehbg &
|
|
||||||
xmodmap ~/.Xmodmap
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_external() {
|
switch_external() {
|
||||||
|
@ -23,16 +26,16 @@ switch_external() {
|
||||||
herbstclient pad 0 0
|
herbstclient pad 0 0
|
||||||
herbstclient pad 2 0
|
herbstclient pad 2 0
|
||||||
herbstclient pad 1 "$polybar_top_padding"
|
herbstclient pad 1 "$polybar_top_padding"
|
||||||
~/.fehbg &
|
|
||||||
xmodmap ~/.Xmodmap
|
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
i* )
|
i* )
|
||||||
switch_internal
|
switch_internal
|
||||||
|
common_adjustments
|
||||||
;;
|
;;
|
||||||
e* )
|
e* )
|
||||||
switch_external
|
switch_external
|
||||||
|
common_adjustments
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
echo "Specify new output configuration. Possibilities are: 'external' and 'internal'"
|
echo "Specify new output configuration. Possibilities are: 'external' and 'internal'"
|
||||||
|
|
Loading…
Reference in a new issue