summaryrefslogtreecommitdiff
path: root/run-shell
diff options
context:
space:
mode:
authorPavel Makhov <pmakhov@touchtunes.com>2018-12-24 10:05:15 -0500
committerPavel Makhov <pmakhov@touchtunes.com>2018-12-24 10:05:15 -0500
commit627a6888a26101284958d1c7802be819783c8584 (patch)
tree3980bee6c95f33223b8cb0d8466c733735c6a32b /run-shell
parent9012468e8f9346fcbd8d1a59fab17b6ce6df990a (diff)
get rid of script usage
Diffstat (limited to 'run-shell')
-rw-r--r--run-shell/run-shell.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/run-shell/run-shell.lua b/run-shell/run-shell.lua
index 44fd367..df01d29 100644
--- a/run-shell/run-shell.lua
+++ b/run-shell/run-shell.lua
@@ -25,9 +25,10 @@ local widget = {}
function widget.new()
local widget_instance = {
_cached_wiboxes = {},
+ _cmd_pixelate = [[bash -c 'ffmpeg -loglevel panic -f x11grab -video_size 1920x1060 -y -i :0.0+%s,20 -vf frei0r=pixeliz0r -vframes 1 /tmp/i3lock-%s.png ; echo done']],
+ _cmd_blur = [[bash -c 'ffmpeg -loglevel panic -f x11grab -video_size 1920x1060 -y -i :0.0+%s,20 -filter_complex "boxblur=9" -vframes 1 /tmp/i3lock-%s.png ; echo done']]
}
-
function widget_instance:_create_wibox()
local w = wibox {
visible = false,
@@ -41,8 +42,7 @@ function widget.new()
{
{
{
- text = 'a',
- font = 'awesomewm-font 13',
+ markup = '<span font="awesomewm-font 14" color="#ffffff">a</span>',
widget = wibox.widget.textbox,
},
id = 'icon',
@@ -75,21 +75,22 @@ function widget.new()
function widget_instance:launch(s, c)
c = c or capi.client.focus
- s = s or (c and c.screen or awful.screen.focused())
- naughty.notify{text = 'screen ' .. s.index}
+ s = s or (c and c.screen or mouse.screen)
+ naughty.notify { text = 'screen ' .. s.index }
if not self._cached_wiboxes[s] then
self._cached_wiboxes[s] = {}
- naughty.notify{text = 'nope'}
+ naughty.notify { text = 'nope' }
end
if not self._cached_wiboxes[s][1] then
self._cached_wiboxes[s][1] = self:_create_wibox()
- naughty.notify{text = 'nope'}
+ naughty.notify { text = 'nope' }
end
local w = self._cached_wiboxes[s][1]
- awful.spawn.with_line_callback(os.getenv("HOME") .. "/.config/awesome/awesome-wm-widgets/run-shell/scratch_6.sh " .. tostring(awful.screen.focused().geometry.x), {
+ local rnd = math.random()
+ awful.spawn.with_line_callback(string.format(self._cmd_pixelate, tostring(awful.screen.focused().geometry.x), rnd), {
stdout = function(line)
w.visible = true
- w.bgimage = '/tmp/i3lock-' .. line .. '.png'
+ w.bgimage = '/tmp/i3lock-' .. rnd ..'.png'
awful.placement.top(w, { margins = { top = 20 }, parent = awful.screen.focused() })
awful.prompt.run {
prompt = 'Run: ',
@@ -115,7 +116,7 @@ function widget.new()
end
return widget_instance
- end
+end
local function get_default_widget()
if not widget.default_widget then
@@ -128,5 +129,4 @@ function widget.launch(...)
return get_default_widget():launch(...)
end
-
return widget