This repository was archived by the owner on Aug 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscreensaver.lua
301 lines (247 loc) · 6.68 KB
/
screensaver.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
-- Widget for controlling black screen timeout using `xset`
-- Capture environment
local awful = require("awful")
local wibox = require("wibox")
local gears = require("gears")
local timer = gears.timer
local math = math
local string = string
local tostring = tostring
local tonumber = tonumber
local setmetatable = setmetatable
local exec = awful.spawn.easy_async
------------------------------------------
-- Compatibility with Lua <= 5.1
------------------------------------------
local _unpack = table.unpack or unpack
-- same as table.pack in lua 5.2:
local function pack(...)
return {n = select('#', ...), ...}
end
-- different from table.unpack in lua.5.2:
local function unpack(t)
return _unpack(t, 1, t.n)
end
------------------------------------------
-- Private utility functions
------------------------------------------
local function parse_sections(text)
local result = {}
local prefix = ""
for key, val, suffix in (text .. "\nX"):gmatch("([^\n]*):\n(.-)\n(%S)") do
-- Normalize to "DPMS":
-- - "DPMS (Energy Star)" or
-- - "DPMS (Display Power Management Signaling)"
key = key:gsub('%s*%(.*%)$', '')
result[(prefix .. key):lower()] = val
prefix = suffix
end
return result
end
local function spawn_sequential(...)
if select('#', ...) > 0 then
local command = select(1, ...)
local args = pack(select(2, ...))
local exec_tail = function()
spawn_sequential(unpack(args))
end
if type(command) == "function" then
command()
exec_tail()
elseif command == nil then
exec_tail()
else
exec(command, exec_tail)
end
end
end
local function safe_min(a, b)
if b == nil then
return a
elseif a == nil then
return b
elseif a <= b then
return a
else
return b
end
end
------------------------------------------
-- Volume control interface
------------------------------------------
local backends = {}
local screensaverctrl = { backends = backends }
function screensaverctrl:new(args)
return setmetatable({}, {__index = self}):init(args)
end
function screensaverctrl:init(args)
self.unit = args.unit or 60
self.step = args.step or 10
self.smallstep = args.smallstep or 1
if type(args.backend) == "string" then
self.backend = self.backends[args.backend]
else
self.backend = args.backend
end
self.backend = self.backend or self.backends.xset_dpms
self.widget = wibox.widget.textbox()
self.widget:buttons(awful.util.table.join(
awful.button({ }, 1, function() self:up(self.step) end),
awful.button({ }, 3, function() self:down(self.step) end),
awful.button({ }, 2, function() self:toggle() end),
awful.button({ }, 4, function() self:up(self.smallstep) end),
awful.button({ }, 5, function() self:down(self.smallstep) end)
))
self.timer = timer({ timeout = args.timeout or 3 })
self.timer:connect_signal("timeout", function() self:update() end)
self.timer:start()
self:update()
return self
end
function screensaverctrl:update()
self:get(function(value)
self:set_text(value)
end)
end
function screensaverctrl:set_text(value)
self.widget:set_text(string.format("(%d)", value))
end
function screensaverctrl:get(callback)
self.backend:get(function(seconds)
callback(math.floor(seconds / self.unit + 0.5))
end)
end
function screensaverctrl:set(value)
self.backend:set(value * self.unit, function() self:update() end)
end
function screensaverctrl:enable(callback)
self.backend:enable(callback or function() self:ensure_on() end)
end
function screensaverctrl:disable(callback)
self.backend:disable(callback or function() self:update() end)
end
function screensaverctrl:ensure_on()
self:get(function(value)
if value == 0 then
self:set(self.step)
else
self:set_text(value)
end
end)
end
function screensaverctrl:up(step)
self:get(function(value)
if value == 0 then
self:enable(function()
self:set(step)
end)
else
self:set(value + step)
end
end)
end
function screensaverctrl:down(step)
self:get(function(value)
if value <= step then
self:disable(function()
self:set(0)
end)
else
self:set(value - step)
end
end)
end
function screensaverctrl:toggle()
self:get(function(value)
if value > 0 then
self:disable()
else
self:enable()
end
end)
end
------------------------------------------
-- Backends
------------------------------------------
local function xset_get(self, callback)
exec({'xset', 'q'}, function(output)
callback(self:parse_result(parse_sections(output)))
end)
end
backends.xset_s = {
get = xset_get,
set = function(self, val, callback)
exec({'xset', 's', tostring(val)}, callback)
end,
enable = function(self, callback)
exec({'xset', 's', 'on'}, callback)
end,
disable = function(self, callback)
exec({'xset', 's', 'off'}, callback)
end,
parse_result = function(self, sections)
local section = sections['screen saver']
local timeout = tonumber(section:match('timeout:%s+(%d+)'))
return timeout
end,
}
backends.xset_dpms = {
get = xset_get,
set = function(self, val, callback)
val = tostring(val)
exec({'xset', 'dpms', val, val, val}, callback)
end,
enable = function(self, callback)
exec({'xset', '+dpms'}, callback)
end,
disable = function(self, callback)
exec({'xset', '-dpms'}, callback)
end,
parse_result = function(self, sections)
local dpms = sections['dpms']
local standby = tonumber(dpms:match('Standby:%s+(%d+)'))
local suspend = tonumber(dpms:match('Suspend:%s+(%d+)'))
local off = tonumber(dpms:match( 'Off:%s+(%d+)'))
local state = dpms:match("DPMS is (%w+)")
if state == "Disabled" then
return 0
else
local seconds = safe_min(safe_min(standby, suspend), off)
return seconds or 0
end
end,
}
backends.xset = {
get = xset_get,
set = function(self, val, callback)
val = tostring(val)
spawn_sequential(
{'xset', 's', val},
{'xset', 'dpms', val, val, val},
callback)
end,
enable = function(self, callback)
spawn_sequential(
{'xset', '+dpms'},
{'xset', 's', 'on'},
callback)
end,
disable = function(self, callback)
spawn_sequential(
{'xset', '-dpms'},
{'xset', 's', 'off'},
callback)
end,
parse_result = function(self, sections)
local value_scrs = backends.xset_s:parse_result(sections)
local value_dpms = backends.xset_dpms:parse_result(sections)
if value_scrs == 0 or value_dpms == 0 then
return math.max(value_scrs, value_dpms)
else
return math.min(value_scrs, value_dpms)
end
end,
}
return setmetatable(screensaverctrl, {
__call = screensaverctrl.new,
})