Remove now unused screen detection for lisgd
Signed-off-by: Stacy Harper <contact@stacyharper.net> Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
parent
a9ac024fe9
commit
f3511b149a
1 changed files with 9 additions and 29 deletions
|
@ -13,39 +13,19 @@ if [ -z "$LISGD_THRESHOLD_PRESSED" ]; then
|
||||||
LISGD_THRESHOLD_PRESSED=60
|
LISGD_THRESHOLD_PRESSED=60
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$(sxmo_wm.sh)" in
|
if [ dwm = "$(sxmo_wm.sh)" ]; then
|
||||||
sway)
|
case "$(xrandr | grep DSI-1 | cut -d' ' -f 5)" in
|
||||||
output="$(
|
right) orientation=1;;
|
||||||
swaymsg -t get_outputs \
|
left) orientation=3;;
|
||||||
| jq -r '.[] | select(.name == "DSI-1") | {transform: .transform, width: .current_mode.width, height: .current_mode.height}' \
|
inverted) orientation=2;;
|
||||||
| sed "s|normal|0|"
|
*) orientation=0;;
|
||||||
)"
|
esac
|
||||||
transform="$(printf %s "$output" | jq -r .transform)"
|
fi
|
||||||
width="$(printf %s "$output" | jq -r .width)"
|
|
||||||
height="$(printf %s "$output" | jq -r .height)"
|
|
||||||
orientation="$((transform / 90))"
|
|
||||||
;;
|
|
||||||
dwm)
|
|
||||||
output="$(xrandr | grep DSI-1 | cut -d' ' -f4)"
|
|
||||||
height="$(printf %s "$output" | cut -d'x' -f2 | cut -d'+' -f1)"
|
|
||||||
width="$(printf %s "$output" | cut -d'x' -f1)"
|
|
||||||
case "$(xrandr | grep DSI-1 | cut -d' ' -f 5)" in
|
|
||||||
right) orientation=1;;
|
|
||||||
left) orientation=3;;
|
|
||||||
inverted) orientation=2;;
|
|
||||||
*) orientation=0;;
|
|
||||||
esac
|
|
||||||
if [ "$((orientation%2))" -ne 0 ]; then
|
|
||||||
tmp="$height"
|
|
||||||
height="$width"
|
|
||||||
width="$tmp"
|
|
||||||
fi
|
|
||||||
esac
|
|
||||||
|
|
||||||
#-g format:
|
#-g format:
|
||||||
# fingers,swipe,edge,distance,command
|
# fingers,swipe,edge,distance,command
|
||||||
#order matters, only the first match gets executed
|
#order matters, only the first match gets executed
|
||||||
lisgd "$@" -o "$orientation" -h "$height" -w "$width" \
|
lisgd "$@" ${orientation:+-o $orientation} \
|
||||||
-t "$LISGD_THRESHOLD" -T "$LISGD_THRESHOLD_PRESSED" \
|
-t "$LISGD_THRESHOLD" -T "$LISGD_THRESHOLD_PRESSED" \
|
||||||
-g '1,DRUL,BR,*,sxmo_inputhandler.sh bottomrightcorner' \
|
-g '1,DRUL,BR,*,sxmo_inputhandler.sh bottomrightcorner' \
|
||||||
-g '1,DLUR,BL,*,sxmo_inputhandler.sh bottomleftcorner' \
|
-g '1,DLUR,BL,*,sxmo_inputhandler.sh bottomleftcorner' \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue