mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
Added autorotation
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
parent
a388ee5871
commit
d397f15ad0
@ -20,6 +20,8 @@ exec {
|
||||
ydotoold
|
||||
wl-paste -t text --watch clipman store
|
||||
autotiling
|
||||
$HOME/Scripts/autorotate.sh
|
||||
squeekboard
|
||||
}
|
||||
|
||||
exec_always {
|
||||
|
22
home/Scripts/autorotate.sh
Executable file
22
home/Scripts/autorotate.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
function rotate_ms {
|
||||
case $1 in
|
||||
"normal")
|
||||
swaymsg output eDP-1 transform 0
|
||||
;;
|
||||
"right-up")
|
||||
swaymsg output eDP-1 transform 90
|
||||
;;
|
||||
"bottom-up")
|
||||
swaymsg output eDP-1 transform 180
|
||||
;;
|
||||
"left-up")
|
||||
swaymsg output eDP-1 transform 270
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
while IFS='$\n' read -r line; do
|
||||
rotation="$(echo $line | sed -En "s/^.*orientation changed: (.*)/\1/p")"
|
||||
[[ ! -z $rotation ]] && rotate_ms $rotation
|
||||
done < <(stdbuf -oL monitor-sensor)
|
Loading…
Reference in New Issue
Block a user