summaryrefslogtreecommitdiffstats
path: root/rc.org
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2018-05-13 10:17:50 -0400
committerAmin Bandali <amin@aminb.org>2018-05-13 10:17:50 -0400
commit72f329ba11ec196784418c6436abfe64a4cf9213 (patch)
treedd1f9c853b6610b928c3ad9625f1375630e12498 /rc.org
parent87af8efde45b1dcf48045738ff9d5d181c67cd07 (diff)
downloadconfigs-72f329ba11ec196784418c6436abfe64a4cf9213.tar.gz
configs-72f329ba11ec196784418c6436abfe64a4cf9213.tar.xz
configs-72f329ba11ec196784418c6436abfe64a4cf9213.zip
[rc] add toggle-tablet script for use with my X220t
This script toggles between a 'normal' mode and a 'tablet' mode, doing a few things: - rotates the screen using xrandr, so that rotating the physical display of my X220t would have the laptop's battery on the right hand side, - enables touch screen, - properly rotates the stylus pen and touch screen pointers, and - toggles between RGB and Vertical BGR sub-pixel order.
Diffstat (limited to 'rc.org')
-rw-r--r--rc.org41
1 files changed, 41 insertions, 0 deletions
diff --git a/rc.org b/rc.org
index afe914a..f43e2e8 100644
--- a/rc.org
+++ b/rc.org
@@ -204,6 +204,9 @@ super + apostrophe
#XF86KbdBrightness{Up,Down}
# kbdlight {up,down}
+XF86RotateWindows
+ toggle-tablet
+
#
# bspwm hotkeys
#
@@ -4546,6 +4549,44 @@ fi
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/presentation-mode -T
#+end_src
+** toggle-tablet
+:PROPERTIES:
+:header-args+: :tangle ~/.local/bin/toggle-tablet :shebang "#!/bin/bash"
+:END:
+
+This script toggles between a 'normal' mode and a 'tablet' mode, doing
+a few things:
+
+- rotates the screen using =xrandr=, so that rotating the physical
+ display of my X220t would have the laptop's battery on the right
+ hand side,
+- enables touch screen,
+- properly rotates the stylus pen and touch screen pointers, and
+- toggles between RGB and Vertical BGR sub-pixel order.
+
+#+begin_src bash
+case $(xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation) in
+ 0) # Screen is not rotated, we should rotate it right (90°)
+ xrandr -o 3
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation -s 1
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Device_Enabled -s 1
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Wacom_Rotation -s 1
+ xfconf-query -c xsettings -p /Xft/RGBA -s vbgr
+ ;;
+ 1) # Currently top is rotated right, we should set it normal (0°)
+ xrandr -o 0
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation -s 0
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Wacom_Rotation -s 0
+ xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Device_Enabled -s 0
+ xfconf-query -c xsettings -p /Xft/RGBA -s rgb
+ ;;
+ *)
+ echo "Unknown result from 'xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation'" >&2
+ exit 1
+ ;;
+esac
+#+end_src
+
** unlock-def-gk.py
:PROPERTIES:
:header-args+: :tangle ~/.local/bin/unlock-def-gk.py :shebang "#!/usr/bin/env python2"