This file contains hidden or 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
| # tested on KB2005_11_C.11 | |
| fastboot flash recovery recovery.img | |
| fastboot flash boot boot.img | |
| fastboot flash dtbo dtbo.img | |
| fastboot reboot fastboot | |
| fastboot flash --slot=all recovery recovery.img | |
| fastboot flash --slot=all boot boot.img | |
| fastboot flash --slot=all dtbo dtbo.img | |
| fastboot flash --slot=all abl abl.img | |
| fastboot flash --slot=all aop aop.img |
This file contains hidden or 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 is my personal Firefox userChrome setup which 1) complete removes menubar and upper tabbar/titlebar allowing the sole use of Tree Style Tabs; 2) removes sidebar header, while not crashing the UI on Quantum. | |
| Kudos to @LS-KR for the original concept. | |
| */ | |
| #TabsToolbar-customization-target { visibility: collapse !important; } | |
| #main-window[inFullscreen="true"] #sidebar-box, | |
| #main-window[inFullscreen="true"] #sidebar-box + splitter { | |
| visibility: collapse; | |
| } |