Issue
I'm having trouble switching off the keyboard selector setting in LineageOS 14.1 (running on ZTE K88 Jasmine). I see the button in settings to turn it on or off, but I'd like to turn it off with a terminal command. it's under Languages & Input -> Selector icon. The device is rooted. I've ran these two commands:
content query --uri content://settings/secure
content query --uri content://cmsettings/secure
And I can't find the option listed. I also tried running this command:
content update --uri content://cmsettings/system --bind name:s:input_method_selector_visibility --bind value:i:0
just in case I couldn't see it in the settings list, and it threw and error. I'm not sure where else to look. Does anyone have any ideas or know how to turn the little keyboard switcher icon off with adb shell?
I used this link to find out it's called "input_method_selector_visibility"
Solution
Figured it out!
This is how you turn it off:
content update --uri content://cmsettings/system --bind name:s:status_bar_ime_switcher --bind value:i:0
To find what the setting options are called in Lineage, go here to find it listed.
Answered By - Jojaba
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.