CoverImage plugin: enable on Remarkable and PocketBook (#6906)

reviewable/pr6921/r1
zwim 3 years ago committed by GitHub
parent 3137f5a158
commit 52f66a89d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -95,7 +95,13 @@ function Remarkable:setDateTime(year, month, day, hour, min, sec)
return os.execute(command) == 0 return os.execute(command) == 0
end end
function Remarkable:_clearScreen()
self.screen:clear()
self.screen:refreshFull()
end
function Remarkable:suspend() function Remarkable:suspend()
self:_clearScreen()
os.execute("systemctl suspend") os.execute("systemctl suspend")
end end
@ -103,10 +109,12 @@ function Remarkable:resume()
end end
function Remarkable:powerOff() function Remarkable:powerOff()
self:_clearScreen()
os.execute("systemctl poweroff") os.execute("systemctl poweroff")
end end
function Remarkable:reboot() function Remarkable:reboot()
self:_clearScreen()
os.execute("systemctl reboot") os.execute("systemctl reboot")
end end

@ -2,7 +2,7 @@
local Device = require("device") local Device = require("device")
if not Device.isAndroid() and not Device.isEmulator() then if not (Device.isAndroid() or Device.isEmulator() or Device.isRemarkable() or Device.isPocketBook()) then
return { disabled = true } return { disabled = true }
end end

Loading…
Cancel
Save