-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#8 Reverted considered screen orientation as it should be separated s…
…ervice
- Loading branch information
Showing
5 changed files
with
26 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,8 @@ If you find the project useful, do not forget to give project a [![GitHub stars] | |
|
||
## Features | ||
|
||
- Disable backlight of keyboard in tablet mode and use latest level of backlight when is mode changed back to laptop; NumberPad backlight does the same; CapsLock led too; history may be done for example via optional file [`brightness_hw_changed`](https://patchwork.kernel.org/project/platform-driver-x86/patch/[email protected]/) or temp file located in `/tmp` | ||
- Disable backlight of keyboard in tablet mode and use latest level of backlight when is mode changed back to laptop mode; NumberPad backlight does the same; CapsLock led too; history may be done for example via optional file [`brightness_hw_changed`](https://patchwork.kernel.org/project/platform-driver-x86/patch/[email protected]/) or temp file located in `/tmp` | ||
- When does not exist device `Intel HID switches` yet, driver will try find again every 5s and use for first flip event from `Asus WMI hotkeys` instead | ||
- Customizable scripts for each display rotation (inverted, left-up, right-up and default) | ||
- Touchpad rotates by default | ||
- Configurable support of flip key mapping, by default `EV_KEY.KEY_PROG2` | ||
|
||
<br/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,17 @@ | ||
from libevdev import EV_KEY | ||
|
||
orientation_bottom_up_actions = [ | ||
"cat /sys/class/leds/asus::kbd_backlight/brightness | sudo tee /tmp/kbd_backlight_brightness", | ||
"echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness", | ||
"cat /sys/class/leds/input3\:\:capslock/brightness | sudo tee /tmp/input3_capslock_brightness", | ||
"echo 0 | sudo tee /sys/class/leds/input3\:\:capslock/brightness" | ||
] | ||
|
||
orientation_left_up_actions = [ | ||
"sudo rm -f /tmp/kbd_backlight_brightness", | ||
"sudo rm -f /tmp/input3_capslock_brightness" | ||
# TODO: enable touchpad (is disabled by default for every rotation probably) | ||
#"xinput set-prop 17 'Device Enabled' 0" | ||
] | ||
|
||
orientation_right_up_actions = [ | ||
"sudo rm -f /tmp/kbd_backlight_brightness", | ||
"sudo rm -f /tmp/input3_capslock_brightness", | ||
# TODO: enable touchpad (is disabled by default for every rotation probably) | ||
] | ||
|
||
orientation_normal_actions = [ | ||
laptop_mode_actions = [ | ||
# backward setting up saved backlight brightness (only in case inverted was previous state! otherwise tmp file does not exist) | ||
"test -f /tmp/kbd_backlight_brightness && cat /tmp/kbd_backlight_brightness | sudo tee /sys/class/leds/asus::kbd_backlight/brightness", | ||
# backward setting up saved capslock led (only in case inverted was previous state! otherwise tmp file does not exist) | ||
"test -f /tmp/input3_capslock_brightness && cat /tmp/input3_capslock_brightness | sudo tee /sys/class/leds/input3\:\:capslock/brightness" | ||
] | ||
|
||
tablet_mode_actions = [ | ||
"cat /sys/class/leds/asus::kbd_backlight/brightness | sudo tee /tmp/kbd_backlight_brightness", | ||
"echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness", | ||
"cat /sys/class/leds/input3\:\:capslock/brightness | sudo tee /tmp/input3_capslock_brightness", | ||
"echo 0 | sudo tee /sys/class/leds/input3\:\:capslock/brightness" | ||
] | ||
|
||
flip_key = EV_KEY.KEY_PROG2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.