View Single Post
Old 12-04-2022, 03:53 PM   #173
mergen3107
Wizard
mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.
 
mergen3107's Avatar
 
Posts: 1,515
Karma: 5000046
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
To recap, before we found those actions:

Code:
# Call Home:
am start -a android.intent.action.MAIN -c android.intent.category.HOME
am start -n org.ds.simple.ink.launcher/.LauncherMainActivity

# close the notifications:
am broadcast -a android.intent.action.CLOSE_SYSTEM_DIALOGS

# show contrast dialog:
am broadcast -a com.onyx.action.show.contrast.dialog

# show brightness dialog:
# (for Button Mapper: Advanced - Broadcast intent - Action, input only the action itself)
am broadcast -a action.show.brightness.dialog

# manual brightness control (change system settings, n = 0-255)
settings put system screen_warm_brightness n
settings put system screen_cold_brightness n

# ("toggle" brightness, n = 1/0)
settings put system warm_brightness_state_key n
settings put system cold_brightness_state_key n
mergen3107 is offline   Reply With Quote