Add primary monitor setup to monctl.sh
This commit is contained in:
+19
-7
@@ -14,7 +14,10 @@ ${B}SYNOPSIS${N}
|
|||||||
|
|
||||||
${B}OPTIONS${N}
|
${B}OPTIONS${N}
|
||||||
${B}a*${N} ${U}width${N} ${U}height${N} ${U}hertz${N} ${U}name${N}
|
${B}a*${N} ${U}width${N} ${U}height${N} ${U}hertz${N} ${U}name${N}
|
||||||
Setup single monitor.
|
Setup single monitor with new mode.
|
||||||
|
|
||||||
|
${B}p*${N} ${U}name${N} ${U}mode${N}
|
||||||
|
Setup single primary monitor.
|
||||||
|
|
||||||
${B}ARGS${N}
|
${B}ARGS${N}
|
||||||
width
|
width
|
||||||
@@ -53,10 +56,7 @@ update() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto() {
|
auto() {
|
||||||
[ "$#" != "5" ] && return 1
|
[ "$#" != "4" ] && return 1
|
||||||
|
|
||||||
# Skip first argument
|
|
||||||
shift 1
|
|
||||||
|
|
||||||
# Add mode to primary monitor
|
# Add mode to primary monitor
|
||||||
OUTPUT="$(xrandr -q)"
|
OUTPUT="$(xrandr -q)"
|
||||||
@@ -65,12 +65,19 @@ auto() {
|
|||||||
xrandr --addmode "$4" "$1x$2_$3.00"
|
xrandr --addmode "$4" "$1x$2_$3.00"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
primary "$4" "--mode $1x$2_$3.00"
|
||||||
|
}
|
||||||
|
|
||||||
|
primary() {
|
||||||
|
[ "$#" != "1" ] && [ "$#" != "2" ] && return 1
|
||||||
|
MODE=${2:-"--auto"}
|
||||||
|
|
||||||
# Get all connected monitors
|
# Get all connected monitors
|
||||||
CONNECTED="$(xrandr -q | awk '/ connected/{ print $1 }')"
|
CONNECTED="$(xrandr -q | awk '/ connected/{ print $1 }')"
|
||||||
|
|
||||||
# Disable all other monitors
|
# Disable all other monitors
|
||||||
eval xrandr --output "$4" --mode "$1x$2_$3.00" --primary \
|
eval xrandr --output "$1" "$MODE" --primary \
|
||||||
"$(echo "$CONNECTED" | grep -vx "$4" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ')"
|
"$(echo "$CONNECTED" | grep -vx "$1" | awk '{ print "--output", $1, "--off" }' | tr '\n' ' ')"
|
||||||
|
|
||||||
# Post monitor change
|
# Post monitor change
|
||||||
update
|
update
|
||||||
@@ -79,8 +86,13 @@ auto() {
|
|||||||
[ $OPTIND -ge 2 ] && shift $((OPTIND - 2))
|
[ $OPTIND -ge 2 ] && shift $((OPTIND - 2))
|
||||||
case "$1" in
|
case "$1" in
|
||||||
a*)
|
a*)
|
||||||
|
shift 1
|
||||||
auto "$@"
|
auto "$@"
|
||||||
;;
|
;;
|
||||||
|
p*)
|
||||||
|
shift 1
|
||||||
|
primary "$@"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
help
|
help
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user