-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Surfaceflinger restart & Action script.
- Loading branch information
HeyItsJono
committed
Oct 14, 2024
1 parent
3677e63
commit 8cd7c53
Showing
3 changed files
with
15 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/system/bin/sh | ||
|
||
# Action script to disable disable_blurs and restart surfaceflinger on demand. | ||
# Necessary on Pixel 5 to allow blurs to work | ||
|
||
resetprop persist.sys.sf.disable_blurs 0 | ||
killall surfaceflinger |
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,6 +1,7 @@ | ||
#!/system/bin/sh | ||
|
||
# late_start service script to disable disable_blurs | ||
# late_start service script to disable disable_blurs and restart surfaceflinger. | ||
# Necessary on Pixel 5 to allow blurs to work | ||
|
||
resetprop persist.sys.sf.disable_blurs 0 | ||
resetprop persist.sys.sf.disable_blurs 0 | ||
killall surfaceflinger |