Update 'set-wacom-draw-area' script
parent
6ebc4adccb
commit
ed40b186c9
|
@ -10,17 +10,20 @@
|
||||||
|
|
||||||
#
|
#
|
||||||
# Drawing area
|
# Drawing area
|
||||||
|
# TODO: w,h,x,y parameters w/ these defaults
|
||||||
|
# call script from autorandr with corresponding parameters.
|
||||||
#
|
#
|
||||||
|
|
||||||
w=1920 # Width
|
|
||||||
h=1080 # Height
|
|
||||||
x=1920 # Horizontal offset
|
|
||||||
y=1080 # Vertical offset
|
|
||||||
orientation="landscape" # Portrait/landscape
|
|
||||||
|
|
||||||
# Get screen resolution (TODO: test external monitor)
|
# Get screen resolution (TODO: test external monitor)
|
||||||
resolution=$(xrandr --current | grep "connected primary" | awk '{print $4}')
|
resolution=$(xrandr --current | grep "connected primary" | awk '{print $4}' | sed 's/x/ /g' | sed 's/+[0-9]//g')
|
||||||
echo "$resolution"
|
screen_w=$(echo "$resolution" | awk '{print $1}')
|
||||||
|
screen_h=$(echo "$resolution" | awk '{print $2}')
|
||||||
|
|
||||||
|
w=1920 # Width
|
||||||
|
h=1080 # Height
|
||||||
|
x="$((screen_w - 1920))" # Horizontal offset
|
||||||
|
y="$((screen_h - 1080))" # Vertical offset
|
||||||
|
orientation="landscape" # Portrait/landscape
|
||||||
|
|
||||||
# Get rotation setting
|
# Get rotation setting
|
||||||
rotate=`[[ "$orientation" == "landscape" ]] && echo "half" || echo "ccw"`
|
rotate=`[[ "$orientation" == "landscape" ]] && echo "half" || echo "ccw"`
|
||||||
|
|
Loading…
Reference in New Issue